mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2026-01-05 09:17:13 +01:00
There's no particular desire to have conntrack action support in Open
vSwitch as an independently configurable bit, rather just to ensure
there is not a hard dependency. This exposed option doesn't accurately
reflect the conntrack dependency when enabled, so simplify this by
removing the option. Compile the support if NF_CONNTRACK is enabled.
Fixes: 7f8a436eaa ("openvswitch: Add conntrack action")
Signed-off-by: Joe Stringer <joestringer@nicira.com>
Acked-by: Pravin B Shelar <pshelar@nicira.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
446 B
446 B
Makefile for Open vSwitch.
obj-$(CONFIG_OPENVSWITCH) += openvswitch.o
openvswitch-y :=
actions.o
datapath.o
dp_notify.o
flow.o
flow_netlink.o
flow_table.o
vport.o
vport-internal_dev.o
vport-netdev.o
ifneq ($(CONFIG_NF_CONNTRACK),) openvswitch-y += conntrack.o endif
obj-$(CONFIG_OPENVSWITCH_VXLAN)+= vport-vxlan.o obj-$(CONFIG_OPENVSWITCH_GENEVE)+= vport-geneve.o obj-$(CONFIG_OPENVSWITCH_GRE) += vport-gre.o