net/mlx5: E-Switch, Use iterator for vlan and min-inline setups
Use the defined iterators to traversal VF reps/vport. Also, rely on num of VFs rather than the counter of enabled vports as PF will also be enabled from ECPF side, and the counter will be different from num of VFs. Signed-off-by: Bodong Wang <bodong@mellanox.com> Reviewed-by: Parav Pandit <parav@mellanox.com> Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
This commit is contained in:
parent
16fff98a7e
commit
db68cc569e
@ -347,8 +347,7 @@ static int esw_set_global_vlan_pop(struct mlx5_eswitch *esw, u8 val)
|
|||||||
int vf_vport, err = 0;
|
int vf_vport, err = 0;
|
||||||
|
|
||||||
esw_debug(esw->dev, "%s applying global %s policy\n", __func__, val ? "pop" : "none");
|
esw_debug(esw->dev, "%s applying global %s policy\n", __func__, val ? "pop" : "none");
|
||||||
for (vf_vport = 1; vf_vport < esw->enabled_vports; vf_vport++) {
|
mlx5_esw_for_each_vf_rep(esw, vf_vport, rep, esw->esw_funcs.num_vfs) {
|
||||||
rep = &esw->offloads.vport_reps[vf_vport];
|
|
||||||
if (atomic_read(&rep->rep_data[REP_ETH].state) != REP_LOADED)
|
if (atomic_read(&rep->rep_data[REP_ETH].state) != REP_LOADED)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
@ -2302,7 +2301,7 @@ int mlx5_devlink_eswitch_inline_mode_set(struct devlink *devlink, u8 mode,
|
|||||||
{
|
{
|
||||||
struct mlx5_core_dev *dev = devlink_priv(devlink);
|
struct mlx5_core_dev *dev = devlink_priv(devlink);
|
||||||
struct mlx5_eswitch *esw = dev->priv.eswitch;
|
struct mlx5_eswitch *esw = dev->priv.eswitch;
|
||||||
int err, vport;
|
int err, vport, num_vport;
|
||||||
u8 mlx5_mode;
|
u8 mlx5_mode;
|
||||||
|
|
||||||
err = mlx5_devlink_eswitch_check(devlink);
|
err = mlx5_devlink_eswitch_check(devlink);
|
||||||
@ -2331,7 +2330,7 @@ int mlx5_devlink_eswitch_inline_mode_set(struct devlink *devlink, u8 mode,
|
|||||||
if (err)
|
if (err)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
for (vport = 1; vport < esw->enabled_vports; vport++) {
|
mlx5_esw_for_each_vf_vport_num(esw, vport, esw->esw_funcs.num_vfs) {
|
||||||
err = mlx5_modify_nic_vport_min_inline(dev, vport, mlx5_mode);
|
err = mlx5_modify_nic_vport_min_inline(dev, vport, mlx5_mode);
|
||||||
if (err) {
|
if (err) {
|
||||||
NL_SET_ERR_MSG_MOD(extack,
|
NL_SET_ERR_MSG_MOD(extack,
|
||||||
@ -2344,7 +2343,8 @@ int mlx5_devlink_eswitch_inline_mode_set(struct devlink *devlink, u8 mode,
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
revert_inline_mode:
|
revert_inline_mode:
|
||||||
while (--vport > 0)
|
num_vport = --vport;
|
||||||
|
mlx5_esw_for_each_vf_vport_num_reverse(esw, vport, num_vport)
|
||||||
mlx5_modify_nic_vport_min_inline(dev,
|
mlx5_modify_nic_vport_min_inline(dev,
|
||||||
vport,
|
vport,
|
||||||
esw->offloads.inline_mode);
|
esw->offloads.inline_mode);
|
||||||
@ -2389,7 +2389,7 @@ int mlx5_eswitch_inline_mode_get(struct mlx5_eswitch *esw, u8 *mode)
|
|||||||
}
|
}
|
||||||
|
|
||||||
query_vports:
|
query_vports:
|
||||||
for (vport = 1; vport <= esw->esw_funcs.num_vfs; vport++) {
|
mlx5_esw_for_each_vf_vport_num(esw, vport, esw->esw_funcs.num_vfs) {
|
||||||
mlx5_query_nic_vport_min_inline(dev, vport, &mlx5_mode);
|
mlx5_query_nic_vport_min_inline(dev, vport, &mlx5_mode);
|
||||||
if (vport > 1 && prev_mlx5_mode != mlx5_mode)
|
if (vport > 1 && prev_mlx5_mode != mlx5_mode)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
Loading…
Reference in New Issue
Block a user