bnxt_en: Re-enable SRIOV during resume.

[ Upstream commit 59ae210173 ]

If VFs are enabled, we need to re-configure them during resume because
firmware has been reset while resuming.  Otherwise, the VFs won't
work after resume.

Fixes: c16d4ee0e3 ("bnxt_en: Refactor logic to re-enable SRIOV after firmware reset detected.")
Signed-off-by: Michael Chan <michael.chan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Michael Chan
2020-06-14 19:57:08 -04:00
committed by Greg Kroah-Hartman
parent 3c8cf20c47
commit a88141f15a

View File

@@ -12115,6 +12115,8 @@ static int bnxt_resume(struct device *device)
resume_exit: resume_exit:
bnxt_ulp_start(bp, rc); bnxt_ulp_start(bp, rc);
if (!rc)
bnxt_reenable_sriov(bp);
rtnl_unlock(); rtnl_unlock();
return rc; return rc;
} }