From: Shahaf Shuler Date: Wed, 15 Nov 2017 07:09:49 +0000 (+0200) Subject: net/mlx5: fix flow mark action on port start X-Git-Tag: spdx-start~808 X-Git-Url: http://git.droids-corp.org/?p=dpdk.git;a=commitdiff_plain;h=0384f21dffc9081d1ae30f0a6e49926bfc4be85d net/mlx5: fix flow mark action on port start Mark action flag was not set on the flow, causing the rx burst function after port start to ignore the flow mark. Fixes: 8086cf08b2f0 ("net/mlx5: handle RSS hash configuration in RSS flow") Signed-off-by: Shahaf Shuler Acked-by: Nelio Laranjeiro --- diff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c index 466d74b5ff..f32dfdd3fa 100644 --- a/drivers/net/mlx5/mlx5_flow.c +++ b/drivers/net/mlx5/mlx5_flow.c @@ -1930,6 +1930,7 @@ priv_flow_create(struct priv *priv, flow->queues = (uint16_t (*)[])(flow + 1); memcpy(flow->queues, parser.queues, parser.queues_n * sizeof(uint16_t)); flow->queues_n = parser.queues_n; + flow->mark = parser.mark; /* Copy RSS configuration. */ flow->rss_conf = parser.rss_conf; flow->rss_conf.rss_key = flow->rss_key;