Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e806f932 authored by Mark Bloch's avatar Mark Bloch Committed by Jason Gunthorpe
Browse files

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: default avatarMark Bloch <markb@mellanox.com>
Signed-off-by: default avatarLeon Romanovsky <leonro@mellanox.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent 5c2db53f
Loading
Loading
Loading
Loading
+8 −0
Original line number Original line Diff line number Diff line
@@ -2486,6 +2486,14 @@ static int parse_flow_flow_action(const union ib_flow_spec *ib_spec,
			action->action |= MLX5_FLOW_CONTEXT_ACTION_DECAP;
			action->action |= MLX5_FLOW_CONTEXT_ACTION_DECAP;
			return 0;
			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 */
		/* fall through */
	default:
	default:
		return -EOPNOTSUPP;
		return -EOPNOTSUPP;