mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 01:22:07 +00:00
f579668406
The Openvswitch implementation is completely agnostic to the options that are in use and can handle newly defined options without further work. It does this by simply matching on a byte array of options and allowing userspace to setup flows on this array. Signed-off-by: Jesse Gross <jesse@nicira.com> Singed-off-by: Ansis Atteka <aatteka@nicira.com> Signed-off-by: Andy Zhou <azhou@nicira.com> Acked-by: Thomas Graf <tgraf@noironetworks.com> Acked-by: Pravin B Shelar <pshelar@nicira.com> Signed-off-by: David S. Miller <davem@davemloft.net>
29 lines
457 B
Makefile
29 lines
457 B
Makefile
#
|
|
# 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_OPENVSWITCH_GENEVE),)
|
|
openvswitch-y += vport-geneve.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_OPENVSWITCH_VXLAN),)
|
|
openvswitch-y += vport-vxlan.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_OPENVSWITCH_GRE),)
|
|
openvswitch-y += vport-gre.o
|
|
endif
|