mirror of
https://github.com/torvalds/linux.git
synced 2025-01-01 15:51:46 +00:00
i40e: remove unnecessary msleep() delay in i40e_free_vfs
The delay was added because of a desire to ensure that the VF driver can finish up removing. However, pci_disable_sriov already has its own ssleep() call that will sleep for an entire second, so there is no reason to add extra delay on top of this by using msleep here. In practice, an msleep() won't have a huge impact on timing but there is no real value in keeping it, so lets just simplify the code and remove it. Signed-off-by: Jacob Keller <jacob.e.keller@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
707d088af3
commit
2318b4018a
@ -47,7 +47,7 @@ static const char i40e_driver_string[] =
|
||||
|
||||
#define DRV_VERSION_MAJOR 2
|
||||
#define DRV_VERSION_MINOR 1
|
||||
#define DRV_VERSION_BUILD 7
|
||||
#define DRV_VERSION_BUILD 14
|
||||
#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
|
||||
__stringify(DRV_VERSION_MINOR) "." \
|
||||
__stringify(DRV_VERSION_BUILD) DRV_KERN
|
||||
|
@ -1219,8 +1219,6 @@ void i40e_free_vfs(struct i40e_pf *pf)
|
||||
else
|
||||
dev_warn(&pf->pdev->dev, "VFs are assigned - not disabling SR-IOV\n");
|
||||
|
||||
msleep(20); /* let any messages in transit get finished up */
|
||||
|
||||
/* free up VF resources */
|
||||
tmp = pf->num_alloc_vfs;
|
||||
pf->num_alloc_vfs = 0;
|
||||
|
@ -46,7 +46,7 @@ static const char i40evf_driver_string[] =
|
||||
|
||||
#define DRV_VERSION_MAJOR 2
|
||||
#define DRV_VERSION_MINOR 1
|
||||
#define DRV_VERSION_BUILD 7
|
||||
#define DRV_VERSION_BUILD 14
|
||||
#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
|
||||
__stringify(DRV_VERSION_MINOR) "." \
|
||||
__stringify(DRV_VERSION_BUILD) \
|
||||
|
Loading…
Reference in New Issue
Block a user