datapath: Account for RHEL6.4 backports in compat layer
[sliver-openvswitch.git] / datapath / linux / compat / 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 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)
81 #define skb_checksum_help(skb) skb_checksum_help((skb), 0)
82 #endif
83
84 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36)
85 static inline int netdev_rx_handler_register(struct net_device *dev,
86                                              void *rx_handler,
87                                              void *rx_handler_data)
88 {
89         if (dev->br_port)
90                 return -EBUSY;
91         rcu_assign_pointer(dev->br_port, rx_handler_data);
92         return 0;
93 }
94 static inline void netdev_rx_handler_unregister(struct net_device *dev)
95 {
96         rcu_assign_pointer(dev->br_port, NULL);
97 }
98 #endif
99
100 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)
101 #undef SET_ETHTOOL_OPS
102 #define SET_ETHTOOL_OPS(netdev, ops) \
103         ((netdev)->ethtool_ops = (struct ethtool_ops *)(ops))
104 #endif
105
106 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24)
107 #define dev_get_by_name(net, name) dev_get_by_name(name)
108 #define dev_get_by_index(net, ifindex) dev_get_by_index(ifindex)
109 #define __dev_get_by_name(net, name) __dev_get_by_name(name)
110 #define __dev_get_by_index(net, ifindex) __dev_get_by_index(ifindex)
111 #define dev_get_by_index_rcu(net, ifindex) dev_get_by_index_rcu(ifindex)
112 #endif
113
114 #ifndef HAVE_DEV_GET_BY_INDEX_RCU
115 static inline struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
116 {
117         struct net_device *dev;
118
119         read_lock(&dev_base_lock);
120         dev = __dev_get_by_index(net, ifindex);
121         read_unlock(&dev_base_lock);
122
123         return dev;
124 }
125 #endif
126
127 #ifndef NETIF_F_FSO
128 #define NETIF_F_FSO 0
129 #endif
130
131 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
132 #define NETIF_F_FCOE_CRC        (1 << 24) /* FCoE CRC32 */
133 #endif
134
135 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
136 #define NETIF_F_IPV6_CSUM       16      /* Can checksum TCP/UDP over IPV6 */
137
138 #define NETIF_F_V4_CSUM         (NETIF_F_GEN_CSUM | NETIF_F_IP_CSUM)
139 #define NETIF_F_V6_CSUM         (NETIF_F_GEN_CSUM | NETIF_F_IPV6_CSUM)
140 #endif
141
142 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,38)
143 #define skb_gso_segment rpl_skb_gso_segment
144 struct sk_buff *rpl_skb_gso_segment(struct sk_buff *skb, u32 features);
145
146 #define netif_skb_features rpl_netif_skb_features
147 u32 rpl_netif_skb_features(struct sk_buff *skb);
148
149 #define netif_needs_gso rpl_netif_needs_gso
150 static inline int rpl_netif_needs_gso(struct sk_buff *skb, int features)
151 {
152         return skb_is_gso(skb) && (!skb_gso_ok(skb, features) ||
153                 unlikely(skb->ip_summed != CHECKSUM_PARTIAL));
154 }
155 #endif
156
157 #if LINUX_VERSION_CODE < KERNEL_VERSION(3,3,0)
158 typedef u32 netdev_features_t;
159 #endif
160
161 #ifndef HAVE___SKB_GSO_SEGMENT
162 static inline struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
163                                                 netdev_features_t features,
164                                                 bool tx_path)
165 {
166         return skb_gso_segment(skb, features);
167 }
168 #endif
169
170 #endif