From: Reshma Pattan Date: Wed, 19 Sep 2018 14:01:05 +0000 (+0100) Subject: app/testpmd: fix missing jump action in flow action X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=dcbbbd069217cef1c71601e0809e870df1545e47;p=dpdk.git 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 --- 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)),