[PATCH v5 5/6] bus/dpaa: Set max push RXQ number

Gagandeep Singh G.Singh at nxp.com
Fri Oct 24 07:37:51 CEST 2025


Hi

> -----Original Message-----
> From: Stephen Hemminger <stephen at networkplumber.org>
> Sent: Saturday, October 18, 2025 7:23 AM
> To: Gagandeep Singh <G.Singh at nxp.com>
> Cc: dev at dpdk.org; Hemant Agrawal <hemant.agrawal at nxp.com>; Sachin Saxena
> <sachin.saxena at nxp.com>; Jun Yang <jun.yang at nxp.com>
> Subject: Re: [PATCH v5 5/6] bus/dpaa: Set max push RXQ number
> 
> On Fri, 17 Oct 2025 10:18:47 +0530
> Gagandeep Singh <g.singh at nxp.com> wrote:
> 
> >
> > +	/* Disabling the default push mode for LS1043A */
> > +	if (rte_dpaa_bus.svr_ver == SVR_LS1043A_FAMILY) {
> > +		rte_dpaa_bus.max_push_rxq_num = 0;
> > +		return 0;
> > +	}
> > +
> > +	penv = getenv("DPAA_PUSH_QUEUES_NUMBER");
> > +	if (penv)
> > +		rte_dpaa_bus.max_push_rxq_num = atoi(penv);
> > +	if (rte_dpaa_bus.max_push_rxq_num >
> DPAA_MAX_PUSH_MODE_QUEUE)
> > +		rte_dpaa_bus.max_push_rxq_num =
> DPAA_MAX_PUSH_MODE_QUEUE;
> 
> Please don't use environment variables for configuration.
> We have devargs for that.

We have not introduced any new environment variable, It is just moved to another place.


More information about the dev mailing list