From: Kirill Tkhai Date: Mon, 26 Feb 2018 13:00:40 +0000 (+0300) Subject: net: Convert bond_net_ops X-Git-Tag: v4.17-rc1~148^2~354^2~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6963ad69cee28d3b2011ee9ff7d4f0abe20e52b9;p=thirdparty%2Flinux.git 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 Signed-off-by: David S. Miller --- diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index c669554d70bb7..4c19d23dd2821 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)