* [PATCH] bridge: Correctly unregister MDB rtnetlink handlers
@ 2013-01-02 19:41 Vlad Yasevich
2013-01-03 9:56 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Vlad Yasevich @ 2013-01-02 19:41 UTC (permalink / raw)
To: davem, shemminger; +Cc: netdev
Commit 63233159fd4e596568f5f168ecb0879b61631d47:
bridge: Do not unregister all PF_BRIDGE rtnl operations
introduced a bug where a removal of a single bridge from a
multi-bridge system would remove MDB netlink handlers.
The handlers should only be removed once all bridges are gone, but
since we don't keep track of the number of bridge interfaces, it's
simpler to do it when the bridge module is unloaded. To make it
consistent, move the registration code into module initialization
code path.
Signed-off-by: Vlad Yasevich <vyasevic@redhat.com>
---
net/bridge/br_multicast.c | 2 --
net/bridge/br_netlink.c | 13 ++++++++++++-
2 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/net/bridge/br_multicast.c b/net/bridge/br_multicast.c
index 5391ca4..6d6f265 100644
--- a/net/bridge/br_multicast.c
+++ b/net/bridge/br_multicast.c
@@ -1608,7 +1608,6 @@ void br_multicast_init(struct net_bridge *br)
br_multicast_querier_expired, (unsigned long)br);
setup_timer(&br->multicast_query_timer, br_multicast_query_expired,
(unsigned long)br);
- br_mdb_init();
}
void br_multicast_open(struct net_bridge *br)
@@ -1633,7 +1632,6 @@ void br_multicast_stop(struct net_bridge *br)
del_timer_sync(&br->multicast_querier_timer);
del_timer_sync(&br->multicast_query_timer);
- br_mdb_uninit();
spin_lock_bh(&br->multicast_lock);
mdb = mlock_dereference(br->mdb, br);
if (!mdb)
diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c
index 97ba018..5dc66ab 100644
--- a/net/bridge/br_netlink.c
+++ b/net/bridge/br_netlink.c
@@ -299,10 +299,21 @@ struct rtnl_link_ops br_link_ops __read_mostly = {
int __init br_netlink_init(void)
{
- return rtnl_link_register(&br_link_ops);
+ int err;
+
+ br_mdb_init();
+ err = rtnl_link_register(&br_link_ops);
+ if (err)
+ goto out;
+
+ return 0;
+out:
+ br_mdb_uninit();
+ return err;
}
void __exit br_netlink_fini(void)
{
+ br_mdb_uninit();
rtnl_link_unregister(&br_link_ops);
}
--
1.7.7.6
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] bridge: Correctly unregister MDB rtnetlink handlers
2013-01-02 19:41 [PATCH] bridge: Correctly unregister MDB rtnetlink handlers Vlad Yasevich
@ 2013-01-03 9:56 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2013-01-03 9:56 UTC (permalink / raw)
To: vyasevic; +Cc: shemminger, netdev
From: Vlad Yasevich <vyasevic@redhat.com>
Date: Wed, 2 Jan 2013 14:41:25 -0500
> Commit 63233159fd4e596568f5f168ecb0879b61631d47:
> bridge: Do not unregister all PF_BRIDGE rtnl operations
> introduced a bug where a removal of a single bridge from a
> multi-bridge system would remove MDB netlink handlers.
> The handlers should only be removed once all bridges are gone, but
> since we don't keep track of the number of bridge interfaces, it's
> simpler to do it when the bridge module is unloaded. To make it
> consistent, move the registration code into module initialization
> code path.
>
> Signed-off-by: Vlad Yasevich <vyasevic@redhat.com>
Applied, thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-01-03 9:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-02 19:41 [PATCH] bridge: Correctly unregister MDB rtnetlink handlers Vlad Yasevich
2013-01-03 9:56 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).