diff options
author | Kirill Tkhai <ktkhai@virtuozzo.com> | 2018-02-26 16:00:40 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-02-27 19:01:36 +0300 |
commit | 6963ad69cee28d3b2011ee9ff7d4f0abe20e52b9 (patch) | |
tree | 9ba29252d583ab402b3357b715460b8560158014 /drivers/net/bonding | |
parent | 685ecfb19888963f61c6085c17c254dbf665e9da (diff) | |
download | linux-6963ad69cee28d3b2011ee9ff7d4f0abe20e52b9.tar.xz |
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) |