Skip to content

Commit

Permalink
e1000e: save and restore pcie/msi state to support EEH recovery
Browse files Browse the repository at this point in the history
To enable EEH support for pci-express network adapters, pcie/msi state
needs to be saved and restored for that adapter.

Tested this EEH patch with 2ports and 4ports pci-express e1000e
adapters.

Signed-off-by: Wendy Xiong <[email protected]>
Signed-off-by: Auke Kok <[email protected]>
Signed-off-by: Jeff Garzik <[email protected]>
  • Loading branch information
Wendy Xiong authored and Jeff Garzik committed Apr 25, 2008
1 parent fb3b27b commit aad3273
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/net/e1000e/netdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -3807,6 +3807,7 @@ static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
return PCI_ERS_RESULT_DISCONNECT;
}
pci_set_master(pdev);
pci_restore_state(pdev);

pci_enable_wake(pdev, PCI_D3hot, 0);
pci_enable_wake(pdev, PCI_D3cold, 0);
Expand Down Expand Up @@ -3933,6 +3934,7 @@ static int __devinit e1000_probe(struct pci_dev *pdev,
goto err_pci_reg;

pci_set_master(pdev);
pci_save_state(pdev);

err = -ENOMEM;
netdev = alloc_etherdev(sizeof(struct e1000_adapter));
Expand Down

0 comments on commit aad3273

Please sign in to comment.