app/eventdev: fix minor typos
[dpdk.git] / app / test-eventdev / test_pipeline_queue.c
index ca5f457..2e0d93d 100644 (file)
@@ -18,7 +18,7 @@ pipeline_queue_nb_event_queues(struct evt_options *opt)
 static int
 pipeline_queue_worker_single_stage_tx(void *arg)
 {
-       PIPELINE_WROKER_SINGLE_STAGE_INIT;
+       PIPELINE_WORKER_SINGLE_STAGE_INIT;
 
        while (t->done == false) {
                uint16_t event = rte_event_dequeue_burst(dev, port, &ev, 1, 0);
@@ -44,7 +44,7 @@ pipeline_queue_worker_single_stage_tx(void *arg)
 static int
 pipeline_queue_worker_single_stage_fwd(void *arg)
 {
-       PIPELINE_WROKER_SINGLE_STAGE_INIT;
+       PIPELINE_WORKER_SINGLE_STAGE_INIT;
        const uint8_t tx_queue = t->tx_service.queue_id;
 
        while (t->done == false) {
@@ -67,7 +67,7 @@ pipeline_queue_worker_single_stage_fwd(void *arg)
 static int
 pipeline_queue_worker_single_stage_burst_tx(void *arg)
 {
-       PIPELINE_WROKER_SINGLE_STAGE_BURST_INIT;
+       PIPELINE_WORKER_SINGLE_STAGE_BURST_INIT;
 
        while (t->done == false) {
                uint16_t nb_rx = rte_event_dequeue_burst(dev, port, ev,
@@ -101,7 +101,7 @@ pipeline_queue_worker_single_stage_burst_tx(void *arg)
 static int
 pipeline_queue_worker_single_stage_burst_fwd(void *arg)
 {
-       PIPELINE_WROKER_SINGLE_STAGE_BURST_INIT;
+       PIPELINE_WORKER_SINGLE_STAGE_BURST_INIT;
        const uint8_t tx_queue = t->tx_service.queue_id;
 
        while (t->done == false) {
@@ -130,7 +130,7 @@ pipeline_queue_worker_single_stage_burst_fwd(void *arg)
 static int
 pipeline_queue_worker_multi_stage_tx(void *arg)
 {
-       PIPELINE_WROKER_MULTI_STAGE_INIT;
+       PIPELINE_WORKER_MULTI_STAGE_INIT;
        const uint8_t nb_stages = t->opt->nb_stages + 1;
 
        while (t->done == false) {
@@ -165,7 +165,7 @@ pipeline_queue_worker_multi_stage_tx(void *arg)
 static int
 pipeline_queue_worker_multi_stage_fwd(void *arg)
 {
-       PIPELINE_WROKER_MULTI_STAGE_INIT;
+       PIPELINE_WORKER_MULTI_STAGE_INIT;
        const uint8_t nb_stages = t->opt->nb_stages + 1;
        const uint8_t tx_queue = t->tx_service.queue_id;
 
@@ -196,7 +196,7 @@ pipeline_queue_worker_multi_stage_fwd(void *arg)
 static int
 pipeline_queue_worker_multi_stage_burst_tx(void *arg)
 {
-       PIPELINE_WROKER_MULTI_STAGE_BURST_INIT;
+       PIPELINE_WORKER_MULTI_STAGE_BURST_INIT;
        const uint8_t nb_stages = t->opt->nb_stages + 1;
 
        while (t->done == false) {
@@ -240,7 +240,7 @@ pipeline_queue_worker_multi_stage_burst_tx(void *arg)
 static int
 pipeline_queue_worker_multi_stage_burst_fwd(void *arg)
 {
-       PIPELINE_WROKER_MULTI_STAGE_BURST_INIT;
+       PIPELINE_WORKER_MULTI_STAGE_BURST_INIT;
        const uint8_t nb_stages = t->opt->nb_stages + 1;
        const uint8_t tx_queue = t->tx_service.queue_id;