mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 12:47:12 +07:00
ice: Use right type for ice_cfg_vsi_lan return
ice_cfg_vsi_lan returns a value of type enum ice_status. So use a local of the same type to capture the return value. Signed-off-by: Akeem G Abodunrin <akeem.g.abodunrin@intel.com> Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
f776b3acb0
commit
d31530e83e
@ -2365,6 +2365,7 @@ ice_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi,
|
|||||||
{
|
{
|
||||||
u16 max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
|
u16 max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
|
||||||
struct device *dev = &pf->pdev->dev;
|
struct device *dev = &pf->pdev->dev;
|
||||||
|
enum ice_status status;
|
||||||
struct ice_vsi *vsi;
|
struct ice_vsi *vsi;
|
||||||
int ret, i;
|
int ret, i;
|
||||||
|
|
||||||
@ -2472,12 +2473,12 @@ ice_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi,
|
|||||||
for (i = 0; i < vsi->tc_cfg.numtc; i++)
|
for (i = 0; i < vsi->tc_cfg.numtc; i++)
|
||||||
max_txqs[i] = pf->num_lan_tx;
|
max_txqs[i] = pf->num_lan_tx;
|
||||||
|
|
||||||
ret = ice_cfg_vsi_lan(vsi->port_info, vsi->idx, vsi->tc_cfg.ena_tc,
|
status = ice_cfg_vsi_lan(vsi->port_info, vsi->idx, vsi->tc_cfg.ena_tc,
|
||||||
max_txqs);
|
max_txqs);
|
||||||
if (ret) {
|
if (status) {
|
||||||
dev_err(&pf->pdev->dev,
|
dev_err(&pf->pdev->dev,
|
||||||
"VSI %d failed lan queue config, error %d\n",
|
"VSI %d failed lan queue config, error %d\n",
|
||||||
vsi->vsi_num, ret);
|
vsi->vsi_num, status);
|
||||||
goto unroll_vector_base;
|
goto unroll_vector_base;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2868,6 +2869,7 @@ int ice_vsi_rebuild(struct ice_vsi *vsi)
|
|||||||
{
|
{
|
||||||
u16 max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
|
u16 max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
|
||||||
struct ice_vf *vf = NULL;
|
struct ice_vf *vf = NULL;
|
||||||
|
enum ice_status status;
|
||||||
struct ice_pf *pf;
|
struct ice_pf *pf;
|
||||||
int ret, i;
|
int ret, i;
|
||||||
|
|
||||||
@ -2961,12 +2963,12 @@ int ice_vsi_rebuild(struct ice_vsi *vsi)
|
|||||||
for (i = 0; i < vsi->tc_cfg.numtc; i++)
|
for (i = 0; i < vsi->tc_cfg.numtc; i++)
|
||||||
max_txqs[i] = pf->num_lan_tx;
|
max_txqs[i] = pf->num_lan_tx;
|
||||||
|
|
||||||
ret = ice_cfg_vsi_lan(vsi->port_info, vsi->idx, vsi->tc_cfg.ena_tc,
|
status = ice_cfg_vsi_lan(vsi->port_info, vsi->idx, vsi->tc_cfg.ena_tc,
|
||||||
max_txqs);
|
max_txqs);
|
||||||
if (ret) {
|
if (status) {
|
||||||
dev_err(&pf->pdev->dev,
|
dev_err(&pf->pdev->dev,
|
||||||
"VSI %d failed lan queue config, error %d\n",
|
"VSI %d failed lan queue config, error %d\n",
|
||||||
vsi->vsi_num, ret);
|
vsi->vsi_num, status);
|
||||||
goto err_vectors;
|
goto err_vectors;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user