diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2010-03-03 01:23:22 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-03-03 01:23:22 -0800 |
commit | 1cd4efddc4512ccbd9fe317f688f361605ca0c88 (patch) | |
tree | 6d9eea47b319495cdfba6c95bdee37a7cbc9b6c3 /net/bridge | |
parent | 4d63cb4d8638fdf2e3bf874936335a08e3b5d8fe (diff) | |
download | linux-3.10-1cd4efddc4512ccbd9fe317f688f361605ca0c88.tar.gz linux-3.10-1cd4efddc4512ccbd9fe317f688f361605ca0c88.tar.bz2 linux-3.10-1cd4efddc4512ccbd9fe317f688f361605ca0c88.zip |
bridge: depends on INET
br_multicast calls ip_send_check(), so it should depend on INET.
built-in:
br_multicast.c:(.text+0x88cf4): undefined reference to `ip_send_check'
or modular:
ERROR: "ip_send_check" [net/bridge/bridge.ko] undefined!
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge')
-rw-r--r-- | net/bridge/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/bridge/Kconfig b/net/bridge/Kconfig index 19a6b9629c5..d115d5cea5b 100644 --- a/net/bridge/Kconfig +++ b/net/bridge/Kconfig @@ -35,6 +35,7 @@ config BRIDGE config BRIDGE_IGMP_SNOOPING bool "IGMP snooping" depends on BRIDGE + depends on INET default y ---help--- If you say Y here, then the Ethernet bridge will be able selectively |