RE: [PATCH 1/6] eventdev: support to set queue attributes at runtime

2022-04-04 Thread Shijith Thotton
>> Added a new eventdev API rte_event_queue_attr_set(), to set event queue >> attributes at runtime from the values set during initialization using >> rte_event_queue_setup(). PMD's supporting this feature should expose the >> capability RTE_EVENT_DEV_CAP_RUNTIME_QUEUE_ATTR. >> >> Signed-off-by: Sh

RE: [PATCH 1/6] eventdev: support to set queue attributes at runtime

2022-04-04 Thread Van Haaren, Harry
> -Original Message- > From: Shijith Thotton > Sent: Monday, April 4, 2022 10:36 AM > To: Van Haaren, Harry ; dev@dpdk.org; Jerin Jacob > Kollanukkaran > Cc: Pavan Nikhilesh Bhagavatula ; Ray Kinsella > > Subject: RE: [PATCH 1/6] eventdev: support to set que

RE: [PATCH 1/6] eventdev: support to set queue attributes at runtime

2022-04-04 Thread Shijith Thotton
> > >> +/** >> + * Set an event queue attribute at runtime. >> + * >> + * @param dev >> + * Event device pointer >> + * @param queue_id >> + * Event queue index >> + * @param attr_id >> + * Event queue attribute id >> + * @param attr_value >> + * Event queue attribute value >> + * >> + * @r

Re: [PATCH 1/6] eventdev: support to set queue attributes at runtime

2022-03-30 Thread Mattias Rönnblom
On 2022-03-29 15:11, Shijith Thotton wrote: > Added a new eventdev API rte_event_queue_attr_set(), to set event queue > attributes at runtime from the values set during initialization using > rte_event_queue_setup(). PMD's supporting this feature should expose the > capability RTE_EVENT_DEV_CAP_RUN

RE: [PATCH 1/6] eventdev: support to set queue attributes at runtime

2022-03-30 Thread Van Haaren, Harry
> -Original Message- > From: Shijith Thotton > Sent: Tuesday, March 29, 2022 2:11 PM > To: dev@dpdk.org; jer...@marvell.com > Cc: Shijith Thotton ; pbhagavat...@marvell.com; Ray > Kinsella > Subject: [PATCH 1/6] eventdev: support to set queue attributes at runtime

[PATCH 1/6] eventdev: support to set queue attributes at runtime

2022-03-29 Thread Shijith Thotton
Added a new eventdev API rte_event_queue_attr_set(), to set event queue attributes at runtime from the values set during initialization using rte_event_queue_setup(). PMD's supporting this feature should expose the capability RTE_EVENT_DEV_CAP_RUNTIME_QUEUE_ATTR. Signed-off-by: Shijith Thotton --