mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
i40e: better wording for resource tracking errors
Tweak and homogenize the error reporting for get_lump() resource tracking errors. Change-ID: I11330161cc6ad8d04371c499c63071c816171c3b Signed-off-by: Shannon Nelson <shannon.nelson@intel.com> Signed-off-by: Patrick Lu <patrick.lu@intel.com> Tested-by: Jim Young <jamesx.m.young@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
c135b0de9b
commit
049a2be828
1 changed files with 8 additions and 6 deletions
|
@ -7957,8 +7957,8 @@ static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
|
|||
vsi->num_q_vectors, vsi->idx);
|
||||
if (vsi->base_vector < 0) {
|
||||
dev_info(&pf->pdev->dev,
|
||||
"failed to get queue tracking for VSI %d, err=%d\n",
|
||||
vsi->seid, vsi->base_vector);
|
||||
"failed to get tracking for %d vectors for VSI %d, err=%d\n",
|
||||
vsi->num_q_vectors, vsi->seid, vsi->base_vector);
|
||||
i40e_vsi_free_q_vectors(vsi);
|
||||
ret = -ENOENT;
|
||||
goto vector_setup_out;
|
||||
|
@ -7994,8 +7994,9 @@ static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
|
|||
|
||||
ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
|
||||
if (ret < 0) {
|
||||
dev_info(&pf->pdev->dev, "VSI %d get_lump failed %d\n",
|
||||
vsi->seid, ret);
|
||||
dev_info(&pf->pdev->dev,
|
||||
"failed to get tracking for %d queues for VSI %d err=%d\n",
|
||||
vsi->alloc_queue_pairs, vsi->seid, ret);
|
||||
goto err_vsi;
|
||||
}
|
||||
vsi->base_queue = ret;
|
||||
|
@ -8124,8 +8125,9 @@ struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
|
|||
ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
|
||||
vsi->idx);
|
||||
if (ret < 0) {
|
||||
dev_info(&pf->pdev->dev, "VSI %d get_lump failed %d\n",
|
||||
vsi->seid, ret);
|
||||
dev_info(&pf->pdev->dev,
|
||||
"failed to get tracking for %d queues for VSI %d err=%d\n",
|
||||
vsi->alloc_queue_pairs, vsi->seid, ret);
|
||||
goto err_vsi;
|
||||
}
|
||||
vsi->base_queue = ret;
|
||||
|
|
Loading…
Add table
Reference in a new issue