Commit b1a3380a authored by Vu Pham's avatar Vu Pham Committed by Saeed Mahameed
Browse files

net/mlx5: E-Switch, Rename ingress acl config in offloads mode



Changing the function name esw_ingress_acl_common_config() to
esw_ingress_acl_config() to be consistent with egress config
function naming in offloads mode.

Signed-off-by: default avatarVu Pham <vuhuong@mellanox.com>
Reviewed-by: default avatarParav Pandit <parav@mellanox.com>
Signed-off-by: default avatarSaeed Mahameed <saeedm@mellanox.com>
parent 6d94e610
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1899,7 +1899,7 @@ static int esw_vport_egress_prio_tag_config(struct mlx5_eswitch *esw,
	return err;
}

static int esw_vport_ingress_common_config(struct mlx5_eswitch *esw,
static int esw_vport_ingress_config(struct mlx5_eswitch *esw,
				    struct mlx5_vport *vport)
{
	int err;
@@ -1993,7 +1993,7 @@ static int esw_create_offloads_acl_tables(struct mlx5_eswitch *esw)
		esw->flags |= MLX5_ESWITCH_VPORT_MATCH_METADATA;

	mlx5_esw_for_all_vports(esw, i, vport) {
		err = esw_vport_ingress_common_config(esw, vport);
		err = esw_vport_ingress_config(esw, vport);
		if (err)
			goto err_ingress;