datapath: Remove reciprocal_div compat code.
[sliver-openvswitch.git] / datapath / linux / compat / include / linux / netfilter_ipv4.h
1 #ifndef __LINUX_NETFILTER_IPV4_WRAPPER_H
2 #define __LINUX_NETFILTER_IPV4_WRAPPER_H 1
3
4 #include_next <linux/netfilter_ipv4.h>
5
6 #include <linux/version.h>
7 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25)
8
9 #ifdef __KERNEL__
10
11 #define NF_INET_PRE_ROUTING NF_IP_PRE_ROUTING
12 #define NF_INET_POST_ROUTING NF_IP_POST_ROUTING
13 #define NF_INET_FORWARD NF_IP_FORWARD
14
15 #endif /* __KERNEL__ */
16
17 #endif /* linux kernel < 2.6.25 */
18
19 #endif