DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] net/bnxt: fix check for on-chip resources
@ 2018-01-10 22:12 Ajit Khaparde
  2018-01-11 18:27 ` Ferruh Yigit
  0 siblings, 1 reply; 2+ messages in thread
From: Ajit Khaparde @ 2018-01-10 22:12 UTC (permalink / raw)
  To: dev; +Cc: ferruh.yigit

In some cases tx_nr_rings/rx_nr_rings may not be initialized.
In those scenarios, we may wrongly fail device initialization.
This patch fixes it. Use max_tx_rings/max_rx_rings instead.

Fixes: 2da0426e7cf8 ("net/bnxt: check on-chip resources")
Signed-off-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
---
 drivers/net/bnxt/bnxt_ethdev.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/bnxt/bnxt_ethdev.c b/drivers/net/bnxt/bnxt_ethdev.c
index 87a07bab9..36c01fa69 100644
--- a/drivers/net/bnxt/bnxt_ethdev.c
+++ b/drivers/net/bnxt/bnxt_ethdev.c
@@ -530,8 +530,8 @@ static int bnxt_dev_configure_op(struct rte_eth_dev *eth_dev)
 	bp->tx_queues = (void *)eth_dev->data->tx_queues;
 
 	/* Inherit new configurations */
-	if (eth_dev->data->nb_rx_queues > bp->rx_nr_rings ||
-	    eth_dev->data->nb_tx_queues > bp->tx_nr_rings ||
+	if (eth_dev->data->nb_rx_queues > bp->max_rx_rings ||
+	    eth_dev->data->nb_tx_queues > bp->max_tx_rings ||
 	    eth_dev->data->nb_rx_queues + eth_dev->data->nb_tx_queues + 1 >
 	    bp->max_cp_rings ||
 	    eth_dev->data->nb_rx_queues + eth_dev->data->nb_tx_queues >
@@ -545,7 +545,7 @@ static int bnxt_dev_configure_op(struct rte_eth_dev *eth_dev)
 			eth_dev->data->nb_rx_queues);
 		RTE_LOG(ERR, PMD,
 			"Res available: TxQ %d, RxQ %d, CQ %d Stat %d, Grp %d\n",
-			bp->tx_nr_rings, bp->rx_nr_rings, bp->max_cp_rings,
+			bp->max_tx_rings, bp->max_rx_rings, bp->max_cp_rings,
 			bp->max_stat_ctx, bp->max_ring_grps);
 		return -ENOSPC;
 	}
-- 
2.14.3 (Apple Git-98)

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [dpdk-dev] [PATCH] net/bnxt: fix check for on-chip resources
  2018-01-10 22:12 [dpdk-dev] [PATCH] net/bnxt: fix check for on-chip resources Ajit Khaparde
@ 2018-01-11 18:27 ` Ferruh Yigit
  0 siblings, 0 replies; 2+ messages in thread
From: Ferruh Yigit @ 2018-01-11 18:27 UTC (permalink / raw)
  To: Ajit Khaparde, dev

On 1/10/2018 10:12 PM, Ajit Khaparde wrote:
> In some cases tx_nr_rings/rx_nr_rings may not be initialized.
> In those scenarios, we may wrongly fail device initialization.
> This patch fixes it. Use max_tx_rings/max_rx_rings instead.
> 
> Fixes: 2da0426e7cf8 ("net/bnxt: check on-chip resources")
> Signed-off-by: Ajit Khaparde <ajit.khaparde@broadcom.com>

Squashed into relevant commit in next-net, thanks.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-01-11 18:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-10 22:12 [dpdk-dev] [PATCH] net/bnxt: fix check for on-chip resources Ajit Khaparde
2018-01-11 18:27 ` Ferruh Yigit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).