mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
ice: change repr::id values
Instead of getting repr::id from xa_alloc() value, set it to the src_vsi::num_vsi value. It is unique for each PR. Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com> Reviewed-by: Marcin Szycik <marcin.szycik@linux.intel.com> Signed-off-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com> Tested-by: Sujai Buvaneswaran <sujai.buvaneswaran@intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
This commit is contained in:
parent
33bf1e8623
commit
6235cb6e5b
2 changed files with 3 additions and 3 deletions
|
@ -319,7 +319,7 @@ ice_eswitch_mode_set(struct devlink *devlink, u16 mode,
|
||||||
|
|
||||||
dev_info(ice_pf_to_dev(pf), "PF %d changed eswitch mode to switchdev",
|
dev_info(ice_pf_to_dev(pf), "PF %d changed eswitch mode to switchdev",
|
||||||
pf->hw.pf_id);
|
pf->hw.pf_id);
|
||||||
xa_init_flags(&pf->eswitch.reprs, XA_FLAGS_ALLOC);
|
xa_init(&pf->eswitch.reprs);
|
||||||
NL_SET_ERR_MSG_MOD(extack, "Changed eswitch mode to switchdev");
|
NL_SET_ERR_MSG_MOD(extack, "Changed eswitch mode to switchdev");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -426,8 +426,7 @@ ice_eswitch_attach(struct ice_pf *pf, struct ice_vf *vf)
|
||||||
if (err)
|
if (err)
|
||||||
goto err_setup_repr;
|
goto err_setup_repr;
|
||||||
|
|
||||||
err = xa_alloc(&pf->eswitch.reprs, &repr->id, repr,
|
err = xa_insert(&pf->eswitch.reprs, repr->id, repr, GFP_KERNEL);
|
||||||
XA_LIMIT(1, INT_MAX), GFP_KERNEL);
|
|
||||||
if (err)
|
if (err)
|
||||||
goto err_xa_alloc;
|
goto err_xa_alloc;
|
||||||
|
|
||||||
|
|
|
@ -345,6 +345,7 @@ ice_repr_add(struct ice_pf *pf, struct ice_vsi *src_vsi, const u8 *parent_mac)
|
||||||
}
|
}
|
||||||
|
|
||||||
repr->src_vsi = src_vsi;
|
repr->src_vsi = src_vsi;
|
||||||
|
repr->id = src_vsi->vsi_num;
|
||||||
np = netdev_priv(repr->netdev);
|
np = netdev_priv(repr->netdev);
|
||||||
np->repr = repr;
|
np->repr = repr;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue