mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 04:37:07 +07:00
ice: Update number of VF queue before setting VSI resources
In case there is a request from a VF to change its number of queues, and the request was successful, we need to update number of queues configured on the VF before updating corresponding VSI for that VF, especially LAN Tx queue tree and TC update, otherwise, we would continued to use old value of vf->num_vf_qs for allocated Tx/Rx queues... Signed-off-by: Akeem G Abodunrin <akeem.g.abodunrin@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
d5a4635917
commit
66b29e7a88
@ -567,11 +567,6 @@ static int ice_alloc_vf_res(struct ice_vf *vf)
|
||||
int tx_rx_queue_left;
|
||||
int status;
|
||||
|
||||
/* setup VF VSI and necessary resources */
|
||||
status = ice_alloc_vsi_res(vf);
|
||||
if (status)
|
||||
goto ice_alloc_vf_res_exit;
|
||||
|
||||
/* Update number of VF queues, in case VF had requested for queue
|
||||
* changes
|
||||
*/
|
||||
@ -581,6 +576,11 @@ static int ice_alloc_vf_res(struct ice_vf *vf)
|
||||
vf->num_req_qs != vf->num_vf_qs)
|
||||
vf->num_vf_qs = vf->num_req_qs;
|
||||
|
||||
/* setup VF VSI and necessary resources */
|
||||
status = ice_alloc_vsi_res(vf);
|
||||
if (status)
|
||||
goto ice_alloc_vf_res_exit;
|
||||
|
||||
if (vf->trusted)
|
||||
set_bit(ICE_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps);
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user