提交 401586c2 编写于 作者: J Jacob Keller 提交者: Jeff Kirsher

i40e: don't clear suspended state until we finish resuming

When handling suspend and resume callbacks we want to make sure that (a)
we don't suspend again if we're already suspended and (b) we don't
resume again if we're already resuming. Lets make sure we test_and_set
the __I40E_SUSPENDED bit in i40e_suspend which ensures that a suspend
call when already suspended will exit early. Additionally, if
__I40E_SUSPENDED is not set when we begin resuming, exit early as well.
Signed-off-by: NJacob Keller <jacob.e.keller@intel.com>
Tested-by: NAndrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
上级 0e5d3da4
...@@ -12059,7 +12059,10 @@ static int i40e_suspend(struct device *dev) ...@@ -12059,7 +12059,10 @@ static int i40e_suspend(struct device *dev)
struct i40e_pf *pf = pci_get_drvdata(pdev); struct i40e_pf *pf = pci_get_drvdata(pdev);
struct i40e_hw *hw = &pf->hw; struct i40e_hw *hw = &pf->hw;
set_bit(__I40E_SUSPENDED, pf->state); /* If we're already suspended, then there is nothing to do */
if (test_and_set_bit(__I40E_SUSPENDED, pf->state))
return 0;
set_bit(__I40E_DOWN, pf->state); set_bit(__I40E_DOWN, pf->state);
if (pf->wol_en && (pf->hw_features & I40E_HW_WOL_MC_MAGIC_PKT_WAKE)) if (pf->wol_en && (pf->hw_features & I40E_HW_WOL_MC_MAGIC_PKT_WAKE))
...@@ -12084,11 +12087,15 @@ static int i40e_resume(struct device *dev) ...@@ -12084,11 +12087,15 @@ static int i40e_resume(struct device *dev)
struct pci_dev *pdev = to_pci_dev(dev); struct pci_dev *pdev = to_pci_dev(dev);
struct i40e_pf *pf = pci_get_drvdata(pdev); struct i40e_pf *pf = pci_get_drvdata(pdev);
/* handling the reset will rebuild the device state */ /* If we're not suspended, then there is nothing to do */
if (test_and_clear_bit(__I40E_SUSPENDED, pf->state)) { if (!test_bit(__I40E_SUSPENDED, pf->state))
return 0;
clear_bit(__I40E_DOWN, pf->state); clear_bit(__I40E_DOWN, pf->state);
i40e_reset_and_rebuild(pf, false, false); i40e_reset_and_rebuild(pf, false, false);
}
/* Clear suspended state last after everything is recovered */
clear_bit(__I40E_SUSPENDED, pf->state);
return 0; return 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册