datapath: Remove checksum compat support
[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 #ifdef HAVE_RHEL_OVS_HOOK
24 extern struct sk_buff *(*openvswitch_handle_frame_hook)(struct sk_buff *skb);
25 extern int nr_bridges;
26 #endif
27
28 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26)
29 static inline
30 struct net *dev_net(const struct net_device *dev)
31 {
32 #ifdef CONFIG_NET_NS
33         return dev->nd_net;
34 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,25)
35         return &init_net;
36 #else
37         return NULL;
38 #endif
39 }
40
41 static inline
42 void dev_net_set(struct net_device *dev, const struct net *net)
43 {
44 #ifdef CONFIG_NET_NS
45         dev->nd_dev = net;
46 #endif
47 }
48 #endif /* linux kernel < 2.6.26 */
49
50 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24)
51 #define NETIF_F_NETNS_LOCAL 0
52 #endif
53
54 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
55 #define proc_net init_net.proc_net
56 #endif
57
58 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,32)
59 typedef int netdev_tx_t;
60 #endif
61
62 #ifndef for_each_netdev
63 /* Linux before 2.6.22 didn't have for_each_netdev at all. */
64 #define for_each_netdev(net, d) for (d = dev_base; d; d = d->next)
65 #elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24)
66 /* Linux 2.6.24 added a network namespace pointer to the macro. */
67 #undef for_each_netdev
68 #define for_each_netdev(net, d) list_for_each_entry(d, &dev_base_head, dev_list)
69 #endif
70
71 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20)
72 #define net_xmit_eval(e)       ((e) == NET_XMIT_CN ? 0 : (e))
73 #endif
74
75 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33)
76 extern void unregister_netdevice_queue(struct net_device *dev,
77                                         struct list_head *head);
78 extern void unregister_netdevice_many(struct list_head *head);
79 #endif
80
81 #ifndef HAVE_DEV_DISABLE_LRO
82 extern void dev_disable_lro(struct net_device *dev);
83 #endif
84
85 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) || \
86     defined HAVE_RHEL_OVS_HOOK
87 static inline int netdev_rx_handler_register(struct net_device *dev,
88                                              void *rx_handler,
89                                              void *rx_handler_data)
90 {
91 #ifdef HAVE_RHEL_OVS_HOOK
92         rcu_assign_pointer(dev->ax25_ptr, rx_handler_data);
93         nr_bridges++;
94         rcu_assign_pointer(openvswitch_handle_frame_hook, rx_handler);
95 #else
96         if (dev->br_port)
97                 return -EBUSY;
98         rcu_assign_pointer(dev->br_port, rx_handler_data);
99 #endif
100         return 0;
101 }
102 static inline void netdev_rx_handler_unregister(struct net_device *dev)
103 {
104 #ifdef HAVE_RHEL_OVS_HOOK
105         rcu_assign_pointer(dev->ax25_ptr, NULL);
106
107         if (--nr_bridges <= 0)
108                 rcu_assign_pointer(openvswitch_handle_frame_hook, NULL);
109 #else
110         rcu_assign_pointer(dev->br_port, NULL);
111 #endif
112 }
113 #endif
114
115 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)
116 #undef SET_ETHTOOL_OPS
117 #define SET_ETHTOOL_OPS(netdev, ops) \
118         ((netdev)->ethtool_ops = (struct ethtool_ops *)(ops))
119 #endif
120
121 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24)
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_name(net, name) __dev_get_by_name(name)
125 #define __dev_get_by_index(net, ifindex) __dev_get_by_index(ifindex)
126 #define dev_get_by_index_rcu(net, ifindex) dev_get_by_index_rcu(ifindex)
127 #endif
128
129 #ifndef HAVE_DEV_GET_BY_INDEX_RCU
130 static inline struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
131 {
132         struct net_device *dev;
133
134         read_lock(&dev_base_lock);
135         dev = __dev_get_by_index(net, ifindex);
136         read_unlock(&dev_base_lock);
137
138         return dev;
139 }
140 #endif
141
142 #ifndef NETIF_F_FSO
143 #define NETIF_F_FSO 0
144 #endif
145
146 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
147 #define NETIF_F_FCOE_CRC        (1 << 24) /* FCoE CRC32 */
148 #endif
149
150 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
151 #define NETIF_F_IPV6_CSUM       16      /* Can checksum TCP/UDP over IPV6 */
152
153 #define NETIF_F_V4_CSUM         (NETIF_F_GEN_CSUM | NETIF_F_IP_CSUM)
154 #define NETIF_F_V6_CSUM         (NETIF_F_GEN_CSUM | NETIF_F_IPV6_CSUM)
155 #endif
156
157 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,38)
158 #define skb_gso_segment rpl_skb_gso_segment
159 struct sk_buff *rpl_skb_gso_segment(struct sk_buff *skb, u32 features);
160
161 #define netif_skb_features rpl_netif_skb_features
162 u32 rpl_netif_skb_features(struct sk_buff *skb);
163
164 #define netif_needs_gso rpl_netif_needs_gso
165 static inline int rpl_netif_needs_gso(struct sk_buff *skb, int features)
166 {
167         return skb_is_gso(skb) && (!skb_gso_ok(skb, features) ||
168                 unlikely(skb->ip_summed != CHECKSUM_PARTIAL));
169 }
170 #endif
171
172 #if LINUX_VERSION_CODE < KERNEL_VERSION(3,3,0)
173 typedef u32 netdev_features_t;
174 #endif
175
176 #ifndef HAVE___SKB_GSO_SEGMENT
177 static inline struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
178                                                 netdev_features_t features,
179                                                 bool tx_path)
180 {
181         return skb_gso_segment(skb, features);
182 }
183 #endif
184
185 #if LINUX_VERSION_CODE < KERNEL_VERSION(3,9,0)
186
187 /* XEN dom0 networking assumes dev->master is bond device
188  * and it tries to access bond private structure from dev->master
189  * ptr on receive path. This causes panic. Therefore it is better
190  * not to backport this API.
191  **/
192 static inline int netdev_master_upper_dev_link(struct net_device *dev,
193                                                struct net_device *upper_dev)
194 {
195         return 0;
196 }
197
198 static inline void netdev_upper_dev_unlink(struct net_device *dev,
199                                            struct net_device *upper_dev)
200 {
201 }
202 #endif
203
204 #endif