diff options
author | Kirill Tkhai <ktkhai@virtuozzo.com> | 2018-02-26 14:00:40 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-02-27 17:01:36 +0100 |
commit | 6963ad69cee28d3b2011ee9ff7d4f0abe20e52b9 (patch) | |
tree | 9ba29252d583ab402b3357b715460b8560158014 /drivers/net/bonding | |
parent | net: Convert tc_action_net_init() and tc_action_net_exit() based pernet_opera... (diff) | |
download | linux-6963ad69cee28d3b2011ee9ff7d4f0abe20e52b9.tar.xz linux-6963ad69cee28d3b2011ee9ff7d4f0abe20e52b9.zip |
net: Convert bond_net_ops
These pernet_operations populate/depopulate /proc and /sys
entries. Exit method unregisters all net bond devices, and
it seems another pernet_operations are not interested in
foreign net bond list. So, it's possible to mark them async.
Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding')
-rw-r--r-- | drivers/net/bonding/bond_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index c669554d70bb..4c19d23dd282 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c @@ -4791,6 +4791,7 @@ static struct pernet_operations bond_net_ops = { .exit = bond_net_exit, .id = &bond_net_id, .size = sizeof(struct bond_net), + .async = true, }; static int __init bonding_init(void) |