Merge branch 'mainstream'
[sliver-openvswitch.git] / datapath / linux / compat / include / net / ip.h
1 #ifndef __NET_IP_WRAPPER_H
2 #define __NET_IP_WRAPPER_H 1
3
4 #include_next <net/ip.h>
5
6 #include <linux/version.h>
7 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25)
8
9 extern int              __ip_local_out(struct sk_buff *skb);
10 extern int              ip_local_out(struct sk_buff *skb);
11
12 #endif /* linux kernel < 2.6.25 */
13
14 #if LINUX_VERSION_CODE < KERNEL_VERSION(3,1,0)
15 static inline bool ip_is_fragment(const struct iphdr *iph)
16 {
17         return (iph->frag_off & htons(IP_MF | IP_OFFSET)) != 0;
18 }
19 #endif
20
21 #endif