DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jerin Jacob <jerinj@marvell.com>
To: "Naga Harish K, S V" <s.v.naga.harish.k@intel.com>,
	Shijith Thotton <sthotton@marvell.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>,
	Pavan Nikhilesh Bhagavatula <pbhagavatula@marvell.com>,
	"Pathak, Pravin" <pravin.pathak@intel.com>,
	Hemant Agrawal <hemant.agrawal@nxp.com>,
	Sachin Saxena <sachin.saxena@nxp.com>,
	Mattias R_nnblom <mattias.ronnblom@ericsson.com>,
	Liang Ma <liangma@liangbit.com>,
	"Mccarthy, Peter" <peter.mccarthy@intel.com>,
	"Van Haaren, Harry" <harry.van.haaren@intel.com>,
	"Carrillo, Erik G" <erik.g.carrillo@intel.com>,
	"Gujjar, Abhinandan S" <abhinandan.gujjar@intel.com>,
	Amit Prakash Shukla <amitprakashs@marvell.com>,
	"Burakov, Anatoly" <anatoly.burakov@intel.com>
Subject: RE: [PATCH v3 1/3] eventdev/eth_rx: add API to burst add queues to Rx adapter
Date: Sun, 2 Mar 2025 12:07:43 +0000	[thread overview]
Message-ID: <BY3PR18MB4785CF80BF9F693CEC42B807C8CE2@BY3PR18MB4785.namprd18.prod.outlook.com> (raw)
In-Reply-To: <SN7PR11MB704428213D9E051B0E2FD70BA1CF2@SN7PR11MB7044.namprd11.prod.outlook.com>



> -----Original Message-----
> From: Naga Harish K, S V <s.v.naga.harish.k@intel.com>
> Sent: Saturday, March 1, 2025 2:59 PM
> To: Shijith Thotton <sthotton@marvell.com>; Jerin Jacob <jerinj@marvell.com>
> Cc: dev@dpdk.org; Pavan Nikhilesh Bhagavatula <pbhagavatula@marvell.com>;
> Pathak, Pravin <pravin.pathak@intel.com>; Hemant Agrawal
> <hemant.agrawal@nxp.com>; Sachin Saxena <sachin.saxena@nxp.com>;
> Mattias R_nnblom <mattias.ronnblom@ericsson.com>; Liang Ma
> <liangma@liangbit.com>; Mccarthy, Peter <peter.mccarthy@intel.com>; Van
> Haaren, Harry <harry.van.haaren@intel.com>; Carrillo, Erik G
> <erik.g.carrillo@intel.com>; Gujjar, Abhinandan S
> <abhinandan.gujjar@intel.com>; Amit Prakash Shukla
> <amitprakashs@marvell.com>; Burakov, Anatoly <anatoly.burakov@intel.com>
> Subject: [EXTERNAL] RE: [PATCH v3 1/3] eventdev/eth_rx: add API to burst add
> queues to Rx adapter
> 
> > -----Original Message----- > From: Shijith Thotton <sthotton@ marvell. 
> > com> > Sent: Monday, February 24, 2025 2: 12 PM > To: Naga Harish K, S
> > V <s. v. naga. harish. k@ intel. com>; jerinj@ marvell. com > Cc:
> > Shijith Thotton
> 
> 
> 
> > -----Original Message-----
> > From: Shijith Thotton <sthotton@marvell.com>
> > Sent: Monday, February 24, 2025 2:12 PM
> > To: Naga Harish K, S V <s.v.naga.harish.k@intel.com>;
> > jerinj@marvell.com
> > Cc: Shijith Thotton <sthotton@marvell.com>; dev@dpdk.org;
> > pbhagavatula@marvell.com; Pathak, Pravin <pravin.pathak@intel.com>;
> > Hemant Agrawal <hemant.agrawal@nxp.com>; Sachin Saxena
> > <sachin.saxena@nxp.com>; Mattias R_nnblom
> > <mattias.ronnblom@ericsson.com>; Liang Ma <liangma@liangbit.com>;
> > Mccarthy, Peter <peter.mccarthy@intel.com>; Van Haaren, Harry
> > <harry.van.haaren@intel.com>; Carrillo, Erik G
> > <erik.g.carrillo@intel.com>; Gujjar, Abhinandan S
> > <abhinandan.gujjar@intel.com>; Amit Prakash Shukla
> > <amitprakashs@marvell.com>; Burakov, Anatoly
> > <anatoly.burakov@intel.com>
> > Subject: [PATCH v3 1/3] eventdev/eth_rx: add API to burst add queues
> > to Rx adapter
> >
> >
> > This patch introduces a new API,
> > rte_event_eth_rx_adapter_queues_add(),
> > to allow bulk addition of multiple Rx queues in the eventdev Rx adapter.
> >
> > The existing rte_event_eth_rx_adapter_queue_add() API supports adding
> > multiple queues by specifying rx_queue_id = -1, but it lacks the
> > ability to apply specific configurations to each of the added queues.
> >
> > A new internal PMD operation, eventdev_eth_rx_adapter_queues_add_t,
> > has been introduced to enable this functionality. It takes an array of
> > receive queue IDs along with their corresponding queue configurations.
> >
> > Signed-off-by: Shijith Thotton <sthotton@marvell.com>
> Acked-by: Naga Harish K S V <s.v.naga.harish.k@intel.com>

