aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/bonding
diff options
context:
space:
mode:
authorKirill Tkhai <ktkhai@virtuozzo.com>2018-02-26 16:00:40 +0300
committerDavid S. Miller <davem@davemloft.net>2018-02-27 11:01:36 -0500
commit6963ad69cee28d3b2011ee9ff7d4f0abe20e52b9 (patch)
tree9ba29252d583ab402b3357b715460b8560158014 /drivers/net/bonding
parentnet: Convert tc_action_net_init() and tc_action_net_exit() based pernet_operations (diff)
downloadlinux-dev-6963ad69cee28d3b2011ee9ff7d4f0abe20e52b9.tar.xz
linux-dev-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.c1
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)