diff options
author | Kirill Tkhai <ktkhai@virtuozzo.com> | 2018-03-07 12:39:14 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-08 12:36:43 -0500 |
commit | 649b9826cc733fe410207d28d94984354e023b21 (patch) | |
tree | 2f3e7433864d69123332f07e29ad53bc8a1f1936 /net/xfrm | |
parent | 997266a4a02de882de11c7abecad0a3a42ac84b3 (diff) |
net: Convert xfrm_user_net_ops
These pernet_operations create and destroy net::xfrm::nlsk
socket of NETLINK_XFRM. There is only entry point, where
it's dereferenced, it's xfrm_user_rcv_msg(). There is no
in-kernel senders to this socket.
Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/xfrm')
-rw-r--r-- | net/xfrm/xfrm_user.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/xfrm/xfrm_user.c b/net/xfrm/xfrm_user.c index 7f52b8eb177d..aff2e84ec761 100644 --- a/net/xfrm/xfrm_user.c +++ b/net/xfrm/xfrm_user.c @@ -3258,6 +3258,7 @@ static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list) static struct pernet_operations xfrm_user_net_ops = { .init = xfrm_user_net_init, .exit_batch = xfrm_user_net_exit, + .async = true, }; static int __init xfrm_user_init(void) |