]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
net: dsa: Fix dependencies on bridge
authorAndrew Lunn <andrew@lunn.ch>
Sat, 11 Nov 2017 15:29:41 +0000 (16:29 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 14 Nov 2017 02:11:45 +0000 (11:11 +0900)
DSA now uses one of the symbols exported by the bridge,
br_vlan_enabled(). This has a stub, if the bridge is not
enabled. However, if the bridge is enabled, we cannot have DSA built
in and the bridge as a module, otherwise we get undefined symbols at
link time:

   net/dsa/port.o: In function `dsa_port_vlan_add':
   net/dsa/port.c:255: undefined reference to `br_vlan_enabled'
   net/dsa/port.o: In function `dsa_port_vlan_del':
   net/dsa/port.c:270: undefined reference to `br_vlan_enabled'

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/dsa/Kconfig

index 2fed892094bcc61df3d47e742ad04555b39991c1..03c3bdf25468e754248d577d1604304606e6c87c 100644 (file)
@@ -7,6 +7,7 @@ config HAVE_NET_DSA
 config NET_DSA
        tristate "Distributed Switch Architecture"
        depends on HAVE_NET_DSA && MAY_USE_DEVLINK
+       depends on BRIDGE || BRIDGE=n
        select NET_SWITCHDEV
        select PHYLIB
        ---help---