Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4493b81b authored by Mahesh Bandewar's avatar Mahesh Bandewar Committed by David S. Miller
Browse files

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: default avatarMahesh Bandewar <maheshb@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d5e73f7b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);