datapath: Prevent linker error of unknown symbol.
[cascardo/ovs.git] / datapath / linux / compat / include / linux / ip.h
1 #ifndef __LINUX_IP_WRAPPER_H
2 #define __LINUX_IP_WRAPPER_H 1
3
4 #include_next <linux/ip.h>
5
6 #ifndef HAVE_SKBUFF_HEADER_HELPERS
7 #include <linux/skbuff.h>
8
9 static inline struct iphdr *ip_hdr(const struct sk_buff *skb)
10 {
11         return (struct iphdr *)skb_network_header(skb);
12 }
13
14 static inline unsigned int ip_hdrlen(const struct sk_buff *skb)
15 {
16         return ip_hdr(skb)->ihl * 4;
17 }
18 #endif /* !HAVE_SKBUFF_HEADER_HELPERS */
19
20 #endif