DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] app/testpmd: fix missing jump action in flow action
@ 2018-09-19 14:01 Reshma Pattan
  2018-09-20 16:11 ` Iremonger, Bernard
  0 siblings, 1 reply; 3+ messages in thread
From: Reshma Pattan @ 2018-09-19 14:01 UTC (permalink / raw)
  To: adrien.mazarguil, dev; +Cc: Reshma Pattan

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@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 a0f934932..ea2fc9575 100644
--- a/app/test-pmd/config.c
+++ b/app/test-pmd/config.c
@@ -1132,6 +1132,7 @@ static const struct {
 	MK_FLOW_ACTION(END, 0),
 	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),
 	MK_FLOW_ACTION(QUEUE, sizeof(struct rte_flow_action_queue)),
-- 
2.14.4

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-09-21  1:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-19 14:01 [dpdk-dev] [PATCH] app/testpmd: fix missing jump action in flow action Reshma Pattan
2018-09-20 16:11 ` Iremonger, Bernard
2018-09-21  1:03   ` Ferruh Yigit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).