test/eventdev: use CPU event type
octeontx test application was using non RTE_EVENT_TYPE_CPU
event type to generate the event from CPU. Upon the introduction
of ethdev Rx adapter, RTE_EVENT_TYPE_ETHDEV has special
meaning. So avoid using non RTE_EVENT_TYPE_CPU event types
to inject events from CPU.
Fixes: d0d6549860
("net/octeontx: support event Rx adapter")
Cc: stable@dpdk.org
Signed-off-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>
Reviewed-by: Pavan Nikhilesh <pbhagavatula@caviumnetworks.com>
This commit is contained in:
parent
c75f7897ea
commit
8f87757ab0
@ -327,7 +327,7 @@ generate_random_events(const unsigned int total_events)
|
|||||||
for (i = 0; i < total_events; i++) {
|
for (i = 0; i < total_events; i++) {
|
||||||
ret = inject_events(
|
ret = inject_events(
|
||||||
rte_rand() % info.max_event_queue_flows /*flow_id */,
|
rte_rand() % info.max_event_queue_flows /*flow_id */,
|
||||||
rte_rand() % (RTE_EVENT_TYPE_CPU + 1) /* event_type */,
|
RTE_EVENT_TYPE_CPU /* event_type */,
|
||||||
rte_rand() % 256 /* sub_event_type */,
|
rte_rand() % 256 /* sub_event_type */,
|
||||||
rte_rand() % (RTE_SCHED_TYPE_PARALLEL + 1),
|
rte_rand() % (RTE_SCHED_TYPE_PARALLEL + 1),
|
||||||
rte_rand() % queue_count /* queue */,
|
rte_rand() % queue_count /* queue */,
|
||||||
@ -717,7 +717,7 @@ test_queue_to_port_single_link(void)
|
|||||||
|
|
||||||
ret = inject_events(
|
ret = inject_events(
|
||||||
0x100 /*flow_id */,
|
0x100 /*flow_id */,
|
||||||
rte_rand() % (RTE_EVENT_TYPE_CPU + 1) /* event_type */,
|
RTE_EVENT_TYPE_CPU /* event_type */,
|
||||||
rte_rand() % 256 /* sub_event_type */,
|
rte_rand() % 256 /* sub_event_type */,
|
||||||
rte_rand() % (RTE_SCHED_TYPE_PARALLEL + 1),
|
rte_rand() % (RTE_SCHED_TYPE_PARALLEL + 1),
|
||||||
queue /* queue */,
|
queue /* queue */,
|
||||||
@ -796,7 +796,7 @@ test_queue_to_port_multi_link(void)
|
|||||||
|
|
||||||
ret = inject_events(
|
ret = inject_events(
|
||||||
0x100 /*flow_id */,
|
0x100 /*flow_id */,
|
||||||
rte_rand() % (RTE_EVENT_TYPE_CPU + 1) /* event_type */,
|
RTE_EVENT_TYPE_CPU /* event_type */,
|
||||||
rte_rand() % 256 /* sub_event_type */,
|
rte_rand() % 256 /* sub_event_type */,
|
||||||
rte_rand() % (RTE_SCHED_TYPE_PARALLEL + 1),
|
rte_rand() % (RTE_SCHED_TYPE_PARALLEL + 1),
|
||||||
queue /* queue */,
|
queue /* queue */,
|
||||||
|
Loading…
Reference in New Issue
Block a user