]> git.openfabrics.org - ~aditr/compat.git/commitdiff
rdma.m4: Added macros to support SLES12 SP2
authorVladimir Sokolovsky <vlad@mellanox.com>
Sun, 20 Nov 2016 10:41:48 +0000 (12:41 +0200)
committerVladimir Sokolovsky <vlad@mellanox.com>
Sun, 20 Nov 2016 10:41:48 +0000 (12:41 +0200)
Signed-off-by: Vladimir Sokolovsky <vlad@mellanox.com>
config/rdma.m4

index cb9789027c4513d9f2e119408670bc089e74e651..e93584985c2bac04cc2c44fbe1fcba32625a342e 100644 (file)
@@ -3496,6 +3496,66 @@ AC_DEFUN([LINUX_CONFIG_COMPAT],
                AC_MSG_RESULT(no)
        ])
 
+       AC_MSG_CHECKING([if net/pkt_cls.h has tcf_exts_to_list])
+       LB_LINUX_TRY_COMPILE([
+               #include <net/pkt_cls.h>
+       ],[
+               tcf_exts_to_list(NULL, NULL);
+
+               return 0;
+       ],[
+               AC_MSG_RESULT(yes)
+               AC_DEFINE(HAVE_TCF_EXTS_TO_LIST, 1,
+                         [tcf_exts_to_list is defined])
+       ],[
+               AC_MSG_RESULT(no)
+       ])
+
+       AC_MSG_CHECKING([if net/act_api.h has tcf_action_stats_update])
+       LB_LINUX_TRY_COMPILE([
+               #include <net/act_api.h>
+       ],[
+               tcf_action_stats_update(NULL, 0, 0, 0);
+
+               return 0;
+       ],[
+               AC_MSG_RESULT(yes)
+               AC_DEFINE(HAVE_TCF_ACTION_STATS_UPDATE, 1,
+                         [tcf_action_stats_update is defined])
+       ],[
+               AC_MSG_RESULT(no)
+       ])
+
+       AC_MSG_CHECKING([if net/tc_act/tc_mirred.h has is_tcf_mirred_redirect])
+       LB_LINUX_TRY_COMPILE([
+               #include <net/tc_act/tc_mirred.h>
+       ],[
+               is_tcf_mirred_redirect(NULL, 0, 0, 0);
+
+               return 0;
+       ],[
+               AC_MSG_RESULT(yes)
+               AC_DEFINE(HAVE_IS_TCF_MIRRED_REDIRECT, 1,
+                         [is_tcf_mirred_redirect is defined])
+       ],[
+               AC_MSG_RESULT(no)
+       ])
+
+       AC_MSG_CHECKING([if enum tc_fl_command has TC_CLSFLOWER_STATS])
+       LB_LINUX_TRY_COMPILE([
+               #include <net/pkt_cls.h>
+       ],[
+               enum tc_fl_command x = TC_CLSFLOWER_STATS;
+
+               return 0;
+       ],[
+               AC_MSG_RESULT(yes)
+               AC_DEFINE(HAVE_TC_CLSFLOWER_STATS, 1,
+                         [TC_CLSFLOWER_STATS is defined])
+       ],[
+               AC_MSG_RESULT(no)
+       ])
+
 ])
 #
 # COMPAT_CONFIG_HEADERS