9ae50a74005e439db27a0518f4c3dc555b80f32c
[dpdk.git] / lib / librte_eal / linuxapp / kni / compat.h
1 /*
2  * Minimal wrappers to allow compiling kni on older kernels.
3  */
4
5 #ifndef RHEL_RELEASE_VERSION
6 #define RHEL_RELEASE_VERSION(a, b) (((a) << 8) + (b))
7 #endif
8
9 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 39) && \
10         (!(defined(RHEL_RELEASE_CODE) && \
11            RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(6, 4)))
12
13 #define kstrtoul strict_strtoul
14
15 #endif /* < 2.6.39 */
16
17 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 33)
18 #define HAVE_SIMPLIFIED_PERNET_OPERATIONS
19 #endif
20
21 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 35)
22 #define sk_sleep(s) ((s)->sk_sleep)
23 #endif
24
25 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0)
26 #define HAVE_CHANGE_CARRIER_CB
27 #endif
28
29 #if LINUX_VERSION_CODE < KERNEL_VERSION(3, 14, 0)
30 #define ether_addr_copy(dst, src) memcpy(dst, src, ETH_ALEN)
31 #endif
32
33 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 19, 0)
34 #define HAVE_IOV_ITER_MSGHDR
35 #endif
36
37 #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 1, 0)
38 #define HAVE_KIOCB_MSG_PARAM
39 #define HAVE_REBUILD_HEADER
40 #endif
41
42 #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 7, 0)
43 #define HAVE_TRANS_START_HELPER
44 #endif
45
46 /*
47  * KNI uses NET_NAME_UNKNOWN macro to select correct version of alloc_netdev()
48  * For old kernels just backported the commit that enables the macro
49  * (685343fc3ba6) but still uses old API, it is required to undefine macro to
50  * select correct version of API, this is safe since KNI doesn't use the value.
51  * This fix is specific to RedHat/CentOS kernels.
52  */
53 #if (defined(RHEL_RELEASE_CODE) && \
54         (RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(6, 8)) && \
55         (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 34)))
56 #undef NET_NAME_UNKNOWN
57 #endif