datapath: Rename linux-2.6 and compat-2.6 directories.
[sliver-openvswitch.git] / datapath / linux / compat / include / linux / if.h
1 #ifndef __LINUX_IF_WRAPPER_H
2 #define __LINUX_IF_WRAPPER_H 1
3
4 #include_next <linux/if.h>
5
6 #include <linux/version.h>
7 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,31)
8
9 #define IFF_XMIT_DST_RELEASE 0
10
11 #endif /* linux kernel < 2.6.31 */
12
13 #if LINUX_VERSION_CODE == KERNEL_VERSION(2,6,36)
14 #define IFF_OVS_DATAPATH IFF_BRIDGE_PORT
15 #elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36)
16 #define IFF_OVS_DATAPATH 0              /* no-op flag */
17 #endif
18
19 #endif