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

Commit 003ab674 authored by Ben Hutchings's avatar Ben Hutchings Committed by David S. Miller
Browse files

cxgb4vf: Use netif_set_real_num_{rx, tx}_queues()

parent a020ed4b
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -748,7 +748,10 @@ static int cxgb4vf_open(struct net_device *dev)
	/*
	 * Note that this interface is up and start everything up ...
	 */
	dev->real_num_tx_queues = pi->nqsets;
	netif_set_real_num_tx_queues(dev, pi->nqsets);
	err = netif_set_real_num_rx_queues(dev, pi->nqsets);
	if (err)
		return err;
	set_bit(pi->port_id, &adapter->open_device_map);
	link_start(dev);
	netif_tx_start_all_queues(dev);