From dcbbbd069217cef1c71601e0809e870df1545e47 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 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 --- 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 5ba59b09b5..794aa52686 100644 --- a/app/test-pmd/config.c +++ b/app/test-pmd/config.c @@ -1141,6 +1141,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.20.1