projects
/
platform
/
kernel
/
linux-rpi3.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ae2d708
)
nfnetlink_cttimeout: add rcu_barrier() on module removal
author
Pablo Neira Ayuso
<pablo@netfilter.org>
Mon, 5 Oct 2015 14:51:02 +0000
(16:51 +0200)
committer
Pablo Neira Ayuso
<pablo@netfilter.org>
Mon, 12 Oct 2015 15:04:41 +0000
(17:04 +0200)
Make sure kfree_rcu() released objects before leaving the module removal
exit path.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nfnetlink_cttimeout.c
patch
|
blob
|
history
diff --git
a/net/netfilter/nfnetlink_cttimeout.c
b/net/netfilter/nfnetlink_cttimeout.c
index
5bda647
..
c7a2d0e
100644
(file)
--- a/
net/netfilter/nfnetlink_cttimeout.c
+++ b/
net/netfilter/nfnetlink_cttimeout.c
@@
-612,6
+612,7
@@
static void __exit cttimeout_exit(void)
RCU_INIT_POINTER(nf_ct_timeout_find_get_hook, NULL);
RCU_INIT_POINTER(nf_ct_timeout_put_hook, NULL);
#endif /* CONFIG_NF_CONNTRACK_TIMEOUT */
+ rcu_barrier();
}
module_init(cttimeout_init);