Re: [patch update] Re: [linux-pm] Run-time PM idea (was: Re:[RFC][PATCH 0/2] PM: Rearrange core suspend code)

From: Alan Stern
Date: Wed Jun 10 2009 - 19:42:23 EST


On Wed, 10 Jun 2009, Rafael J. Wysocki wrote:

> > You know, it doesn't make any sense to have a suspend and a resume
> > both pending at the same time.
> >
> > So you could add only a delayed_work structure and use its embedded
> > work_struct for resume requests.
>
> I thought so too, but I was wrong. ;-)
>
> If resume is requested while the suspend hasn't completed yet, we should
> queue it (it's totally valid to request a suspending device to resume IMO), but
> the delayed work is still being used by the workqueue code, so we can't modify
> it.

Where is the delayed work still being used? There's even a comment in
run_workqueue() that says a work_struct can be freed by the function it
calls.

> > We might want to do a runtime suspend even if the device's children
> > aren't already suspended. For example, you could suspend a link while
> > leaving the device on the other end of the link at full power --
> > especially if powering down the device is slow but changing the link's
> > power level is fast.
>
> Well, this means that the dependencies between devices in the device tree are
> pretty much useless for the run-time PM as far as the core is concerned. In
> which case, why did you mention them at all?

The dependencies aren't totally useless. It's still true that before
you resume a device, you have to autoresume its parent. And it's still
true that when you suspend a device, the parent should be given a
chance to autosuspend.

I guess the real point is that the decision about whether all children
must be suspended should be made by the driver, not the PM core.

> > I haven't checked the details of the code yet. More later...

One more thought... The autosuspend and autoresume callbacks need to
be mutually exclusive with probe and remove. So somehow the driver
core will need to block runtime PM calls.

It might also be nice to make sure that the driver core autoresumes a
device before probing it and autosuspends a device (after some
reasonable delay) after unbinding its driver.

Alan Stern

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/