patches for DPDK stable branches
 help / color / mirror / Atom feed
From: "Xueming(Steven) Li" <xuemingl@nvidia.com>
To: Kalesh A P <kalesh-anakkur.purayil@broadcom.com>,
	"stable@dpdk.org" <stable@dpdk.org>
Subject: Re: [dpdk-stable] [PATCH 20.11] net/bnxt: fix ring count calculation for Thor
Date: Mon, 31 May 2021 11:34:37 +0000	[thread overview]
Message-ID: <DM4PR12MB5373ECBE77101B53BA9E9481A13F9@DM4PR12MB5373.namprd12.prod.outlook.com> (raw)
In-Reply-To: <20210527050547.24172-1-kalesh-anakkur.purayil@broadcom.com>

Thanks, applied to 20.11 work queue.

> -----Original Message-----
> From: stable <stable-bounces@dpdk.org> On Behalf Of Kalesh A P
> Sent: Thursday, May 27, 2021 1:06 PM
> To: stable@dpdk.org
> Subject: [dpdk-stable] [PATCH 20.11] net/bnxt: fix ring count calculation for Thor
> 
> From: Kalesh AP <kalesh-anakkur.purayil@broadcom.com>
> 
> [ upstream commit a49844ffa39df02bbcb8353436ae10b830bfed73 ]
> 
> For Thor devices, RSS table can only accommodate 512 Rx queues.
> Cap the max Rx rings to 512.
> 
> Fixes: d819382543f3 ("net/bnxt: add RSS redirection table operations")
> 
> Signed-off-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
> Signed-off-by: Kalesh AP <kalesh-anakkur.purayil@broadcom.com>
> Reviewed-by: Lance Richardson <lance.richardson@broadcom.com>
> ---
>  drivers/net/bnxt/bnxt.h        | 6 ++++++
>  drivers/net/bnxt/bnxt_ethdev.c | 7 ++++---
>  2 files changed, 10 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/net/bnxt/bnxt.h b/drivers/net/bnxt/bnxt.h index b912fd8..555ff04 100644
> --- a/drivers/net/bnxt/bnxt.h
> +++ b/drivers/net/bnxt/bnxt.h
> @@ -831,6 +831,12 @@ inline uint16_t bnxt_max_rings(struct bnxt *bp)
>  				       bp->max_stat_ctx / 2U);
>  	}
> 
> +	/* RSS table size in Thor is 512.
> +	 * Cap max Rx rings to the same value for RSS.
> +	 */
> +	if (BNXT_CHIP_THOR(bp))
> +		max_rx_rings = RTE_MIN(max_rx_rings, BNXT_RSS_TBL_SIZE_THOR);
> +
>  	max_tx_rings = RTE_MIN(max_tx_rings, max_rx_rings);
>  	if (max_cp_rings > BNXT_NUM_ASYNC_CPR(bp))
>  		max_cp_rings -= BNXT_NUM_ASYNC_CPR(bp); diff --git a/drivers/net/bnxt/bnxt_ethdev.c
> b/drivers/net/bnxt/bnxt_ethdev.c index 3aa346d..78d9f15 100644
> --- a/drivers/net/bnxt/bnxt_ethdev.c
> +++ b/drivers/net/bnxt/bnxt_ethdev.c
> @@ -427,12 +427,13 @@ static int bnxt_setup_one_vnic(struct bnxt *bp, uint16_t vnic_id)
>  	if (dev_conf->rxmode.mq_mode & ETH_MQ_RX_RSS) {
>  		int j, nr_ctxs = bnxt_rss_ctxts(bp);
> 
> +		/* RSS table size in Thor is 512.
> +		 * Cap max Rx rings to same value
> +		 */
>  		if (bp->rx_nr_rings > BNXT_RSS_TBL_SIZE_THOR) {
>  			PMD_DRV_LOG(ERR, "RxQ cnt %d > reta_size %d\n",
>  				    bp->rx_nr_rings, BNXT_RSS_TBL_SIZE_THOR);
> -			PMD_DRV_LOG(ERR,
> -				    "Only queues 0-%d will be in RSS table\n",
> -				    BNXT_RSS_TBL_SIZE_THOR - 1);
> +			goto err_out;
>  		}
> 
>  		rc = 0;
> --
> 2.10.1


      reply	other threads:[~2021-05-31 11:34 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-27  5:05 Kalesh A P
2021-05-31 11:34 ` Xueming(Steven) Li [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=DM4PR12MB5373ECBE77101B53BA9E9481A13F9@DM4PR12MB5373.namprd12.prod.outlook.com \
    --to=xuemingl@nvidia.com \
    --cc=kalesh-anakkur.purayil@broadcom.com \
    --cc=stable@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).