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

2022-05-19 Thread Ray Kinsella
Shijith Thotton writes: > 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.

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

2022-05-17 Thread Jerin Jacob
On Tue, May 17, 2022 at 2:25 PM Mattias Rönnblom wrote: > > On 2022-05-16 20:02, Jerin Jacob wrote: > > On Mon, May 16, 2022 at 11:09 PM Shijith Thotton > > wrote: > >> > >> Added a new eventdev API rte_event_queue_attr_set(), to set event queue > >> attributes at runtime from the values set dur

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

2022-05-17 Thread Mattias Rönnblom
On 2022-05-16 20:02, Jerin Jacob wrote: > On Mon, May 16, 2022 at 11:09 PM 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

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

2022-05-16 Thread Jerin Jacob
On Mon, May 16, 2022 at 11:09 PM 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_EV

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

2022-05-16 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 Ac