datapath: Fix build with backported dev_get_stats().
[sliver-openvswitch.git] / datapath / linux-2.6 / compat-2.6 / include / linux / netdevice.h
1 #ifndef __LINUX_NETDEVICE_WRAPPER_H
2 #define __LINUX_NETDEVICE_WRAPPER_H 1
3
4 #include_next <linux/netdevice.h>
5
6 struct net;
7
8 #include <linux/version.h>
9 /* Before 2.6.21, struct net_device has a "struct class_device" member named
10  * class_dev.  Beginning with 2.6.21, struct net_device instead has a "struct
11  * device" member named dev.  Otherwise the usage of these members is pretty
12  * much the same. */
13 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,21)
14 #define NETDEV_DEV_MEMBER class_dev
15 #else
16 #define NETDEV_DEV_MEMBER dev
17 #endif
18
19 #ifndef to_net_dev
20 #define to_net_dev(class) container_of(class, struct net_device, NETDEV_DEV_MEMBER)
21 #endif
22
23 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26)
24 static inline
25 struct net *dev_net(const struct net_device *dev)
26 {
27 #ifdef CONFIG_NET_NS
28         return dev->nd_net;
29 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,25)
30         return &init_net;
31 #else
32         return NULL;
33 #endif
34 }
35
36 static inline
37 void dev_net_set(struct net_device *dev, const struct net *net)
38 {
39 #ifdef CONFIG_NET_NS
40         dev->nd_dev = net;
41 #endif
42 }
43 #endif /* linux kernel < 2.6.26 */
44
45 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24)
46 #define NETIF_F_NETNS_LOCAL 0
47 #endif
48
49 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
50 #define proc_net init_net.proc_net
51 #endif
52
53 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,32)
54 typedef int netdev_tx_t;
55 #endif
56
57 #ifndef for_each_netdev
58 /* Linux before 2.6.22 didn't have for_each_netdev at all. */
59 #define for_each_netdev(net, d) for (d = dev_base; d; d = d->next)
60 #elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24)
61 /* Linux 2.6.24 added a network namespace pointer to the macro. */
62 #undef for_each_netdev
63 #define for_each_netdev(net,d) list_for_each_entry(d, &dev_base_head, dev_list)
64 #endif
65
66 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20)
67 #define net_xmit_eval(e)       ((e) == NET_XMIT_CN? 0 : (e))
68 #endif
69
70 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33)
71 extern void unregister_netdevice_queue(struct net_device *dev,
72                                         struct list_head *head);
73 extern void unregister_netdevice_many(struct list_head *head);
74 #endif
75
76 #ifndef HAVE_DEV_DISABLE_LRO
77 extern void dev_disable_lro(struct net_device *dev);
78 #endif
79
80 #ifndef HAVE_DEV_GET_STATS
81 static inline const struct net_device_stats *
82 dev_get_stats(struct net_device *dev)
83 {
84         return dev->get_stats(dev);
85 }
86 #endif
87
88 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)
89 #define skb_checksum_help(skb) skb_checksum_help((skb), 0)
90 #endif
91
92 #endif