Skip to content

Commit

Permalink
PCI: Restore ACS configuration as part of pci_restore_state()
Browse files Browse the repository at this point in the history
Previously we did not restore ACS state after a PCIe reset.  This meant
that we could not reassign interfaces after a system suspend because the
D0->D3 transition disabled ACS, and we didn't restore it when going back to
D0.

Restore ACS configuration in pci_restore_state().

[bhelgaas: changelog]
Signed-off-by: Alexander Duyck <alexander.h.duyck@redhat.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
CC: Allen Kay <allen.m.kay@intel.com>
CC: Chris Wright <chris@sous-sol.org>
CC: Alex Williamson <alex.williamson@redhat.com>
  • Loading branch information
Alexander Duyck authored and Bjorn Helgaas committed Jul 21, 2015
1 parent bc0195a commit ccbc175
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/pci/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -1092,6 +1092,9 @@ void pci_restore_state(struct pci_dev *dev)

pci_restore_pcix_state(dev);
pci_restore_msi_state(dev);

/* Restore ACS and IOV configuration state */
pci_enable_acs(dev);
pci_restore_iov_state(dev);

dev->state_saved = false;
Expand Down

0 comments on commit ccbc175

Please sign in to comment.