From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: Alan Stern <stern@rowland.harvard.edu>
Cc: Oliver Neukum <oliver@neukum.org>,
"Linux-pm mailing list" <linux-pm@lists.linux-foundation.org>,
ACPI Devel Maling List <linux-acpi@vger.kernel.org>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [patch update] Re: [linux-pm] Run-time PM idea (was: Re: [RFC][PATCH 0/2] PM: Rearrange core suspend code)
Date: Sat, 13 Jun 2009 01:06:57 +0200 [thread overview]
Message-ID: <200906130106.58464.rjw@sisk.pl> (raw)
In-Reply-To: <Pine.LNX.4.44L0.0906121706180.5018-100000@iolanthe.rowland.org>
On Friday 12 June 2009, Alan Stern wrote:
> On Fri, 12 Jun 2009, Rafael J. Wysocki wrote:
>
> > On Friday 12 June 2009, Alan Stern wrote:
> > > On Fri, 12 Jun 2009, Rafael J. Wysocki wrote:
> > >
> > > > So, are you suggesting that the core should only check the "all children
> > > > suspended" condition if special flag is set in dev_pm_info?
> > >
> > > Or rather, check it only if the special flag _isn't_ set.
> >
> > Where the default is unset, I guess?
>
> Yep.
>
> > But then, what about the resuming of the parents before the device is resumed?
> > Should the parents be resumed regardless of the flag state?
>
> Yes. In general you should assume a device's parent (and the device
> itself!) needs to be resumed whenever the kernel wants to do something
> with the device. The special flag arises because sometimes it's safe
> to suspend the parent without suspending the device _if_ the kernel
> isn't using the device.
>
> Imagine an idle disk at the end of a link. We might want to
> autosuspend the link without spinning down the disk. When we have to
> communicate with the disk again, we autoresume the link. (Including
> the case where the communication is a "spin-down" command.)
>
> > And if so, what's
> > the condition for breaking the recurrence? Surely it's not sufficient to check
> > if the parent is active, because its parent need not be active if it has this
> > special flag set.
>
> That's a good question. Let's assume that situations like this will be
> handled by the drivers.
>
> For example, suppose A is the parent of B is the parent of C, and A is
> suspended but B isn't and C is. What happens when somebody wants to
> use C?
>
> An autoresume request is generated for C. Since C's parent is already
> resumed, the runtime_resume method in C's driver is called. The driver
> has to do some I/O in order to resume C, so it passes an I/O request up
> to B's driver. The request then gets passed up to A's driver. This
> driver knows that A is suspended, so it starts an autoresume of A and
> waits for the autoresume to complete before carrying out the request.
>
> Then the I/O can go through, so C gets resumed and everything works
> out.
>
> I don't know how often this sort of pattern will arise. It certainly
> could be used in usb-storage; there would be no difficulty starting an
> autoresume when an I/O request arrives from the SCSI layer below. In
> fact, that is exactly how some early runtime-PM patches for usb-storage
> worked.
So, the conclusion seems to be that we should break the recurrence
at the point we find an already active device or a device with no parent and
let the driver(s) handle the more complicated cases. Is this correct?
BTW, is __device_release_driver() the right place for blocking the run-time PM
temporarily during remove?
Best,
Rafael
next prev parent reply other threads:[~2009-06-12 23:06 UTC|newest]
Thread overview: 88+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-06 22:54 [RFC][PATCH 0/2] PM: Rearrange core suspend code Rafael J. Wysocki
2009-06-06 22:55 ` [RFC][PATCH 1/2] PM: Separate suspend to RAM functionality from core Rafael J. Wysocki
2009-06-08 6:36 ` Pavel Machek
2009-06-06 22:56 ` [RFC][PATCH 2/2] PM/Hibernate: Rename disk.c to hibernate.c Rafael J. Wysocki
2009-06-08 6:37 ` Pavel Machek
2009-06-07 20:51 ` [linux-pm] [RFC][PATCH 0/2] PM: Rearrange core suspend code Alan Stern
2009-06-07 21:46 ` Run-time PM idea (was: Re: [linux-pm] [RFC][PATCH 0/2] PM: Rearrange core suspend code) Rafael J. Wysocki
2009-06-07 22:02 ` Oliver Neukum
2009-06-07 22:05 ` [linux-pm] Run-time PM idea (was: " Oliver Neukum
2009-06-08 11:29 ` Rafael J. Wysocki
2009-06-08 12:04 ` Oliver Neukum
2009-06-08 18:34 ` Rafael J. Wysocki
2009-06-09 7:25 ` Oliver Neukum
2009-06-09 14:33 ` Alan Stern
2009-06-09 14:48 ` Oliver Neukum
2009-06-09 22:44 ` Rafael J. Wysocki
2009-06-08 20:35 ` Alan Stern
2009-06-08 21:31 ` Rafael J. Wysocki
2009-06-09 2:49 ` Alan Stern
2009-06-09 22:57 ` Rafael J. Wysocki
2009-06-10 8:29 ` [patch update] " Rafael J. Wysocki
2009-06-10 14:20 ` Oliver Neukum
2009-06-10 19:27 ` Rafael J. Wysocki
2009-06-10 21:38 ` Oliver Neukum
2009-06-10 22:01 ` Rafael J. Wysocki
2009-06-10 23:07 ` Oliver Neukum
2009-06-10 23:42 ` Alan Stern
2009-06-11 13:48 ` Rafael J. Wysocki
2009-06-11 13:57 ` Oliver Neukum
2009-06-11 14:16 ` Alan Stern
2009-06-11 19:38 ` Rafael J. Wysocki
2009-06-11 13:46 ` Rafael J. Wysocki
2009-06-10 21:14 ` Alan Stern
2009-06-10 21:31 ` Rafael J. Wysocki
2009-06-10 23:15 ` Oliver Neukum
2009-06-11 5:27 ` Magnus Damm
2009-06-10 23:42 ` Alan Stern
2009-06-11 14:17 ` Rafael J. Wysocki
2009-06-11 14:52 ` Alan Stern
2009-06-11 15:06 ` Oliver Neukum
2009-06-11 15:22 ` Alan Stern
2009-06-11 16:05 ` Oliver Neukum
2009-06-11 18:36 ` Alan Stern
2009-06-11 21:05 ` Oliver Neukum
2009-06-12 2:16 ` Alan Stern
2009-06-12 8:15 ` Oliver Neukum
2009-06-12 14:32 ` Alan Stern
2009-06-12 19:09 ` Rafael J. Wysocki
2009-06-12 19:48 ` Alan Stern
2009-06-12 19:56 ` Rafael J. Wysocki
2009-06-12 21:23 ` Alan Stern
2009-06-12 23:06 ` Rafael J. Wysocki [this message]
2009-06-13 18:08 ` Alan Stern
2009-06-13 22:04 ` Rafael J. Wysocki
2009-06-11 19:43 ` Rafael J. Wysocki
2009-06-12 14:25 ` Alan Stern
2009-06-11 5:18 ` Magnus Damm
2009-06-11 9:08 ` Oliver Neukum
2009-06-12 3:13 ` Magnus Damm
2009-06-12 8:11 ` Oliver Neukum
2009-06-12 10:54 ` Magnus Damm
2009-06-10 20:48 ` Alan Stern
2009-06-10 21:15 ` Rafael J. Wysocki
2009-06-09 7:31 ` Oliver Neukum
2009-06-09 23:02 ` Rafael J. Wysocki
2009-06-08 6:54 ` Run-time PM idea (was: Re: [linux-pm] " Ingo Molnar
2009-06-08 11:30 ` Rafael J. Wysocki
2009-06-08 13:05 ` Ingo Molnar
2009-06-08 13:11 ` Matthew Garrett
2009-06-08 13:22 ` Ingo Molnar
2009-06-08 13:32 ` Matthew Garrett
2009-06-08 13:46 ` Ingo Molnar
2009-06-08 13:54 ` Matthew Garrett
2009-06-08 14:24 ` Ingo Molnar
2009-06-08 14:35 ` Matthew Garrett
2009-06-08 14:44 ` Ingo Molnar
2009-06-08 14:51 ` Matthew Garrett
2009-06-24 15:03 ` Pavel Machek
2009-06-19 1:50 ` Run-time PM idea (was: " Robert Hancock
2009-06-08 13:58 ` Run-time PM idea (was: Re: [linux-pm] " Oliver Neukum
2009-06-08 13:39 ` Oliver Neukum
2009-06-08 13:44 ` Matthew Garrett
2009-06-08 14:21 ` Ingo Molnar
2009-06-08 14:30 ` Matthew Garrett
2009-06-08 15:06 ` Ingo Molnar
2009-06-08 15:11 ` Matthew Garrett
2009-06-08 16:29 ` Ray Lee
2009-06-09 22:44 ` Jiri Kosina
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200906130106.58464.rjw@sisk.pl \
--to=rjw@sisk.pl \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@lists.linux-foundation.org \
--cc=oliver@neukum.org \
--cc=stern@rowland.harvard.edu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox