aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/bonding
diff options
context:
space:
mode:
authorMahesh Bandewar <maheshb@google.com>2017-03-08 10:55:54 -0800
committerDavid S. Miller <davem@davemloft.net>2017-03-09 17:33:29 -0800
commit4493b81bea24269df898339dee638d7c5cb2b2df (patch)
tree42e6fcac22f6c543c117539ed17d0d063aabb77f /drivers/net/bonding
parentbonding: restructure arp-monitor (diff)
downloadlinux-dev-4493b81bea24269df898339dee638d7c5cb2b2df.tar.xz
linux-dev-4493b81bea24269df898339dee638d7c5cb2b2df.zip
bonding: initialize work-queues during creation of bond
Initializing work-queues every time ifup operation performed is unnecessary and can be performed only once when the port is created. Signed-off-by: Mahesh Bandewar <maheshb@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding')
-rw-r--r--drivers/net/bonding/bond_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
index 619f0c65f18a..1329110ed85f 100644
--- a/drivers/net/bonding/bond_main.c
+++ b/drivers/net/bonding/bond_main.c
@@ -3270,8 +3270,6 @@ static int bond_open(struct net_device *bond_dev)
}
}
- bond_work_init_all(bond);
-
if (bond_is_lb(bond)) {
/* bond_alb_initialize must be called before the timer
* is started.
@@ -4691,6 +4689,8 @@ int bond_create(struct net *net, const char *name)
netif_carrier_off(bond_dev);
+ bond_work_init_all(bond);
+
rtnl_unlock();
if (res < 0)
bond_destructor(bond_dev);