Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e5d17c3e authored by Mitch Williams's avatar Mitch Williams Committed by Jeff Kirsher
Browse files

i40evf: don't stop watchdog if it hasn't started



If the VF driver fails to complete early init, then rmmod can cause a
softlock when the driver tries to stop a watchdog timer that never even
got initialized.

Add a check to see if the timer is actually initialized before stopping
it.

Change-ID: Id9d550aa8838e07f4b02afe7bc017ef983779efc
Signed-off-by: default avatarMitch Williams <mitch.a.williams@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 3ba3faeb
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2408,7 +2408,9 @@ static void i40evf_remove(struct pci_dev *pdev)
		i40evf_reset_interrupt_capability(adapter);
	}

	if (adapter->watchdog_timer.function)
		del_timer_sync(&adapter->watchdog_timer);

	flush_scheduled_work();

	if (hw->aq.asq.count)