[dpdk-stable] patch 'app/testpmd: fix missing jump action in flow action' has been queued to stable release 18.08.1

Kevin Traynor ktraynor at redhat.com
Tue Nov 20 20:12:51 CET 2018


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 <reshma.pattan at intel.com>
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 <reshma.pattan at intel.com>
Acked-by: Bernard Iremonger <bernard.iremonger at intel.com>
---
 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 <reshma.pattan at intel.com>
 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 at dpdk.org
 
 Signed-off-by: Reshma Pattan <reshma.pattan at intel.com>
 Acked-by: Bernard Iremonger <bernard.iremonger at intel.com>
@@ -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),


More information about the stable mailing list