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 141BC326C for ; Tue, 20 Nov 2018 20:16:11 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 708A44E90D; Tue, 20 Nov 2018 19:16:10 +0000 (UTC) Received: from ktraynor.remote.csb (unknown [10.36.118.7]) by smtp.corp.redhat.com (Postfix) with ESMTP id 65A90600C3; Tue, 20 Nov 2018 19:16:09 +0000 (UTC) From: Kevin Traynor To: Reshma Pattan Cc: Bernard Iremonger , dpdk stable Date: Tue, 20 Nov 2018 19:12:51 +0000 Message-Id: <20181120191252.30277-61-ktraynor@redhat.com> In-Reply-To: <20181120191252.30277-1-ktraynor@redhat.com> References: <20181120191252.30277-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Tue, 20 Nov 2018 19:16:10 +0000 (UTC) Subject: [dpdk-stable] patch 'app/testpmd: fix missing jump action in flow action' 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: Tue, 20 Nov 2018 19:16:11 -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/23/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 da59d21e2d87cf18f0e5a846be1c5f429a729b2a Mon Sep 17 00:00:00 2001 From: Reshma Pattan Date: Wed, 19 Sep 2018 15:01:05 +0100 Subject: [PATCH] app/testpmd: fix missing jump action in flow action [ upstream commit dcbbbd069217cef1c71601e0809e870df1545e47 ] Added missing JUMP flow action in flow_action array. Without this the flow rule cannot be created for JUMP action. Fixes: 938a184a18 ("app/testpmd: implement basic support for flow API") Signed-off-by: Reshma Pattan Acked-by: Bernard Iremonger --- app/test-pmd/config.c | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c index 14ccd6864..21d5e4ae4 100644 --- a/app/test-pmd/config.c +++ b/app/test-pmd/config.c @@ -1124,4 +1124,5 @@ static const struct { MK_FLOW_ACTION(VOID, 0), MK_FLOW_ACTION(PASSTHRU, 0), + MK_FLOW_ACTION(JUMP, 0), MK_FLOW_ACTION(MARK, sizeof(struct rte_flow_action_mark)), MK_FLOW_ACTION(FLAG, 0), -- 2.19.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-11-20 17:53:08.922176615 +0000 +++ 0061-app-testpmd-fix-missing-jump-action-in-flow-action.patch 2018-11-20 17:53:07.000000000 +0000 @@ -1,13 +1,14 @@ -From dcbbbd069217cef1c71601e0809e870df1545e47 Mon Sep 17 00:00:00 2001 +From da59d21e2d87cf18f0e5a846be1c5f429a729b2a Mon Sep 17 00:00:00 2001 From: Reshma Pattan Date: Wed, 19 Sep 2018 15:01:05 +0100 Subject: [PATCH] app/testpmd: fix missing jump action in flow action +[ upstream commit dcbbbd069217cef1c71601e0809e870df1545e47 ] + Added missing JUMP flow action in flow_action array. Without this the flow rule cannot be created for JUMP action. Fixes: 938a184a18 ("app/testpmd: implement basic support for flow API") -Cc: stable@dpdk.org Signed-off-by: Reshma Pattan Acked-by: Bernard Iremonger @@ -16,10 +17,10 @@ 1 file changed, 1 insertion(+) diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c -index 5ba59b09b..794aa5268 100644 +index 14ccd6864..21d5e4ae4 100644 --- a/app/test-pmd/config.c +++ b/app/test-pmd/config.c -@@ -1142,4 +1142,5 @@ static const struct { +@@ -1124,4 +1124,5 @@ static const struct { MK_FLOW_ACTION(VOID, 0), MK_FLOW_ACTION(PASSTHRU, 0), + MK_FLOW_ACTION(JUMP, 0),