mirror of https://gitee.com/openkylin/linux.git
ice: Fix error on driver remove
If the driver is unloaded when traffic is in progress, errors are generated. Fix this by releasing qvectors and NAPI handler on remove. Signed-off-by: Dave Ertman <david.m.ertman@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
9e4ab4c29a
commit
81b23589f4
|
@ -2130,6 +2130,7 @@ static int ice_probe(struct pci_dev *pdev,
|
|||
static void ice_remove(struct pci_dev *pdev)
|
||||
{
|
||||
struct ice_pf *pf = pci_get_drvdata(pdev);
|
||||
int i;
|
||||
|
||||
if (!pf)
|
||||
return;
|
||||
|
@ -2139,6 +2140,11 @@ static void ice_remove(struct pci_dev *pdev)
|
|||
|
||||
ice_vsi_release_all(pf);
|
||||
ice_free_irq_msix_misc(pf);
|
||||
ice_for_each_vsi(pf, i) {
|
||||
if (!pf->vsi[i])
|
||||
continue;
|
||||
ice_vsi_free_q_vectors(pf->vsi[i]);
|
||||
}
|
||||
ice_clear_interrupt_scheme(pf);
|
||||
ice_deinit_pf(pf);
|
||||
ice_deinit_hw(&pf->hw);
|
||||
|
|
Loading…
Reference in New Issue