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

2022-05-09 Thread Jerin Jacob
On Tue, Apr 5, 2022 at 11:12 AM 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_EVE

[PATCH v2 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: Shijith Thotton --