Skip to content

Commit

Permalink
be2net: Disabling and enabling interrupts in suspend and resume
Browse files Browse the repository at this point in the history
Interrupts need to be enabled in be_resume, when adapter boots back up from D3cold.

disabling interrupts in be_suspend() just to be symmetric to be_resume().

Signed-off-by: Ravikumar Nelavelli <ravikumar.nelavelli@emulex.com>
Signed-off-by: Ajit Khaparde <ajit.khaparde@emulex.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Ajit Khaparde authored and David S. Miller committed Nov 23, 2013
1 parent 4d0820c commit d4360d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/net/ethernet/emulex/benet/be_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -4599,6 +4599,7 @@ static int be_suspend(struct pci_dev *pdev, pm_message_t state)
if (adapter->wol)
be_setup_wol(adapter, true);

be_intr_set(adapter, false);
cancel_delayed_work_sync(&adapter->func_recovery_work);

netif_device_detach(netdev);
Expand Down Expand Up @@ -4634,6 +4635,7 @@ static int be_resume(struct pci_dev *pdev)
if (status)
return status;

be_intr_set(adapter, true);
/* tell fw we're ready to fire cmds */
status = be_cmd_fw_init(adapter);
if (status)
Expand Down

0 comments on commit d4360d6

Please sign in to comment.