diff options
author | Jesper Dangaard Brouer <hawk@comx.dk> | 2009-06-07 23:11:33 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-06-10 04:11:23 -0400 |
commit | 67137f3cc727e4da0297ffd7bfade837aa15ecfa (patch) | |
tree | c989f7e2e788aa79e105f93b0682d34f1435e1cf /net | |
parent | 6e327c11a91d190650df9aabe7d3694d4838bfa1 (diff) |
nfnetlink_queue: Use rcu_barrier() on module unload.
This module uses rcu_call() thus it should use rcu_barrier() on module unload.
Also fixed a trivial typo 'nfetlink' -> 'nfnetlink' in comment.
Signed-off-by: Jesper Dangaard Brouer <hawk@comx.dk>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Acked-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/netfilter/nfnetlink_queue.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/netfilter/nfnetlink_queue.c b/net/netfilter/nfnetlink_queue.c index 8c860112ce05..71daa0934b6c 100644 --- a/net/netfilter/nfnetlink_queue.c +++ b/net/netfilter/nfnetlink_queue.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | * This is a module which is used for queueing packets and communicating with | 2 | * This is a module which is used for queueing packets and communicating with |
3 | * userspace via nfetlink. | 3 | * userspace via nfnetlink. |
4 | * | 4 | * |
5 | * (C) 2005 by Harald Welte <laforge@netfilter.org> | 5 | * (C) 2005 by Harald Welte <laforge@netfilter.org> |
6 | * (C) 2007 by Patrick McHardy <kaber@trash.net> | 6 | * (C) 2007 by Patrick McHardy <kaber@trash.net> |
@@ -932,6 +932,8 @@ static void __exit nfnetlink_queue_fini(void) | |||
932 | #endif | 932 | #endif |
933 | nfnetlink_subsys_unregister(&nfqnl_subsys); | 933 | nfnetlink_subsys_unregister(&nfqnl_subsys); |
934 | netlink_unregister_notifier(&nfqnl_rtnl_notifier); | 934 | netlink_unregister_notifier(&nfqnl_rtnl_notifier); |
935 | |||
936 | rcu_barrier(); /* Wait for completion of call_rcu()'s */ | ||
935 | } | 937 | } |
936 | 938 | ||
937 | MODULE_DESCRIPTION("netfilter packet queue handler"); | 939 | MODULE_DESCRIPTION("netfilter packet queue handler"); |