Series applied to dpdk-next-net-eventdev/for-main. Thanks

  reply	other threads:[~2025-03-02 12:07 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-07 14:09 [PATCH 0/3] Rx adapter API to add Rx queues in burst Shijith Thotton
2025-02-07 14:09 ` [PATCH 1/3] eventdev/eth_rx: add API to burst add queues to Rx adapter Shijith Thotton
2025-02-17 16:15   ` Naga Harish K, S V
2025-02-18  4:52     ` Shijith Thotton
2025-02-07 14:09 ` [PATCH 2/3] event/cnxk: enable PMD op " Shijith Thotton
2025-02-07 14:09 ` [PATCH 3/3] test/event: unit test to burst add Rx queues to adapter Shijith Thotton
2025-02-17 16:17 ` [PATCH 0/3] Rx adapter API to add Rx queues in burst Naga Harish K, S V
2025-02-18  4:44   ` Shijith Thotton
2025-02-18  9:15 ` [PATCH v2 " Shijith Thotton
2025-02-24  8:42   ` [PATCH v3 " Shijith Thotton
2025-02-24  8:42     ` [PATCH v3 1/3] eventdev/eth_rx: add API to burst add queues to Rx adapter Shijith Thotton
2025-03-01  9:28       ` Naga Harish K, S V
2025-03-02 12:07         ` Jerin Jacob [this message]
2025-02-24  8:42     ` [PATCH v3 2/3] event/cnxk: enable PMD op " Shijith Thotton
2025-02-24  8:42     ` [PATCH v3 3/3] test/event: unit test to burst add Rx queues to adapter Shijith Thotton
2025-03-01  9:29       ` Naga Harish K, S V
2025-02-18  9:15 ` [PATCH v2 1/3] eventdev/eth_rx: add API to burst add queues to Rx adapter Shijith Thotton
2025-02-20  4:59   ` Naga Harish K, S V
2025-02-20  6:28     ` Shijith Thotton
2025-02-18  9:15 ` [PATCH v2 2/3] event/cnxk: enable PMD op " Shijith Thotton
2025-02-18  9:15 ` [PATCH v2 3/3] test/event: unit test to burst add Rx queues to adapter Shijith Thotton

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=BY3PR18MB4785CF80BF9F693CEC42B807C8CE2@BY3PR18MB4785.namprd18.prod.outlook.com \
    --to=jerinj@marvell.com \
    --cc=abhinandan.gujjar@intel.com \
    --cc=amitprakashs@marvell.com \
    --cc=anatoly.burakov@intel.com \
    --cc=dev@dpdk.org \
    --cc=erik.g.carrillo@intel.com \
    --cc=harry.van.haaren@intel.com \
    --cc=hemant.agrawal@nxp.com \
    --cc=liangma@liangbit.com \
    --cc=mattias.ronnblom@ericsson.com \
    --cc=pbhagavatula@marvell.com \
    --cc=peter.mccarthy@intel.com \
    --cc=pravin.pathak@intel.com \
    --cc=s.v.naga.harish.k@intel.com \
    --cc=sachin.saxena@nxp.com \
    --cc=sthotton@marvell.com \
    /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).