event/dpaa: fix number of supported atomic flows
The number of atomic flows supported was not returned correctly for DPAA driver. This patch fixes the same. Fixes: b08dc6430abd ("event/dpaa: add queue config get/set") Cc: stable@dpdk.org Signed-off-by: Nipun Gupta <nipun.gupta@nxp.com> Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
This commit is contained in:
parent
b21302a107
commit
c37421a2d6
@ -471,6 +471,7 @@ dpaa_event_queue_def_conf(struct rte_eventdev *dev, uint8_t queue_id,
|
||||
RTE_SET_USED(queue_id);
|
||||
|
||||
memset(queue_conf, 0, sizeof(struct rte_event_queue_conf));
|
||||
queue_conf->nb_atomic_flows = DPAA_EVENT_QUEUE_ATOMIC_FLOWS;
|
||||
queue_conf->schedule_type = RTE_SCHED_TYPE_PARALLEL;
|
||||
queue_conf->priority = RTE_EVENT_DEV_PRIORITY_HIGHEST;
|
||||
}
|
||||
|
@ -32,7 +32,7 @@ do { \
|
||||
RTE_EVENT_DEV_CAP_BURST_MODE; \
|
||||
} while (0)
|
||||
|
||||
#define DPAA_EVENT_QUEUE_ATOMIC_FLOWS 0
|
||||
#define DPAA_EVENT_QUEUE_ATOMIC_FLOWS 2048
|
||||
#define DPAA_EVENT_QUEUE_ORDER_SEQUENCES 2048
|
||||
|
||||
#define RTE_EVENT_ETH_RX_ADAPTER_DPAA_CAP \
|
||||
|
Loading…
x
Reference in New Issue
Block a user