* [patch (for 2.6.25?) 1/3] e100: do suspend/shutdown like e1000
@ 2008-03-04 22:58 akpm
2008-03-04 23:03 ` Kok, Auke
0 siblings, 1 reply; 4+ messages in thread
From: akpm @ 2008-03-04 22:58 UTC (permalink / raw)
To: jeff; +Cc: netdev, akpm, auke-jan.h.kok, arvidjaar
From: "Kok, Auke" <auke-jan.h.kok@intel.com>
This fixes a "trying to free already free IRQ" message and simplifies the
shutdown/suspend code by re-using already existing code when going to
suspend. The code is now symmetric with e100_resume.
Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
Tested-by: Andrey Borzenkov <arvidjaar@mail.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
drivers/net/e100.c | 29 +++--------------------------
1 file changed, 3 insertions(+), 26 deletions(-)
diff -puN drivers/net/e100.c~e100-do-suspend-shutdown-like-e1000 drivers/net/e100.c
--- a/drivers/net/e100.c~e100-do-suspend-shutdown-like-e1000
+++ a/drivers/net/e100.c
@@ -2782,16 +2782,13 @@ static void __devexit e100_remove(struct
}
}
-#ifdef CONFIG_PM
static int e100_suspend(struct pci_dev *pdev, pm_message_t state)
{
struct net_device *netdev = pci_get_drvdata(pdev);
struct nic *nic = netdev_priv(netdev);
if (netif_running(netdev))
- napi_disable(&nic->napi);
- del_timer_sync(&nic->watchdog);
- netif_carrier_off(nic->netdev);
+ e100_down(nic);
netif_device_detach(netdev);
pci_save_state(pdev);
@@ -2804,14 +2801,13 @@ static int e100_suspend(struct pci_dev *
pci_enable_wake(pdev, PCI_D3cold, 0);
}
- free_irq(pdev->irq, netdev);
-
pci_disable_device(pdev);
pci_set_power_state(pdev, PCI_D3hot);
return 0;
}
+#ifdef CONFIG_PM
static int e100_resume(struct pci_dev *pdev)
{
struct net_device *netdev = pci_get_drvdata(pdev);
@@ -2832,26 +2828,7 @@ static int e100_resume(struct pci_dev *p
static void e100_shutdown(struct pci_dev *pdev)
{
- struct net_device *netdev = pci_get_drvdata(pdev);
- struct nic *nic = netdev_priv(netdev);
-
- if (netif_running(netdev))
- napi_disable(&nic->napi);
- del_timer_sync(&nic->watchdog);
- netif_carrier_off(nic->netdev);
-
- if ((nic->flags & wol_magic) | e100_asf(nic)) {
- pci_enable_wake(pdev, PCI_D3hot, 1);
- pci_enable_wake(pdev, PCI_D3cold, 1);
- } else {
- pci_enable_wake(pdev, PCI_D3hot, 0);
- pci_enable_wake(pdev, PCI_D3cold, 0);
- }
-
- free_irq(pdev->irq, netdev);
-
- pci_disable_device(pdev);
- pci_set_power_state(pdev, PCI_D3hot);
+ e100_suspend(pdev, PMSG_SUSPEND);
}
/* ------------------ PCI Error Recovery infrastructure -------------- */
_
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [patch (for 2.6.25?) 1/3] e100: do suspend/shutdown like e1000
2008-03-04 22:58 [patch (for 2.6.25?) 1/3] e100: do suspend/shutdown like e1000 akpm
@ 2008-03-04 23:03 ` Kok, Auke
2008-03-04 23:33 ` Andrew Morton
0 siblings, 1 reply; 4+ messages in thread
From: Kok, Auke @ 2008-03-04 23:03 UTC (permalink / raw)
To: akpm; +Cc: jeff, netdev, arvidjaar
akpm@linux-foundation.org wrote:
> From: "Kok, Auke" <auke-jan.h.kok@intel.com>
>
> This fixes a "trying to free already free IRQ" message and simplifies the
> shutdown/suspend code by re-using already existing code when going to
> suspend. The code is now symmetric with e100_resume.
>
> Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
> Tested-by: Andrey Borzenkov <arvidjaar@mail.ru>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This should already be in jeff's inbox ...
Auke
> ---
>
> drivers/net/e100.c | 29 +++--------------------------
> 1 file changed, 3 insertions(+), 26 deletions(-)
>
> diff -puN drivers/net/e100.c~e100-do-suspend-shutdown-like-e1000 drivers/net/e100.c
> --- a/drivers/net/e100.c~e100-do-suspend-shutdown-like-e1000
> +++ a/drivers/net/e100.c
> @@ -2782,16 +2782,13 @@ static void __devexit e100_remove(struct
> }
> }
>
> -#ifdef CONFIG_PM
> static int e100_suspend(struct pci_dev *pdev, pm_message_t state)
> {
> struct net_device *netdev = pci_get_drvdata(pdev);
> struct nic *nic = netdev_priv(netdev);
>
> if (netif_running(netdev))
> - napi_disable(&nic->napi);
> - del_timer_sync(&nic->watchdog);
> - netif_carrier_off(nic->netdev);
> + e100_down(nic);
> netif_device_detach(netdev);
>
> pci_save_state(pdev);
> @@ -2804,14 +2801,13 @@ static int e100_suspend(struct pci_dev *
> pci_enable_wake(pdev, PCI_D3cold, 0);
> }
>
> - free_irq(pdev->irq, netdev);
> -
> pci_disable_device(pdev);
> pci_set_power_state(pdev, PCI_D3hot);
>
> return 0;
> }
>
> +#ifdef CONFIG_PM
> static int e100_resume(struct pci_dev *pdev)
> {
> struct net_device *netdev = pci_get_drvdata(pdev);
> @@ -2832,26 +2828,7 @@ static int e100_resume(struct pci_dev *p
>
> static void e100_shutdown(struct pci_dev *pdev)
> {
> - struct net_device *netdev = pci_get_drvdata(pdev);
> - struct nic *nic = netdev_priv(netdev);
> -
> - if (netif_running(netdev))
> - napi_disable(&nic->napi);
> - del_timer_sync(&nic->watchdog);
> - netif_carrier_off(nic->netdev);
> -
> - if ((nic->flags & wol_magic) | e100_asf(nic)) {
> - pci_enable_wake(pdev, PCI_D3hot, 1);
> - pci_enable_wake(pdev, PCI_D3cold, 1);
> - } else {
> - pci_enable_wake(pdev, PCI_D3hot, 0);
> - pci_enable_wake(pdev, PCI_D3cold, 0);
> - }
> -
> - free_irq(pdev->irq, netdev);
> -
> - pci_disable_device(pdev);
> - pci_set_power_state(pdev, PCI_D3hot);
> + e100_suspend(pdev, PMSG_SUSPEND);
> }
>
> /* ------------------ PCI Error Recovery infrastructure -------------- */
> _
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [patch (for 2.6.25?) 1/3] e100: do suspend/shutdown like e1000
2008-03-04 23:03 ` Kok, Auke
@ 2008-03-04 23:33 ` Andrew Morton
2008-03-04 23:44 ` Kok, Auke
0 siblings, 1 reply; 4+ messages in thread
From: Andrew Morton @ 2008-03-04 23:33 UTC (permalink / raw)
To: Kok, Auke; +Cc: jeff, netdev, arvidjaar
On Tue, 04 Mar 2008 15:03:38 -0800
"Kok, Auke" <auke-jan.h.kok@intel.com> wrote:
> akpm@linux-foundation.org wrote:
> > From: "Kok, Auke" <auke-jan.h.kok@intel.com>
> >
> > This fixes a "trying to free already free IRQ" message and simplifies the
> > shutdown/suspend code by re-using already existing code when going to
> > suspend. The code is now symmetric with e100_resume.
> >
> > Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
> > Tested-by: Andrey Borzenkov <arvidjaar@mail.ru>
> > Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
>
>
> This should already be in jeff's inbox ...
>
It's been two weeks nearly - Jeff's inbox might have sprunk a leak ;)
There are lots of leaky inboxes - I have just finished spraying nearly 200
dribbles at various maintainers.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [patch (for 2.6.25?) 1/3] e100: do suspend/shutdown like e1000
2008-03-04 23:33 ` Andrew Morton
@ 2008-03-04 23:44 ` Kok, Auke
0 siblings, 0 replies; 4+ messages in thread
From: Kok, Auke @ 2008-03-04 23:44 UTC (permalink / raw)
To: Andrew Morton; +Cc: jeff, netdev, arvidjaar
Andrew Morton wrote:
> On Tue, 04 Mar 2008 15:03:38 -0800
> "Kok, Auke" <auke-jan.h.kok@intel.com> wrote:
>
>> akpm@linux-foundation.org wrote:
>>> From: "Kok, Auke" <auke-jan.h.kok@intel.com>
>>>
>>> This fixes a "trying to free already free IRQ" message and simplifies the
>>> shutdown/suspend code by re-using already existing code when going to
>>> suspend. The code is now symmetric with e100_resume.
>>>
>>> Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
>>> Tested-by: Andrey Borzenkov <arvidjaar@mail.ru>
>>> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
>>
>> This should already be in jeff's inbox ...
>>
>
> It's been two weeks nearly - Jeff's inbox might have sprunk a leak ;)
>
> There are lots of leaky inboxes - I have just finished spraying nearly 200
> dribbles at various maintainers.
lol, I actually did not send this to jeff until yesterday myself, so you can blame
my inbox for being slow, not Jeff in this case ;)
Auke
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-03-04 23:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-04 22:58 [patch (for 2.6.25?) 1/3] e100: do suspend/shutdown like e1000 akpm
2008-03-04 23:03 ` Kok, Auke
2008-03-04 23:33 ` Andrew Morton
2008-03-04 23:44 ` Kok, Auke
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).