All of lore.kernel.org
 help / color / mirror / Atom feed
* pci_set_power_state() failure and breaking suspend
@ 2006-10-24  6:54 Benjamin Herrenschmidt
  2006-10-24  7:40 ` Benjamin Herrenschmidt
  2006-10-24 12:00   ` Rafael J. Wysocki
  0 siblings, 2 replies; 21+ messages in thread
From: Benjamin Herrenschmidt @ 2006-10-24  6:54 UTC (permalink / raw)
  To: linux1394-devel; +Cc: linuxppc-dev list, Linux Kernel list, Greg KH

So I noticed a small regression that I think might uncover a deeper
issue...

Recently, ohci1394 grew some "proper" error handling in its suspend
function, something that looks like:

        err = pci_set_power_state(pdev, pci_choose_state(pdev, state));
        if (err)
                goto out;

First, it breaks some old PowerBooks where the internal OHCI had PM
feature exposed on PCI (the pmac specific code that follows those lines
is enough on those machines).

That can easily be fixed by removing the if (err) goto out; statement
and having the pmac code set err to 0 in certain conditions, and I'll be
happy to submit a patch for this.

However, this raises the question of do we actually want to prevent
machines to suspend when they have a PCI device that don't have the PCI
PM capability ? I'm asking that because I can easily imagine that sort
of construct growing into more drivers (sounds logical if you don't
think) and I can even imagine somebody thinking it's a good idea to slap
a __must_check on pci_set_power_state() ... 

I think the answer is not simple. For a lot of devices, it will be
harmless, they will be either unaffected by the sleep transition or
powered down and back up, and the driver will cope just fine. I suppose
there can be issues for devices that do not support it, though none
obvious comes to mind.

It's one of those policies that are hard to define. But I think the best
approach for now is to not fail the suspend when pci_set_power_state()
returns an error.

Ben.

^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2006-10-25  7:47 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-24  6:54 pci_set_power_state() failure and breaking suspend Benjamin Herrenschmidt
2006-10-24  7:40 ` Benjamin Herrenschmidt
2006-10-24  8:13   ` Stefan Richter
2006-10-24  8:13     ` Stefan Richter
2006-10-24  8:29     ` Benjamin Herrenschmidt
2006-10-24  8:29       ` Benjamin Herrenschmidt
2006-10-24 11:41       ` Stefan Richter
2006-10-24 11:41         ` Stefan Richter
2006-10-24 22:40         ` Benjamin Herrenschmidt
2006-10-25  6:40   ` Stefan Richter
2006-10-25  6:40     ` Stefan Richter
2006-10-25  6:48     ` Stefan Richter
2006-10-25  6:48       ` Stefan Richter
2006-10-25  6:51       ` Stefan Richter
2006-10-25  6:51         ` Stefan Richter
2006-10-25  7:44         ` [rfc patch linux1394-2.6.git 1/2] ieee1394: ohci1394: revert fail on error in suspend Stefan Richter
2006-10-25  7:46           ` [rfc patch linux1394-2.6.git 2/2] ieee1394: ohci1394: proper log messages in suspend and resume Stefan Richter
2006-10-24 12:00 ` pci_set_power_state() failure and breaking suspend Rafael J. Wysocki
2006-10-24 12:00   ` Rafael J. Wysocki
2006-10-24 16:09   ` Scott Wood
2006-10-24 16:09     ` Scott Wood

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.