aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPravin B Shelar <pshelar@nicira.com>2014-11-14 01:21:30 -0500
committerDavid S. Miller <davem@davemloft.net>2014-11-14 01:24:27 -0500
commit8cd4313aa775537f724486d5b7503b4d46c9f012 (patch)
tree45b686041777be1ce858c2e13f95b311bcad9c08
parent076ce4482569ea1a2c27b4ca71a309adaf91d398 (diff)
openvswitch: Fix build failure.
Add dependency on INET to fix following build error. I have also fixed MPLS dependency. ERROR: "ip_route_output_flow" [net/openvswitch/openvswitch.ko] undefined! make[1]: *** [__modpost] Error 1 Reported-by: Jim Davis <jim.epost@gmail.com> Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/openvswitch/Kconfig6
1 files changed, 2 insertions, 4 deletions
diff --git a/net/openvswitch/Kconfig b/net/openvswitch/Kconfig
index 454ce12efbbf..b7d818c59423 100644
--- a/net/openvswitch/Kconfig
+++ b/net/openvswitch/Kconfig
@@ -4,7 +4,9 @@
4 4
5config OPENVSWITCH 5config OPENVSWITCH
6 tristate "Open vSwitch" 6 tristate "Open vSwitch"
7 depends on INET
7 select LIBCRC32C 8 select LIBCRC32C
9 select NET_MPLS_GSO
8 ---help--- 10 ---help---
9 Open vSwitch is a multilayer Ethernet switch targeted at virtualized 11 Open vSwitch is a multilayer Ethernet switch targeted at virtualized
10 environments. In addition to supporting a variety of features 12 environments. In addition to supporting a variety of features
@@ -30,8 +32,6 @@ config OPENVSWITCH
30 32
31config OPENVSWITCH_GRE 33config OPENVSWITCH_GRE
32 tristate "Open vSwitch GRE tunneling support" 34 tristate "Open vSwitch GRE tunneling support"
33 select NET_MPLS_GSO
34 depends on INET
35 depends on OPENVSWITCH 35 depends on OPENVSWITCH
36 depends on NET_IPGRE_DEMUX 36 depends on NET_IPGRE_DEMUX
37 default OPENVSWITCH 37 default OPENVSWITCH
@@ -45,7 +45,6 @@ config OPENVSWITCH_GRE
45 45
46config OPENVSWITCH_VXLAN 46config OPENVSWITCH_VXLAN
47 tristate "Open vSwitch VXLAN tunneling support" 47 tristate "Open vSwitch VXLAN tunneling support"
48 depends on INET
49 depends on OPENVSWITCH 48 depends on OPENVSWITCH
50 depends on VXLAN 49 depends on VXLAN
51 default OPENVSWITCH 50 default OPENVSWITCH
@@ -58,7 +57,6 @@ config OPENVSWITCH_VXLAN
58 57
59config OPENVSWITCH_GENEVE 58config OPENVSWITCH_GENEVE
60 tristate "Open vSwitch Geneve tunneling support" 59 tristate "Open vSwitch Geneve tunneling support"
61 depends on INET
62 depends on OPENVSWITCH 60 depends on OPENVSWITCH
63 depends on GENEVE 61 depends on GENEVE
64 default OPENVSWITCH 62 default OPENVSWITCH