Commit 1793c798 authored by Hariprasad Shenai's avatar Hariprasad Shenai Committed by David S. Miller

cxgb4: Fixes cxgb4_inet6addr_notifier unregister call

commit b5a02f50 ("cxgb4 : Update ipv6 address handling api") introduced
a regression where unregister cxgb4_inet6addr_notifier wasn't getting called
during module_exit.
Signed-off-by: default avatarHariprasad Shenai <hariprasad@chelsio.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fe6a043c
...@@ -6290,7 +6290,7 @@ static int __init cxgb4_init_module(void) ...@@ -6290,7 +6290,7 @@ static int __init cxgb4_init_module(void)
static void __exit cxgb4_cleanup_module(void) static void __exit cxgb4_cleanup_module(void)
{ {
#if IS_ENABLED(CONFIG_IPV6) #if IS_ENABLED(CONFIG_IPV6)
if (inet6addr_registered && list_empty(&adapter_list)) { if (inet6addr_registered) {
unregister_inet6addr_notifier(&cxgb4_inet6addr_notifier); unregister_inet6addr_notifier(&cxgb4_inet6addr_notifier);
inet6addr_registered = false; inet6addr_registered = false;
} }
......
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