diff options
author | Pravin B Shelar <pshelar@nicira.com> | 2013-08-19 14:23:34 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-08-20 03:15:44 -0400 |
commit | 58264848a5a7b91195f43c4729072e8cc980288d (patch) | |
tree | edf1ffa351402de61a4fe26e4443872c2d7b1dcb /net/openvswitch/Kconfig | |
parent | 1eaa81785a70082213d40de14ec13520b5c6fff2 (diff) |
openvswitch: Add vxlan tunneling support.
Following patch adds vxlan vport type for openvswitch using
vxlan api. So now there is vxlan dependency for openvswitch.
CC: Jesse Gross <jesse@nicira.com>
Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
Acked-by: Jesse Gross <jesse@nicira.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/Kconfig')
-rw-r--r-- | net/openvswitch/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/net/openvswitch/Kconfig b/net/openvswitch/Kconfig index 27ee56b688a3..bed30e69baa7 100644 --- a/net/openvswitch/Kconfig +++ b/net/openvswitch/Kconfig | |||
@@ -40,3 +40,16 @@ config OPENVSWITCH_GRE | |||
40 | Say N to exclude this support and reduce the binary size. | 40 | Say N to exclude this support and reduce the binary size. |
41 | 41 | ||
42 | If unsure, say Y. | 42 | If unsure, say Y. |
43 | |||
44 | config OPENVSWITCH_VXLAN | ||
45 | bool "Open vSwitch VXLAN tunneling support" | ||
46 | depends on INET | ||
47 | depends on OPENVSWITCH | ||
48 | depends on VXLAN && !(OPENVSWITCH=y && VXLAN=m) | ||
49 | default y | ||
50 | ---help--- | ||
51 | If you say Y here, then the Open vSwitch will be able create vxlan vport. | ||
52 | |||
53 | Say N to exclude this support and reduce the binary size. | ||
54 | |||
55 | If unsure, say Y. | ||