From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id EC10E1B10D for ; Wed, 21 Nov 2018 17:49:44 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 49D488E5A8; Wed, 21 Nov 2018 16:49:44 +0000 (UTC) Received: from ktraynor.remote.csb (unknown [10.36.118.7]) by smtp.corp.redhat.com (Postfix) with ESMTP id 4035C5C21E; Wed, 21 Nov 2018 16:49:43 +0000 (UTC) From: Kevin Traynor To: Pavan Nikhilesh Cc: Jerin Jacob , dpdk stable Date: Wed, 21 Nov 2018 16:47:23 +0000 Message-Id: <20181121164828.32249-9-ktraynor@redhat.com> In-Reply-To: <20181121164828.32249-1-ktraynor@redhat.com> References: <20181121164828.32249-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Wed, 21 Nov 2018 16:49:44 +0000 (UTC) Subject: [dpdk-stable] patch 'app/eventdev: fix minor typos' has been queued to stable release 18.08.1 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Nov 2018 16:49:45 -0000 Hi, FYI, your patch has been queued to stable release 18.08.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 11/27/18. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. If the code is different (ie: not only metadata diffs), due for example to a change in context or macro names, please double check it. Thanks. Kevin Traynor --- >>From f025ea074acafd1e0b7c9228c3ee7031d3e86f1b Mon Sep 17 00:00:00 2001 From: Pavan Nikhilesh Date: Mon, 24 Sep 2018 13:32:17 +0530 Subject: [PATCH] app/eventdev: fix minor typos [ upstream commit f26320a6ca2b5aa76154b1e15ad81206ed240464 ] Fix minor typos. Fixes: 314bcf58ca8f ("app/eventdev: add pipeline queue worker functions") Signed-off-by: Pavan Nikhilesh Acked-by: Jerin Jacob --- app/test-eventdev/test_pipeline_atq.c | 16 ++++++++-------- app/test-eventdev/test_pipeline_common.h | 8 ++++---- app/test-eventdev/test_pipeline_queue.c | 16 ++++++++-------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/app/test-eventdev/test_pipeline_atq.c b/app/test-eventdev/test_pipeline_atq.c index 26dc79f90..f0b2f9015 100644 --- a/app/test-eventdev/test_pipeline_atq.c +++ b/app/test-eventdev/test_pipeline_atq.c @@ -19,5 +19,5 @@ static int pipeline_atq_worker_single_stage_tx(void *arg) { - PIPELINE_WROKER_SINGLE_STAGE_INIT; + PIPELINE_WORKER_SINGLE_STAGE_INIT; while (t->done == false) { @@ -44,5 +44,5 @@ static int pipeline_atq_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; @@ -67,5 +67,5 @@ static int pipeline_atq_worker_single_stage_burst_tx(void *arg) { - PIPELINE_WROKER_SINGLE_STAGE_BURST_INIT; + PIPELINE_WORKER_SINGLE_STAGE_BURST_INIT; while (t->done == false) { @@ -99,5 +99,5 @@ static int pipeline_atq_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; @@ -127,5 +127,5 @@ static int pipeline_atq_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; @@ -162,5 +162,5 @@ static int pipeline_atq_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; const uint8_t tx_queue = t->tx_service.queue_id; @@ -193,5 +193,5 @@ static int pipeline_atq_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; @@ -235,5 +235,5 @@ static int pipeline_atq_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; const uint8_t tx_queue = t->tx_service.queue_id; diff --git a/app/test-eventdev/test_pipeline_common.h b/app/test-eventdev/test_pipeline_common.h index 5fb91607d..9cd6b905b 100644 --- a/app/test-eventdev/test_pipeline_common.h +++ b/app/test-eventdev/test_pipeline_common.h @@ -66,5 +66,5 @@ struct test_pipeline { #define BURST_SIZE 16 -#define PIPELINE_WROKER_SINGLE_STAGE_INIT \ +#define PIPELINE_WORKER_SINGLE_STAGE_INIT \ struct worker_data *w = arg; \ struct test_pipeline *t = w->t; \ @@ -73,5 +73,5 @@ struct test_pipeline { struct rte_event ev -#define PIPELINE_WROKER_SINGLE_STAGE_BURST_INIT \ +#define PIPELINE_WORKER_SINGLE_STAGE_BURST_INIT \ int i; \ struct worker_data *w = arg; \ @@ -81,5 +81,5 @@ struct test_pipeline { struct rte_event ev[BURST_SIZE + 1] -#define PIPELINE_WROKER_MULTI_STAGE_INIT \ +#define PIPELINE_WORKER_MULTI_STAGE_INIT \ struct worker_data *w = arg; \ struct test_pipeline *t = w->t; \ @@ -91,5 +91,5 @@ struct test_pipeline { struct rte_event ev -#define PIPELINE_WROKER_MULTI_STAGE_BURST_INIT \ +#define PIPELINE_WORKER_MULTI_STAGE_BURST_INIT \ int i; \ struct worker_data *w = arg; \ diff --git a/app/test-eventdev/test_pipeline_queue.c b/app/test-eventdev/test_pipeline_queue.c index ca5f4578e..2e0d93d99 100644 --- a/app/test-eventdev/test_pipeline_queue.c +++ b/app/test-eventdev/test_pipeline_queue.c @@ -19,5 +19,5 @@ static int pipeline_queue_worker_single_stage_tx(void *arg) { - PIPELINE_WROKER_SINGLE_STAGE_INIT; + PIPELINE_WORKER_SINGLE_STAGE_INIT; while (t->done == false) { @@ -45,5 +45,5 @@ 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; @@ -68,5 +68,5 @@ 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) { @@ -102,5 +102,5 @@ 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; @@ -131,5 +131,5 @@ 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; @@ -166,5 +166,5 @@ 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; @@ -197,5 +197,5 @@ 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; @@ -241,5 +241,5 @@ 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; -- 2.19.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-11-21 16:44:31.190174737 +0000 +++ 0009-app-eventdev-fix-minor-typos.patch 2018-11-21 16:44:30.000000000 +0000 @@ -1,12 +1,13 @@ -From f26320a6ca2b5aa76154b1e15ad81206ed240464 Mon Sep 17 00:00:00 2001 +From f025ea074acafd1e0b7c9228c3ee7031d3e86f1b Mon Sep 17 00:00:00 2001 From: Pavan Nikhilesh Date: Mon, 24 Sep 2018 13:32:17 +0530 Subject: [PATCH] app/eventdev: fix minor typos +[ upstream commit f26320a6ca2b5aa76154b1e15ad81206ed240464 ] + Fix minor typos. Fixes: 314bcf58ca8f ("app/eventdev: add pipeline queue worker functions") -Cc: stable@dpdk.org Signed-off-by: Pavan Nikhilesh Acked-by: Jerin Jacob