Commit fdb184d1 authored by Rami Rosen's avatar Rami Rosen Committed by David S. Miller

bridge: add empty br_mdb_init() and br_mdb_uninit() definitions.

This patch adds empty br_mdb_init() and br_mdb_uninit() definitions in
br_private.h to avoid build failure when CONFIG_BRIDGE_IGMP_SNOOPING is not set.
These methods were moved from br_multicast.c to br_netlink.c by
commit 3ec8e9f0Signed-off-by: default avatarRami Rosen <ramirose@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6602d007
...@@ -526,6 +526,12 @@ static inline bool br_multicast_is_router(struct net_bridge *br) ...@@ -526,6 +526,12 @@ static inline bool br_multicast_is_router(struct net_bridge *br)
{ {
return 0; return 0;
} }
static inline void br_mdb_init(void)
{
}
static inline void br_mdb_uninit(void)
{
}
#endif #endif
/* br_netfilter.c */ /* br_netfilter.c */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment