From: Jesper Dangaard Brouer Date: Fri, 26 Jun 2009 10:45:58 +0000 (+0000) Subject: sunrpc: Use rcu_barrier() on unload. X-Git-Tag: Ubuntu-5.10.0-12.13~32269^2~4 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=75de874f5c35f679c6370fccc2bf4930e638ef3b;p=mirror_ubuntu-hirsute-kernel.git sunrpc: Use rcu_barrier() on unload. The sunrpc module uses rcu_call() thus it should use rcu_barrier() on module unload. Have not verified that the possibility for new call_rcu() callbacks has been disabled. As a hint for checking, the functions calling call_rcu() (unx_destroy_cred and generic_destroy_cred) are registered as crdestroy function pointer in struct rpc_credops. Acked-by: Paul E. McKenney Acked-by: Trond Myklebust Signed-off-by: Jesper Dangaard Brouer Signed-off-by: David S. Miller --- diff --git a/net/sunrpc/sunrpc_syms.c b/net/sunrpc/sunrpc_syms.c index 843629f55763..adaa81982f74 100644 --- a/net/sunrpc/sunrpc_syms.c +++ b/net/sunrpc/sunrpc_syms.c @@ -66,6 +66,7 @@ cleanup_sunrpc(void) #ifdef CONFIG_PROC_FS rpc_proc_exit(); #endif + rcu_barrier(); /* Wait for completion of call_rcu()'s */ } MODULE_LICENSE("GPL"); module_init(init_sunrpc);