diff options
author | Nikolay Aleksandrov <nikolay@nvidia.com> | 2021-05-14 10:32:33 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-05-14 10:35:20 -0700 |
commit | bbc6f2cca74e548914a7705f5c39549c28ab8815 (patch) | |
tree | cae5a10a7e1cf193ba838555a071aef59a02d89b /net/bridge | |
parent | ea89c862f01e02ec459932c7c3113fa37aedd09a (diff) |
net: bridge: fix br_multicast_is_router stub when igmp is disabled
br_multicast_is_router takes two arguments when bridge IGMP is enabled
and just one when it's disabled, fix the stub to take two as well.
Fixes: 1a3065a26807 ("net: bridge: mcast: prepare is-router function for mcast router split")
Signed-off-by: Nikolay Aleksandrov <nikolay@nvidia.com>
Acked-by: Linus Lüssing <linus.luessing@c0d3.blue>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge')
-rw-r--r-- | net/bridge/br_private.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/bridge/br_private.h b/net/bridge/br_private.h index 03197ab4af76..ec661130c2d0 100644 --- a/net/bridge/br_private.h +++ b/net/bridge/br_private.h @@ -1068,7 +1068,8 @@ static inline void br_multicast_flood(struct net_bridge_mdb_entry *mdst, { } -static inline bool br_multicast_is_router(struct net_bridge *br) +static inline bool br_multicast_is_router(struct net_bridge *br, + struct sk_buff *skb) { return false; } |