From: Jerin Jacob <jerinj@marvell.com>
To: "pravin.pathak@intel.com" <pravin.pathak@intel.com>,
"dev@dpdk.org" <dev@dpdk.org>
Cc: "mike.ximing.chen@intel.com" <mike.ximing.chen@intel.com>,
"bruce.richardson@intel.com" <bruce.richardson@intel.com>,
"thomas@monjalon.net" <thomas@monjalon.net>,
"david.marchand@redhat.com" <david.marchand@redhat.com>,
"tirthendu.sarkar@intel.com" <tirthendu.sarkar@intel.com>
Subject: RE: [EXTERNAL] [PATCH v2] eventdev: add port attribute for independent enqueue
Date: Wed, 22 Jan 2025 12:27:03 +0000 [thread overview]
Message-ID: <BY3PR18MB47855C299DA9BB6636F22DFCC8E12@BY3PR18MB4785.namprd18.prod.outlook.com> (raw)
In-Reply-To: <20241216203313.31730-1-pravin.pathak@intel.com>
> -----Original Message-----
> From: pravin.pathak@intel.com <pravin.pathak@intel.com>
> Sent: Tuesday, December 17, 2024 2:03 AM
> To: dev@dpdk.org
> Cc: Jerin Jacob <jerinj@marvell.com>; mike.ximing.chen@intel.com;
> bruce.richardson@intel.com; thomas@monjalon.net;
> david.marchand@redhat.com; tirthendu.sarkar@intel.com;
> pravin.pathak@intel.com
> Subject: [EXTERNAL] [PATCH v2] eventdev: add port attribute for independent
> enqueue
>
> From: Pravin Pathak <pravin. pathak@ intel. com> Independent Enqueue
> support is added to DPDK 24. 11. Adding support for
> RTE_EVENT_PORT_ATTR_INDEPENDENT_ENQ attribute to
> rte_event_port_attr_get() which was missing Signed-off-by: Pravin Pathak
>
> From: Pravin Pathak <pravin.pathak@intel.com>
>
> Independent Enqueue support is added to DPDK 24.11.
> Adding support for RTE_EVENT_PORT_ATTR_INDEPENDENT_ENQ attribute to
> rte_event_port_attr_get() which was missing
>
> Signed-off-by: Pravin Pathak <pravin.pathak@intel.com>
Applied to dpdk-next-net-eventdev/for-main. Thanks
> ---
> lib/eventdev/rte_eventdev.c | 8 ++++++++ lib/eventdev/rte_eventdev.h | 4
> ++++
> 2 files changed, 12 insertions(+)
>
> diff --git a/lib/eventdev/rte_eventdev.c b/lib/eventdev/rte_eventdev.c index
> ca295c87c4..61cff87b63 100644
> --- a/lib/eventdev/rte_eventdev.c
> +++ b/lib/eventdev/rte_eventdev.c
> @@ -880,6 +880,14 @@ rte_event_port_attr_get(uint8_t dev_id, uint8_t
> port_id, uint32_t attr_id,
> *attr_value = !!(config &
> RTE_EVENT_PORT_CFG_DISABLE_IMPL_REL);
> break;
> }
> + case RTE_EVENT_PORT_ATTR_INDEPENDENT_ENQ:
> + {
> + uint32_t config;
> +
> + config = dev->data->ports_cfg[port_id].event_port_cfg;
> + *attr_value = !!(config &
> RTE_EVENT_PORT_CFG_INDEPENDENT_ENQ);
> + break;
> + }
> default:
> return -EINVAL;
> };
> diff --git a/lib/eventdev/rte_eventdev.h b/lib/eventdev/rte_eventdev.h index
> fabd1490db..6400d6109f 100644
> --- a/lib/eventdev/rte_eventdev.h
> +++ b/lib/eventdev/rte_eventdev.h
> @@ -1318,6 +1318,10 @@ rte_event_port_quiesce(uint8_t dev_id, uint8_t
> port_id,
> * Port attribute id for the implicit release disable attribute of the port.
> */
> #define RTE_EVENT_PORT_ATTR_IMPLICIT_RELEASE_DISABLE 3
> +/**
> + * Port attribute id for the Independent Enqueue feature.
> + */
> +#define RTE_EVENT_PORT_ATTR_INDEPENDENT_ENQ 4
>
> /**
> * Get an attribute from a port.
> --
> 2.26.2
prev parent reply other threads:[~2025-01-22 12:27 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-13 4:33 [PATCH v1] event/dlb2: " pravin.pathak
2024-12-13 6:46 ` Mattias Rönnblom
2024-12-13 7:19 ` Thomas Monjalon
2024-12-16 20:33 ` [PATCH v2] eventdev: " pravin.pathak
2025-01-22 12:27 ` 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=BY3PR18MB47855C299DA9BB6636F22DFCC8E12@BY3PR18MB4785.namprd18.prod.outlook.com \
--to=jerinj@marvell.com \
--cc=bruce.richardson@intel.com \
--cc=david.marchand@redhat.com \
--cc=dev@dpdk.org \
--cc=mike.ximing.chen@intel.com \
--cc=pravin.pathak@intel.com \
--cc=thomas@monjalon.net \
--cc=tirthendu.sarkar@intel.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).