| Submitter | Ben Hutchings |
|---|---|
| Date | Sept. 27, 2010, 6:30 p.m. |
| Message ID | <1285612205.2263.310.camel@achroite.uk.solarflarecom.com> |
| Download | mbox | patch |
| Permalink | /patch/65901/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
On Mon, Sep 27, 2010 at 07:30:05PM +0100, Ben Hutchings wrote: > Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Acked-by: Lennert Buytenhek <buytenh@wantstofly.org> -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/drivers/net/mv643xx_eth.c b/drivers/net/mv643xx_eth.c index 2d488ab..dd2b6a7 100644 --- a/drivers/net/mv643xx_eth.c +++ b/drivers/net/mv643xx_eth.c @@ -2901,7 +2901,8 @@ static int mv643xx_eth_probe(struct platform_device *pdev) mp->dev = dev; set_params(mp, pd); - dev->real_num_tx_queues = mp->txq_count; + netif_set_real_num_tx_queues(dev, mp->txq_count); + netif_set_real_num_rx_queues(dev, mp->rxq_count); if (pd->phy_addr != MV643XX_ETH_PHY_NONE) mp->phy = phy_scan(mp, pd->phy_addr);
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> --- drivers/net/mv643xx_eth.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)