From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: Ingo Molnar <mingo@elte.hu>
Cc: pm list <linux-pm@lists.linux-foundation.org>,
ACPI Devel Maling List <linux-acpi@vger.kernel.org>,
Alan Stern <stern@rowland.harvard.edu>,
Andrew Morton <akpm@linux-foundation.org>,
Len Brown <lenb@kernel.org>, LKML <linux-kernel@vger.kernel.org>,
Pavel Machek <pavel@suse.cz>, Greg KH <gregkh@suse.de>
Subject: Re: [PATCH 0/4] PM: Do not destroy/create devices while suspended (rev. 2)
Date: Wed, 2 Jan 2008 13:56:58 +0100 [thread overview]
Message-ID: <200801021356.59865.rjw@sisk.pl> (raw)
In-Reply-To: <20080102105217.GA14731@elte.hu>
On Wednesday, 2 of January 2008, Ingo Molnar wrote:
>
> * Rafael J. Wysocki <rjw@sisk.pl> wrote:
>
> > Hi,
> >
> > Some device drivers register CPU hotplug notifiers and use them to
> > destroy device objects when removing the corresponding CPUs and to
> > create these objects when adding the CPUs back.
> >
> > Unfortunately, this is not the right thing to do during
> > suspend/hibernation, since in that cases the CPU hotplug notifiers are
> > called after suspending devices and before resuming them, so the
> > operations in question are carried out on the objects representing
> > suspended devices which shouldn't be unregistered behing the PM core's
> > back. Although right now it usually doesn't lead to any practical
> > complications, it will predictably deadlock if
> > gregkh-driver-pm-acquire-device-locks-prior-to-suspending.patch is
> > applied.
> >
> > The solution is to prevent drivers from removing/adding devices from
> > within CPU hotplug notifiers during suspend/hibernation using the
> > FROZEN bit in the notifier's action argument. However, this has to be
> > done with care, since the devices objects related to the nonboot CPUs
> > that failed to go online during resume should not be present in the
> > system. For this reason, it seems reasonable to introduce a mechanism
> > allowing drivers to ask the PM core to remove device objects
> > corresponding to suspended devices on their behalf.
> >
> > The first patch in the series introduces such a mechanism. The
> > remaining three patches modify the MSR, x86-64 MCE and cpuid drivers
> > in accordance with the above approach.
>
> btw., it would be really, really cool if there was a scriptable way i
> could test suspend/resume functionality.
First, there are patches queued for 2.6.25 that allow you to test various
phases of suspend (specifically, patches 09-11 in the series at
http://www.sisk.pl/kernel/hibernation_and_suspend/2.6.24-rc6/patches/).
With these patches applied you can do something like:
# echo core > /sys/power/pm_test
# echo mem > /sys/power/state
and it will run the suspend code up to, but not including, entering the sleep
state (it will busy wait for 5 sec. instead). Then, it will run the resume
code.
There are 6 testing levels available, documented in patch 11 and in the
changelogs.
Second, there's the rtc wakealarm thing that can be used to test the real
suspend.
> Pavel has this /dev/rtc thing to set up an alarm (not sure how functional it
> is) - would it be possible to have it as a "suspend for 10 seconds then
> resume" debug functionality?
Well, we have the following test script in the userland suspend package that
is supposed to work right now:
#!/bin/bash
date
cd /sys/class/rtc/rtc0
echo $(( $(cat since_epoch) + 20 )) > wakealarm
s2ram
date
provided that the new rtc driver code is compiled (and the old one is not).
> That way any suspend breakage would be detectable (and bisectable) in
> automated testing - if the resume does not come back after 10-20 seconds then
> the test failed.
Yes, but please note that some systems require user space manipulations of the
graphics adapter for suspend to work and to detect a breakage of such a system
you need to boot it into X and use s2ram to suspend.
Greetings,
Rafael
-
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: Ingo Molnar <mingo@elte.hu>
Cc: pm list <linux-pm@lists.linux-foundation.org>,
ACPI Devel Maling List <linux-acpi@vger.kernel.org>,
Alan Stern <stern@rowland.harvard.edu>,
Andrew Morton <akpm@linux-foundation.org>,
Len Brown <lenb@kernel.org>, LKML <linux-kernel@vger.kernel.org>,
Pavel Machek <pavel@suse.cz>, Greg KH <gregkh@suse.de>
Subject: Re: [PATCH 0/4] PM: Do not destroy/create devices while suspended (rev. 2)
Date: Wed, 2 Jan 2008 13:56:58 +0100 [thread overview]
Message-ID: <200801021356.59865.rjw@sisk.pl> (raw)
In-Reply-To: <20080102105217.GA14731@elte.hu>
On Wednesday, 2 of January 2008, Ingo Molnar wrote:
>
> * Rafael J. Wysocki <rjw@sisk.pl> wrote:
>
> > Hi,
> >
> > Some device drivers register CPU hotplug notifiers and use them to
> > destroy device objects when removing the corresponding CPUs and to
> > create these objects when adding the CPUs back.
> >
> > Unfortunately, this is not the right thing to do during
> > suspend/hibernation, since in that cases the CPU hotplug notifiers are
> > called after suspending devices and before resuming them, so the
> > operations in question are carried out on the objects representing
> > suspended devices which shouldn't be unregistered behing the PM core's
> > back. Although right now it usually doesn't lead to any practical
> > complications, it will predictably deadlock if
> > gregkh-driver-pm-acquire-device-locks-prior-to-suspending.patch is
> > applied.
> >
> > The solution is to prevent drivers from removing/adding devices from
> > within CPU hotplug notifiers during suspend/hibernation using the
> > FROZEN bit in the notifier's action argument. However, this has to be
> > done with care, since the devices objects related to the nonboot CPUs
> > that failed to go online during resume should not be present in the
> > system. For this reason, it seems reasonable to introduce a mechanism
> > allowing drivers to ask the PM core to remove device objects
> > corresponding to suspended devices on their behalf.
> >
> > The first patch in the series introduces such a mechanism. The
> > remaining three patches modify the MSR, x86-64 MCE and cpuid drivers
> > in accordance with the above approach.
>
> btw., it would be really, really cool if there was a scriptable way i
> could test suspend/resume functionality.
First, there are patches queued for 2.6.25 that allow you to test various
phases of suspend (specifically, patches 09-11 in the series at
http://www.sisk.pl/kernel/hibernation_and_suspend/2.6.24-rc6/patches/).
With these patches applied you can do something like:
# echo core > /sys/power/pm_test
# echo mem > /sys/power/state
and it will run the suspend code up to, but not including, entering the sleep
state (it will busy wait for 5 sec. instead). Then, it will run the resume
code.
There are 6 testing levels available, documented in patch 11 and in the
changelogs.
Second, there's the rtc wakealarm thing that can be used to test the real
suspend.
> Pavel has this /dev/rtc thing to set up an alarm (not sure how functional it
> is) - would it be possible to have it as a "suspend for 10 seconds then
> resume" debug functionality?
Well, we have the following test script in the userland suspend package that
is supposed to work right now:
#!/bin/bash
date
cd /sys/class/rtc/rtc0
echo $(( $(cat since_epoch) + 20 )) > wakealarm
s2ram
date
provided that the new rtc driver code is compiled (and the old one is not).
> That way any suspend breakage would be detectable (and bisectable) in
> automated testing - if the resume does not come back after 10-20 seconds then
> the test failed.
Yes, but please note that some systems require user space manipulations of the
graphics adapter for suspend to work and to detect a breakage of such a system
you need to boot it into X and use s2ram to suspend.
Greetings,
Rafael
next prev parent reply other threads:[~2008-01-02 12:55 UTC|newest]
Thread overview: 82+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-01 23:32 [PATCH 0/4] PM: Do not destroy/create devices while suspended (rev. 2) Rafael J. Wysocki
2008-01-01 23:32 ` Rafael J. Wysocki
2008-01-01 23:34 ` [PATCH 1/4] PM: Introduce destroy_suspended_device() Rafael J. Wysocki
2008-01-02 13:33 ` Rafael J. Wysocki
2008-01-02 13:33 ` Rafael J. Wysocki
2008-01-02 16:41 ` Alan Stern
2008-01-02 16:50 ` Rafael J. Wysocki
2008-01-02 16:50 ` Rafael J. Wysocki
2008-01-04 22:05 ` Rafael J. Wysocki
2008-01-04 22:05 ` Rafael J. Wysocki
2008-01-04 23:29 ` [RFC][PATCH] PM: Acquire device locks on suspend (was: Re: [PATCH 1/4] PM: Introduce destroy_suspended_device()) Rafael J. Wysocki
2008-01-04 23:29 ` Rafael J. Wysocki
2008-01-05 3:11 ` [PATCH 1/4] PM: Introduce destroy_suspended_device() Alan Stern
2008-01-05 11:55 ` Rafael J. Wysocki
2008-01-05 11:55 ` Rafael J. Wysocki
2008-01-05 3:11 ` Alan Stern
2008-01-02 16:41 ` Alan Stern
2008-01-01 23:34 ` Rafael J. Wysocki
2008-01-01 23:40 ` [PATCH 2/4] PM: Do not destroy/create devices while suspended in msr.c (rev. 2) Rafael J. Wysocki
2008-01-01 23:40 ` Rafael J. Wysocki
2008-01-01 23:40 ` [PATCH 3/4] PM: Do not destroy/create devices while suspended in mce_64.c Rafael J. Wysocki
2008-01-01 23:40 ` Rafael J. Wysocki
2008-01-01 23:42 ` [PATCH 4/4] PM: Do not destroy/create devices while suspended in cpuid.c Rafael J. Wysocki
2008-01-01 23:42 ` Rafael J. Wysocki
2008-01-02 10:52 ` [PATCH 0/4] PM: Do not destroy/create devices while suspended (rev. 2) Ingo Molnar
2008-01-02 10:52 ` Ingo Molnar
2008-01-02 10:52 ` Ingo Molnar
2008-01-02 12:56 ` Rafael J. Wysocki [this message]
2008-01-02 12:56 ` Rafael J. Wysocki
2008-01-02 13:15 ` Ingo Molnar
2008-01-02 13:15 ` Ingo Molnar
2008-01-02 13:28 ` Rafael J. Wysocki
2008-01-03 10:56 ` Pavel Machek
2008-01-03 10:56 ` Pavel Machek
2008-01-02 13:28 ` Rafael J. Wysocki
2008-01-02 14:55 ` Kay Sievers
2008-01-02 14:55 ` Kay Sievers
2008-01-02 16:01 ` Ingo Molnar
2008-01-02 17:54 ` David Brownell
2008-01-02 17:54 ` David Brownell
2008-01-02 17:54 ` David Brownell
2008-01-02 18:05 ` Alessandro Zummo
2008-01-02 18:05 ` Alessandro Zummo
2008-01-02 18:05 ` Alessandro Zummo
2008-01-02 18:12 ` David Brownell
2008-01-02 18:12 ` David Brownell
2008-01-02 18:34 ` Alessandro Zummo
2008-01-02 18:34 ` Alessandro Zummo
2008-01-02 18:34 ` Alessandro Zummo
2008-01-02 18:12 ` David Brownell
2008-01-02 20:14 ` Ingo Molnar
2008-01-02 20:14 ` Ingo Molnar
2008-01-02 20:29 ` David Brownell
2008-01-02 20:29 ` David Brownell
2008-01-02 16:01 ` Ingo Molnar
2008-01-02 17:26 ` David Brownell
2008-01-02 17:26 ` David Brownell
2008-01-02 17:26 ` David Brownell
2008-01-02 20:17 ` Ingo Molnar
2008-01-02 20:17 ` Ingo Molnar
2008-01-02 12:56 ` Rafael J. Wysocki
2008-01-12 0:46 ` Andrew Morton
2008-01-12 0:49 ` Andrew Morton
2008-01-12 0:49 ` Andrew Morton
2008-01-12 0:56 ` Greg KH
2008-01-12 3:11 ` Alan Stern
2008-01-12 3:11 ` Alan Stern
2008-01-12 3:11 ` Alan Stern
2008-01-12 3:15 ` Andi Kleen
2008-01-12 3:15 ` Andi Kleen
2008-01-12 3:21 ` Andrew Morton
2008-01-12 3:21 ` Andrew Morton
2008-01-12 4:29 ` Greg KH
2008-01-12 4:29 ` Greg KH
2008-01-12 11:25 ` Rafael J. Wysocki
2008-01-12 11:25 ` Rafael J. Wysocki
2008-01-12 0:56 ` Greg KH
2008-01-12 11:20 ` Rafael J. Wysocki
2008-01-12 11:20 ` Rafael J. Wysocki
2008-01-12 0:49 ` Andrew Morton
2008-01-12 0:46 ` Andrew Morton
-- strict thread matches above, loose matches on Subject: below --
2008-01-01 23:32 Rafael J. Wysocki
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=200801021356.59865.rjw@sisk.pl \
--to=rjw@sisk.pl \
--cc=akpm@linux-foundation.org \
--cc=gregkh@suse.de \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@lists.linux-foundation.org \
--cc=mingo@elte.hu \
--cc=pavel@suse.cz \
--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 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.