diff options
author | Kirill Tkhai <ktkhai@virtuozzo.com> | 2018-02-13 10:29:33 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-02-13 16:36:08 +0100 |
commit | 6c0075d0f6ccf5be4527408830852106808ab2bb (patch) | |
tree | f5a044b1ae2842b03a60326b36cd37e80032e19d /net | |
parent | net: Convert genl_pernet_ops (diff) | |
download | linux-6c0075d0f6ccf5be4527408830852106808ab2bb.tar.xz linux-6c0075d0f6ccf5be4527408830852106808ab2bb.zip |
net: Convert wext_pernet_ops
These pernet_operations initialize and purge net::wext_nlevents
queue, and are not touched by foreign pernet_operations.
Mark them async.
Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Acked-by: Andrei Vagin <avagin@virtuozzo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/wireless/wext-core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/wireless/wext-core.c b/net/wireless/wext-core.c index 9efbfc753347..bc7064486b15 100644 --- a/net/wireless/wext-core.c +++ b/net/wireless/wext-core.c @@ -390,6 +390,7 @@ static void __net_exit wext_pernet_exit(struct net *net) static struct pernet_operations wext_pernet_ops = { .init = wext_pernet_init, .exit = wext_pernet_exit, + .async = true, }; static int __init wireless_nlevent_init(void) |