From: Rasesh Mody Date: Thu, 6 Oct 2016 05:36:36 +0000 (-0700) Subject: net/bnx2x: fix maximum PF queues X-Git-Tag: spdx-start~5554 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=6b90d52a259272eb2dd062be308ca71054e01952;p=dpdk.git net/bnx2x: fix maximum PF queues Fix the max number of PF rx/tx queues. Set the value based on BNX2X_MAX_RSS_COUNT() rather than hard coding it to 128. Fixes: 540a211084a7 ("bnx2x: driver core") Signed-off-by: Rasesh Mody Acked-by: Chas Williams <3chas3@gmail.com> --- diff --git a/drivers/net/bnx2x/bnx2x.c b/drivers/net/bnx2x/bnx2x.c index a49a07fbbc..2bb4a84068 100644 --- a/drivers/net/bnx2x/bnx2x.c +++ b/drivers/net/bnx2x/bnx2x.c @@ -9556,8 +9556,8 @@ static void bnx2x_init_rte(struct bnx2x_softc *sc) sc->max_rx_queues = min(BNX2X_VF_MAX_QUEUES_PER_VF, sc->igu_sb_cnt); } else { - sc->max_tx_queues = 128; - sc->max_rx_queues = 128; + sc->max_rx_queues = BNX2X_MAX_RSS_COUNT(sc); + sc->max_tx_queues = sc->max_rx_queues; } }