From: Vasily Averin Date: Sun, 12 Nov 2017 08:48:43 +0000 (+0300) Subject: sunrpc: exit_net cleanup check added X-Git-Tag: v4.15-rc1~60^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4112be70becb82bc9a53cf2d11ab51c35602b063;p=thirdparty%2Flinux.git sunrpc: exit_net cleanup check added Be sure that all_clients list initialized in net_init hook was return to initial state. Signed-off-by: Vasily Averin Signed-off-by: Anna Schumaker --- diff --git a/net/sunrpc/sunrpc_syms.c b/net/sunrpc/sunrpc_syms.c index c73de181467a3..56f9eff74150d 100644 --- a/net/sunrpc/sunrpc_syms.c +++ b/net/sunrpc/sunrpc_syms.c @@ -65,10 +65,13 @@ err_proc: static __net_exit void sunrpc_exit_net(struct net *net) { + struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); + rpc_pipefs_exit_net(net); unix_gid_cache_destroy(net); ip_map_cache_destroy(net); rpc_proc_exit(net); + WARN_ON_ONCE(!list_empty(&sn->all_clients)); } static struct pernet_operations sunrpc_net_ops = {