diff options
author | Kirill Tkhai <ktkhai@virtuozzo.com> | 2018-02-26 15:59:19 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-02-27 11:01:35 -0500 |
commit | c80afa026a7f6eb01f5431760cd894526153d4a8 (patch) | |
tree | 7d09c84c39290248e328621668d8dec75ce36697 /net/8021q | |
parent | 7f897db37b76235d50151dfea7d543568d54535a (diff) | |
download | linux-stable-c80afa026a7f6eb01f5431760cd894526153d4a8.tar.gz linux-stable-c80afa026a7f6eb01f5431760cd894526153d4a8.tar.bz2 linux-stable-c80afa026a7f6eb01f5431760cd894526153d4a8.zip |
net: Convert /proc creating and destroying pernet_operations
These pernet_operations just create and destroy /proc entries,
and they can safely marked as async:
pppoe_net_ops
vlan_net_ops
canbcm_pernet_ops
kcm_net_ops
pfkey_net_ops
pppol2tp_net_ops
phonet_net_ops
Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/8021q')
-rw-r--r-- | net/8021q/vlan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/8021q/vlan.c b/net/8021q/vlan.c index bad01b14a4ad..bd0ed39f65fb 100644 --- a/net/8021q/vlan.c +++ b/net/8021q/vlan.c @@ -729,6 +729,7 @@ static struct pernet_operations vlan_net_ops = { .exit = vlan_exit_net, .id = &vlan_net_id, .size = sizeof(struct vlan_net), + .async = true, }; static int __init vlan_proto_init(void) |