From: Ben Hutchings <bhutchings@solarflare.com>
Date: Mon, 27 Sep 2010 08:30:59 +0000 (+0000)
Subject: niu: Use netif_set_real_num_{rx,tx}_queues()
X-Git-Tag: v2.6.37-rc1~147^2~327
X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=e2209ba35aa7050fced05bf9c4244562fcaebd63;p=users%2Fdwmw2%2Flinux.git

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

Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
---

diff --git a/drivers/net/niu.c b/drivers/net/niu.c
index 4cd92421708dc..c0437fd8d3f29 100644
--- a/drivers/net/niu.c
+++ b/drivers/net/niu.c
@@ -4501,7 +4501,8 @@ static int niu_alloc_channels(struct niu *np)
 	np->num_rx_rings = parent->rxchan_per_port[port];
 	np->num_tx_rings = parent->txchan_per_port[port];
 
-	np->dev->real_num_tx_queues = np->num_tx_rings;
+	netif_set_real_num_rx_queues(np->dev, np->num_rx_rings);
+	netif_set_real_num_tx_queues(np->dev, np->num_tx_rings);
 
 	np->rx_rings = kcalloc(np->num_rx_rings, sizeof(struct rx_ring_info),
 			       GFP_KERNEL);