aboutsummaryrefslogtreecommitdiffstats
path: root/net/bridge
diff options
context:
space:
mode:
authorLinus Lüssing <linus.luessing@web.de>2014-06-11 19:41:24 -0400
committerDavid S. Miller <davem@davemloft.net>2014-06-12 14:00:24 -0400
commit3993c4e159eba0e10c0628737736d6fcf97ab9ef (patch)
tree0c09f78241f8e9fd73d35fc015bf15639d4854c9 /net/bridge
parent6c03ee8bdaa10401f60dee25a719753d2fbbcc36 (diff)
bridge: fix compile error when compiling without IPv6 support
Some fields in "struct net_bridge" aren't available when compiling the kernel without IPv6 support. Therefore adding a check/macro to skip the complaining code sections in that case. Introduced by 2cd4143192e8c60f66cb32c3a30c76d0470a372d ("bridge: memorize and export selected IGMP/MLD querier port") Reported-by: kbuild test robot <fengguang.wu@intel.com> Signed-off-by: Linus Lüssing <linus.luessing@web.de> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge')
-rw-r--r--net/bridge/br_multicast.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/bridge/br_multicast.c b/net/bridge/br_multicast.c
index 876e5fb2a786..abfa0b65a111 100644
--- a/net/bridge/br_multicast.c
+++ b/net/bridge/br_multicast.c
@@ -2246,11 +2246,13 @@ bool br_multicast_has_querier_adjacent(struct net_device *dev, int proto)
2246 rcu_dereference(br->ip4_querier.port) == port) 2246 rcu_dereference(br->ip4_querier.port) == port)
2247 goto unlock; 2247 goto unlock;
2248 break; 2248 break;
2249#if IS_ENABLED(CONFIG_IPV6)
2249 case ETH_P_IPV6: 2250 case ETH_P_IPV6:
2250 if (!timer_pending(&br->ip6_other_query.timer) || 2251 if (!timer_pending(&br->ip6_other_query.timer) ||
2251 rcu_dereference(br->ip6_querier.port) == port) 2252 rcu_dereference(br->ip6_querier.port) == port)
2252 goto unlock; 2253 goto unlock;
2253 break; 2254 break;
2255#endif
2254 default: 2256 default:
2255 goto unlock; 2257 goto unlock;
2256 } 2258 }