diff options
author | Vlad Yasevich <vyasevic@redhat.com> | 2012-12-19 13:13:48 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-12-20 00:50:06 +0400 |
commit | 63233159fd4e596568f5f168ecb0879b61631d47 (patch) | |
tree | 4cfde7141cb81f573a575f6c870b1af2b7f41181 /net/bridge/br_mdb.c | |
parent | a5e40708c495e387a2351d5e89b0cf7f19175a57 (diff) | |
download | linux-63233159fd4e596568f5f168ecb0879b61631d47.tar.xz |
bridge: Do not unregister all PF_BRIDGE rtnl operations
Bridge fdb and link rtnl operations are registered in
core/rtnetlink. Bridge mdb operations are registred
in bridge/mdb. When removing bridge module, do not
unregister ALL PF_BRIDGE ops since that would remove
the ops from rtnetlink as well. Do remove mdb ops when
bridge is destroyed.
Signed-off-by: Vlad Yasevich <vyasevic@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge/br_mdb.c')
-rw-r--r-- | net/bridge/br_mdb.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/bridge/br_mdb.c b/net/bridge/br_mdb.c index 9cf5d2b28c76..3e05cc32da50 100644 --- a/net/bridge/br_mdb.c +++ b/net/bridge/br_mdb.c @@ -482,3 +482,10 @@ void br_mdb_init(void) rtnl_register(PF_BRIDGE, RTM_NEWMDB, br_mdb_add, NULL, NULL); rtnl_register(PF_BRIDGE, RTM_DELMDB, br_mdb_del, NULL, NULL); } + +void br_mdb_uninit(void) +{ + rtnl_unregister(PF_BRIDGE, RTM_GETMDB); + rtnl_unregister(PF_BRIDGE, RTM_NEWMDB); + rtnl_unregister(PF_BRIDGE, RTM_DELMDB); +} |