Commit 5dde00a7 authored by Yevgeny Kliteynik's avatar Yevgeny Kliteynik Committed by Saeed Mahameed
Browse files

net/mlx5: DR, Fix typo 'offeset' to 'offset'

parent 1ffd4989
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -632,7 +632,7 @@ int mlx5dr_actions_build_ste_arr(struct mlx5dr_matcher *matcher,
			return -EOPNOTSUPP;
		case DR_ACTION_TYP_CTR:
			attr.ctr_id = action->ctr->ctr_id +
				action->ctr->offeset;
				action->ctr->offset;
			break;
		case DR_ACTION_TYP_TAG:
			attr.flow_tag = action->flow_tag->flow_tag;
+1 −1
Original line number Diff line number Diff line
@@ -941,7 +941,7 @@ struct mlx5dr_action_dest_tbl {

struct mlx5dr_action_ctr {
	u32 ctr_id;
	u32 offeset;
	u32 offset;
};

struct mlx5dr_action_vport {