diff options
author | Xin Long <lucien.xin@gmail.com> | 2023-02-07 23:52:06 +0100 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2023-02-11 01:23:03 +0100 |
commit | c0c3ab63de603b40f89a9c0d7217209a8840d053 (patch) | |
tree | 429312bb3d1da9157aac877809142e0c0acb1021 /net/openvswitch | |
parent | net: skbuff: drop the word head from skb cache (diff) | |
download | linux-c0c3ab63de603b40f89a9c0d7217209a8840d053.tar.xz linux-c0c3ab63de603b40f89a9c0d7217209a8840d053.zip |
net: create nf_conntrack_ovs for ovs and tc use
Similar to nf_nat_ovs created by Commit ebddb1404900 ("net: move the
nat function to nf_nat_ovs for ovs and tc"), this patch is to create
nf_conntrack_ovs to get these functions shared by OVS and TC only.
There are nf_ct_helper() and nf_ct_add_helper() from nf_conntrak_helper
in this patch, and will be more in the following patches.
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Reviewed-by: Aaron Conole <aconole@redhat.com>
Acked-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/openvswitch')
-rw-r--r-- | net/openvswitch/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/openvswitch/Kconfig b/net/openvswitch/Kconfig index 747d537a3f06..29a7081858cd 100644 --- a/net/openvswitch/Kconfig +++ b/net/openvswitch/Kconfig @@ -15,6 +15,7 @@ config OPENVSWITCH select NET_MPLS_GSO select DST_CACHE select NET_NSH + select NF_CONNTRACK_OVS if NF_CONNTRACK select NF_NAT_OVS if NF_NAT help Open vSwitch is a multilayer Ethernet switch targeted at virtualized |