aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/niu.c
diff options
context:
space:
mode:
authorBen Hutchings <bhutchings@solarflare.com>2010-09-27 08:30:59 +0000
committerDavid S. Miller <davem@davemloft.net>2010-09-27 22:09:56 -0700
commite2209ba35aa7050fced05bf9c4244562fcaebd63 (patch)
treef04722458eef6401ee77cffeeb23f5d0196d98bd /drivers/net/niu.c
parentmyri10ge: Use netif_set_real_num_{rx, tx}_queues() (diff)
downloadlinux-dev-e2209ba35aa7050fced05bf9c4244562fcaebd63.tar.xz
linux-dev-e2209ba35aa7050fced05bf9c4244562fcaebd63.zip
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>
Diffstat (limited to 'drivers/net/niu.c')
-rw-r--r--drivers/net/niu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/niu.c b/drivers/net/niu.c
index 4cd92421708d..c0437fd8d3f2 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);