da24b1c3f647f5c46e8ed12ab16596b1c696c186
[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 /* Linux 2.6.28 introduced dev_get_stats():
81  * const struct net_device_stats *dev_get_stats(struct net_device *dev);
82  *
83  * Linux 2.6.36 changed dev_get_stats() to:
84  * struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
85  *                                         struct rtnl_link_stats64 *storage);
86  */
87 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36)
88 #define dev_get_stats(dev, storage) rpl_dev_get_stats(dev, storage)
89 struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
90                                         struct rtnl_link_stats64 *storage);
91 #endif
92
93 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)
94 #define skb_checksum_help(skb) skb_checksum_help((skb), 0)
95 #endif
96
97 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36)
98 static inline int netdev_rx_handler_register(struct net_device *dev,
99                                              void *rx_handler,
100                                              void *rx_handler_data)
101 {
102         if (dev->br_port)
103                 return -EBUSY;
104         rcu_assign_pointer(dev->br_port, rx_handler_data);
105         return 0;
106 }
107 static inline void netdev_rx_handler_unregister(struct net_device *dev)
108 {
109         rcu_assign_pointer(dev->br_port, NULL);
110 }
111 #endif
112
113 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)
114 #undef SET_ETHTOOL_OPS
115 #define SET_ETHTOOL_OPS(netdev, ops) \
116         ( (netdev)->ethtool_ops = (struct ethtool_ops *)(ops) )
117 #endif
118
119 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24)
120 #define dev_get_by_name(net, name) dev_get_by_name(name)
121 #define dev_get_by_index(net, ifindex) dev_get_by_index(ifindex)
122 #define __dev_get_by_name(net, name) __dev_get_by_name(name)
123 #define __dev_get_by_index(net, ifindex) __dev_get_by_index(ifindex)
124 #define dev_get_by_index_rcu(net, ifindex) dev_get_by_index_rcu(ifindex)
125 #endif
126
127 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33)
128 static inline struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
129 {
130         struct net_device *dev;
131
132         read_lock(&dev_base_lock);
133         dev = __dev_get_by_index(net, ifindex);
134         read_unlock(&dev_base_lock);
135
136         return dev;
137 }
138 #endif
139
140 #ifndef NETIF_F_FSO
141 #define NETIF_F_FSO 0
142 #endif
143
144 #endif