Hi, rte_event_dev_start() requires that all queues have to be linked, which makes writing applications which link/unlink queues at runtime cumbersome. E.g. the application has to dummy link all queues before rte_event_dev_start() and then unlink them after the function call. This alone wouldn't be a big issue but rte_event_dev_start() may also be called inside rte_event_eth_rx_adapter_create() implementation causing additional complexity.
To me this check seems more like eventdev implementation specific limitation, which should be solved by the particular implementation and not enforced by the API to all applications. From an application point of view enqueueing events to an unlinked queue and expecting something meaningful to happen is an error anyway. So, would it be conceivable to remove this particular requirement? -Matias