Commit c80afa02 authored by Kirill Tkhai's avatar Kirill Tkhai Committed by David S. Miller

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: default avatarKirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7f897db3
...@@ -1161,6 +1161,7 @@ static struct pernet_operations pppoe_net_ops = { ...@@ -1161,6 +1161,7 @@ static struct pernet_operations pppoe_net_ops = {
.exit = pppoe_exit_net, .exit = pppoe_exit_net,
.id = &pppoe_net_id, .id = &pppoe_net_id,
.size = sizeof(struct pppoe_net), .size = sizeof(struct pppoe_net),
.async = true,
}; };
static int __init pppoe_init(void) static int __init pppoe_init(void)
......
...@@ -729,6 +729,7 @@ static struct pernet_operations vlan_net_ops = { ...@@ -729,6 +729,7 @@ static struct pernet_operations vlan_net_ops = {
.exit = vlan_exit_net, .exit = vlan_exit_net,
.id = &vlan_net_id, .id = &vlan_net_id,
.size = sizeof(struct vlan_net), .size = sizeof(struct vlan_net),
.async = true,
}; };
static int __init vlan_proto_init(void) static int __init vlan_proto_init(void)
......
...@@ -1717,6 +1717,7 @@ static void canbcm_pernet_exit(struct net *net) ...@@ -1717,6 +1717,7 @@ static void canbcm_pernet_exit(struct net *net)
static struct pernet_operations canbcm_pernet_ops __read_mostly = { static struct pernet_operations canbcm_pernet_ops __read_mostly = {
.init = canbcm_pernet_init, .init = canbcm_pernet_init,
.exit = canbcm_pernet_exit, .exit = canbcm_pernet_exit,
.async = true,
}; };
static int __init bcm_module_init(void) static int __init bcm_module_init(void)
......
...@@ -433,6 +433,7 @@ static void kcm_proc_exit_net(struct net *net) ...@@ -433,6 +433,7 @@ static void kcm_proc_exit_net(struct net *net)
static struct pernet_operations kcm_net_ops = { static struct pernet_operations kcm_net_ops = {
.init = kcm_proc_init_net, .init = kcm_proc_init_net,
.exit = kcm_proc_exit_net, .exit = kcm_proc_exit_net,
.async = true,
}; };
int __init kcm_proc_init(void) int __init kcm_proc_init(void)
......
...@@ -3863,6 +3863,7 @@ static struct pernet_operations pfkey_net_ops = { ...@@ -3863,6 +3863,7 @@ static struct pernet_operations pfkey_net_ops = {
.exit = pfkey_net_exit, .exit = pfkey_net_exit,
.id = &pfkey_net_id, .id = &pfkey_net_id,
.size = sizeof(struct netns_pfkey), .size = sizeof(struct netns_pfkey),
.async = true,
}; };
static void __exit ipsec_pfkey_exit(void) static void __exit ipsec_pfkey_exit(void)
......
...@@ -1770,6 +1770,7 @@ static struct pernet_operations pppol2tp_net_ops = { ...@@ -1770,6 +1770,7 @@ static struct pernet_operations pppol2tp_net_ops = {
.init = pppol2tp_init_net, .init = pppol2tp_init_net,
.exit = pppol2tp_exit_net, .exit = pppol2tp_exit_net,
.id = &pppol2tp_net_id, .id = &pppol2tp_net_id,
.async = true,
}; };
/***************************************************************************** /*****************************************************************************
......
...@@ -342,6 +342,7 @@ static struct pernet_operations phonet_net_ops = { ...@@ -342,6 +342,7 @@ static struct pernet_operations phonet_net_ops = {
.exit = phonet_exit_net, .exit = phonet_exit_net,
.id = &phonet_net_id, .id = &phonet_net_id,
.size = sizeof(struct phonet_net), .size = sizeof(struct phonet_net),
.async = true,
}; };
/* Initialize Phonet devices list */ /* Initialize Phonet devices list */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment