tunneling: Remove old GRE implementation.
[openvswitch] / datapath / linux-2.6 / compat-2.6 / skbuff-openvswitch.c
1 #include <linux/version.h>
2 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,27)
3
4 #include <linux/netdevice.h>
5
6 void __skb_warn_lro_forwarding(const struct sk_buff *skb)
7 {
8         if (net_ratelimit())
9                 printk(KERN_WARNING "%s: received packets cannot be forwarded"
10                                     " while LRO is enabled\n", skb->dev->name);
11 }
12
13 #endif /* kernel < 2.6.27 */