From: Mark Bloch Date: Sun, 2 Sep 2018 09:51:36 +0000 (+0300) Subject: RDMA/mlx5: Enable attaching packet reformat action to steering flows X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=e806f9328ba424b371766899af3c3cf4616e5522;p=openwrt%2Fstaging%2Fblogic.git RDMA/mlx5: Enable attaching packet reformat action to steering flows Any matching rules will be mutated based on the packet reformat context which is attached to that given flow rule. Signed-off-by: Mark Bloch Signed-off-by: Leon Romanovsky Signed-off-by: Jason Gunthorpe --- diff --git a/drivers/infiniband/hw/mlx5/main.c b/drivers/infiniband/hw/mlx5/main.c index b5f0ab88e064..65fce84135f3 100644 --- a/drivers/infiniband/hw/mlx5/main.c +++ b/drivers/infiniband/hw/mlx5/main.c @@ -2486,6 +2486,14 @@ static int parse_flow_flow_action(const union ib_flow_spec *ib_spec, action->action |= MLX5_FLOW_CONTEXT_ACTION_DECAP; return 0; } + if (maction->flow_action_raw.sub_type == + MLX5_IB_FLOW_ACTION_PACKET_REFORMAT) { + action->action |= + MLX5_FLOW_CONTEXT_ACTION_PACKET_REFORMAT; + action->reformat_id = + maction->flow_action_raw.action_id; + return 0; + } /* fall through */ default: return -EOPNOTSUPP;