In previous code, macro HAVE_NET_NS_SET is used in code but never generated by config. This patch fixes it.
Signed-off-by: Yifeng Sun <[email protected]> --- acinclude.m4 | 4 ++-- datapath/linux/compat/nf_conntrack_proto.c | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index ed83df43df54..dda93e0970c0 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -619,8 +619,8 @@ AC_DEFUN([OVS_CHECK_LINUX_COMPAT], [ [nf_ct_is_untracked]) OVS_GREP_IFELSE([$KSRC/include/net/netfilter/nf_conntrack_zones.h], [nf_ct_zone_init]) - OVS_FIND_FIELD_IFELSE([$KSRC/include/net/netfilter/nf_conntrack_l3proto.h], - [net_ns_get]) + OVS_GREP_IFELSE([$KSRC/include/net/netfilter/nf_conntrack_l3proto.h], + [net_ns_get]) OVS_GREP_IFELSE([$KSRC/include/net/netfilter/nf_conntrack_labels.h], [nf_connlabels_get]) OVS_FIND_PARAM_IFELSE([$KSRC/include/net/netfilter/nf_conntrack_labels.h], diff --git a/datapath/linux/compat/nf_conntrack_proto.c b/datapath/linux/compat/nf_conntrack_proto.c index e877d763892d..4ac66f61c70d 100644 --- a/datapath/linux/compat/nf_conntrack_proto.c +++ b/datapath/linux/compat/nf_conntrack_proto.c @@ -11,10 +11,10 @@ * * However, we only need this feature if the underlying nf_conntrack_l3proto * supports net_ns_get/put. Thus, we just mock the functions if - * HAVE_NET_NS_SET is false. + * HAVE_NET_NS_GET is false. */ #if LINUX_VERSION_CODE < KERNEL_VERSION(4,15,0) -#ifdef HAVE_NET_NS_SET +#ifdef HAVE_NET_NS_GET static int nf_ct_netns_do_get(struct net *net, u8 nfproto) { const struct nf_conntrack_l3proto *l3proto; @@ -96,7 +96,7 @@ void rpl_nf_ct_netns_put(struct net *net, uint8_t nfproto) } EXPORT_SYMBOL_GPL(rpl_nf_ct_netns_put); -#else /* !HAVE_NET_NS_SET */ +#else /* !HAVE_NET_NS_GET */ void rpl_nf_ct_netns_put(struct net *net, uint8_t nfproto) { } @@ -108,5 +108,5 @@ int rpl_nf_ct_netns_get(struct net *net, u8 nfproto) } EXPORT_SYMBOL_GPL(rpl_nf_ct_netns_get); -#endif /* HAVE_NET_NS_SET */ +#endif /* HAVE_NET_NS_GET */ #endif /* LINUX_VERSION_CODE < KERNEL_VERSION(4,15,0) */ -- 2.7.4 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
