Skip to content

Commit a841733

Browse files
SlawomirLabaanguy11
authored andcommitted
iavf: Fix race condition between iavf_shutdown and iavf_remove
Fix a deadlock introduced by commit 9745780 ("iavf: Add waiting so the port is initialized in remove") due to race condition between iavf_shutdown and iavf_remove, where iavf_remove stucks forever in while loop since iavf_shutdown already set __IAVF_REMOVE adapter state. Fix this by checking if the __IAVF_IN_REMOVE_TASK has already been set and return if so. Fixes: 9745780 ("iavf: Add waiting so the port is initialized in remove") Signed-off-by: Slawomir Laba <[email protected]> Signed-off-by: Mateusz Palczewski <[email protected]> Tested-by: Marek Szlosek <[email protected]> Signed-off-by: Tony Nguyen <[email protected]>
1 parent bb861c1 commit a841733

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

drivers/net/ethernet/intel/iavf/iavf_main.c

+7-9
Original file line numberDiff line numberDiff line change
@@ -5042,23 +5042,21 @@ static int __maybe_unused iavf_resume(struct device *dev_d)
50425042
static void iavf_remove(struct pci_dev *pdev)
50435043
{
50445044
struct iavf_adapter *adapter = iavf_pdev_to_adapter(pdev);
5045-
struct net_device *netdev = adapter->netdev;
50465045
struct iavf_fdir_fltr *fdir, *fdirtmp;
50475046
struct iavf_vlan_filter *vlf, *vlftmp;
5047+
struct iavf_cloud_filter *cf, *cftmp;
50485048
struct iavf_adv_rss *rss, *rsstmp;
50495049
struct iavf_mac_filter *f, *ftmp;
5050-
struct iavf_cloud_filter *cf, *cftmp;
5051-
struct iavf_hw *hw = &adapter->hw;
5050+
struct net_device *netdev;
5051+
struct iavf_hw *hw;
50525052
int err;
50535053

5054-
/* When reboot/shutdown is in progress no need to do anything
5055-
* as the adapter is already REMOVE state that was set during
5056-
* iavf_shutdown() callback.
5057-
*/
5058-
if (adapter->state == __IAVF_REMOVE)
5054+
netdev = adapter->netdev;
5055+
hw = &adapter->hw;
5056+
5057+
if (test_and_set_bit(__IAVF_IN_REMOVE_TASK, &adapter->crit_section))
50595058
return;
50605059

5061-
set_bit(__IAVF_IN_REMOVE_TASK, &adapter->crit_section);
50625060
/* Wait until port initialization is complete.
50635061
* There are flows where register/unregister netdev may race.
50645062
*/

0 commit comments

Comments
 (0)