DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jerin Jacob <jerinj@marvell.com>
To: "Pathak, Pravin" <pravin.pathak@intel.com>,
	"Richardson, Bruce" <bruce.richardson@intel.com>,
	"dev@dpdk.org" <dev@dpdk.org>
Cc: "stable@dpdk.org" <stable@dpdk.org>
Subject: RE: [PATCH] event/dlb2: fix event weight handling in SSE code path
Date: Tue, 18 Feb 2025 08:47:22 +0000	[thread overview]
Message-ID: <BY3PR18MB4785035471DD73CA8089D04BC8FA2@BY3PR18MB4785.namprd18.prod.outlook.com> (raw)
In-Reply-To: <BL1PR11MB5461221901E20DCF1892CBBFF4F62@BL1PR11MB5461.namprd11.prod.outlook.com>



> -----Original Message-----
> From: Pathak, Pravin <pravin.pathak@intel.com>
> Sent: Thursday, February 6, 2025 8:20 PM
> To: Richardson, Bruce <bruce.richardson@intel.com>; dev@dpdk.org
> Cc: stable@dpdk.org
> Subject: [EXTERNAL] RE: [PATCH] event/dlb2: fix event weight handling in SSE
> code path
> 
> Reviewed-by: Pravin Pathak <pravin. pathak@ intel. com> > -----Original
> Message----- > From: Richardson, Bruce <bruce. richardson@ intel. com> > Sent:
> Tuesday, January 21, 2025 12: 12 PM > To: dev@ dpdk. org > Cc: Pathak, Pravin

> Reviewed-by: Pravin Pathak <pravin.pathak@intel.com>



Applied to dpdk-next-eventdev/for-main. Thanks

> 
> > -----Original Message-----
> > From: Richardson, Bruce <bruce.richardson@intel.com>
> > Sent: Tuesday, January 21, 2025 12:12 PM
> > To: dev@dpdk.org
> > Cc: Pathak, Pravin <pravin.pathak@intel.com>; Richardson, Bruce
> > <bruce.richardson@intel.com>; stable@dpdk.org
> > Subject: [PATCH] event/dlb2: fix event weight handling in SSE code
> > path
> >
> > Commit 6e2e98d6775b ("event/dlb2: support independent enqueue")
> > updated the avx512 code path with support for the event, or "qe" weights.
> > However, the SSE code path looks to have been missed in the update.
> > Update the SSE "build_hcws" function to match the changes made to the
> > AVX-512 version.
> >
> > Bugzilla ID: 1616
> > Fixes: 6e2e98d6775b ("event/dlb2: support independent enqueue")
> > Cc: stable@dpdk.org
> >
> > Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> > ---
> >  drivers/event/dlb2/dlb2_sse.c | 11 ++++++-----
> >  1 file changed, 6 insertions(+), 5 deletions(-)
> >
> > diff --git a/drivers/event/dlb2/dlb2_sse.c
> > b/drivers/event/dlb2/dlb2_sse.c index 248d7519d5..f2e1f9fb7e 100644
> > --- a/drivers/event/dlb2/dlb2_sse.c
> > +++ b/drivers/event/dlb2/dlb2_sse.c
> > @@ -190,11 +190,11 @@ dlb2_event_build_hcws(struct dlb2_port
> *qm_port,
> >  		qe[3].data = ev[3].u64;
> >
> >  		/* will only be set for DLB 2.5 + */
> > -		if (qm_port->cq_weight) {
> > -			qe[0].weight = ev[0].impl_opaque & 3;
> > -			qe[1].weight = ev[1].impl_opaque & 3;
> > -			qe[2].weight = ev[2].impl_opaque & 3;
> > -			qe[3].weight = ev[3].impl_opaque & 3;
> > +		if (qm_port->dlb2->enable_cq_weight) {
> > +			qe[0].weight =
> > RTE_PMD_DLB2_GET_QE_WEIGHT(&ev[0]);
> > +			qe[1].weight =
> > RTE_PMD_DLB2_GET_QE_WEIGHT(&ev[1]);
> > +			qe[2].weight =
> > RTE_PMD_DLB2_GET_QE_WEIGHT(&ev[2]);
> > +			qe[3].weight =
> > RTE_PMD_DLB2_GET_QE_WEIGHT(&ev[3]);
> >  		}
> >
> >  		break;
> > @@ -205,6 +205,7 @@ dlb2_event_build_hcws(struct dlb2_port *qm_port,
> >  			qe[i].cmd_byte =
> >  				cmd_byte_map[qm_port-
> > >is_directed][ev[i].op];
> >  			qe[i].sched_type = sched_type[i];
> > +			qe[i].weight =
> > RTE_PMD_DLB2_GET_QE_WEIGHT(&ev[i]);
> >  			qe[i].data = ev[i].u64;
> >  			qe[i].qid = queue_id[i];
> >  			qe[i].priority = EV_TO_DLB2_PRIO(ev[i].priority);
> > --
> > 2.43.0


      reply	other threads:[~2025-02-18  8:47 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-21 17:11 Bruce Richardson
2025-02-04 14:48 ` [EXTERNAL] " Jerin Jacob
2025-02-06 14:49 ` Pathak, Pravin
2025-02-18  8:47   ` Jerin Jacob [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=BY3PR18MB4785035471DD73CA8089D04BC8FA2@BY3PR18MB4785.namprd18.prod.outlook.com \
    --to=jerinj@marvell.com \
    --cc=bruce.richardson@intel.com \
    --cc=dev@dpdk.org \
    --cc=pravin.pathak@intel.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).