net: Convert rpcsec_gss_net_ops
authorKirill Tkhai <ktkhai@virtuozzo.com>
Mon, 26 Mar 2018 09:28:47 +0000 (12:28 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 26 Mar 2018 17:03:26 +0000 (13:03 -0400)
These pernet_operations initialize and destroy sunrpc_net_id
refered per-net items. Only used global list is cache_list,
and accesses already serialized.

sunrpc_destroy_cache_detail() check for list_empty() without
cache_list_lock, but when it's called from unregister_pernet_subsys(),
there can't be callers in parallel, so we won't miss list_empty()
in this case.

Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Acked-by: Anna Schumaker <Anna.Schumaker@netapp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sunrpc/auth_gss/auth_gss.c

index 9463af4b32e8d7d688523986c584e73046d4dd7a..44f939cb6bc82c75ab4f0fdff995a828162ea2d2 100644 (file)
@@ -2063,6 +2063,7 @@ static __net_exit void rpcsec_gss_exit_net(struct net *net)
 static struct pernet_operations rpcsec_gss_net_ops = {
        .init = rpcsec_gss_init_net,
        .exit = rpcsec_gss_exit_net,
+       .async = true,
 };
 
 /*