All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RFC 0/1] PM / Hibernate: no kernel_power_off when pm_power_off
@ 2014-03-20 20:53 Sebastian Capella
  2014-03-20 20:53 ` [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL Sebastian Capella
  0 siblings, 1 reply; 15+ messages in thread
From: Sebastian Capella @ 2014-03-20 20:53 UTC (permalink / raw)
  To: linux-kernel, linux-pm, linaro-kernel

Patch to avoid calling kernel_power_off when pm_power_off is null.
When pm_power_off is null, the platform will not power off in
kernel_power_off.  Currently, hibernate will call kernel_power_off and
then move on to kernel_halt.  However, this calls the notifier chain
twice with a different parameter.  In kernel/reboot.c, this is avoided
by checking if pm_power_off is NULL and bypassing kernel_power_off.

Mostly, this is a check if anyone is dependent on having the reboot
notifier called 2x if pm_power_off is null.  There are some panics if
it's called this way in some drivers.

Tested this on omap beaglebone black, but have not tried on other
hardware.  Please let me know if you can test this on another platform
and the results.

Thanks,

Sebastian

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

* [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL
  2014-03-20 20:53 [PATCH RFC 0/1] PM / Hibernate: no kernel_power_off when pm_power_off Sebastian Capella
@ 2014-03-20 20:53 ` Sebastian Capella
  2014-03-20 21:23   ` Pavel Machek
  0 siblings, 1 reply; 15+ messages in thread
From: Sebastian Capella @ 2014-03-20 20:53 UTC (permalink / raw)
  To: linux-kernel, linux-pm, linaro-kernel
  Cc: Sebastian Capella, Len Brown, Pavel Machek, Rafael J. Wysocki

Reboot logic in kernel/reboot will avoid calling kernel_power_off
when pm_power_off is null, and instead uses kernel_halt.  Change
hibernate's power_down to follow the behavior in the reboot call.

Calling the notifier twice (once for SYS_POWER_OFF and again for
SYS_HALT) causes a panic during hibernation on Kirkwood
Openblocks A6 board.

Signed-off-by: Sebastian Capella <sebastian.capella@linaro.org>
Reported-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
Cc: Len Brown <len.brown@intel.com>
Cc: Pavel Machek <pavel@ucw.cz>
Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
---
 kernel/power/hibernate.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
index 37170d4..6a278dc 100644
--- a/kernel/power/hibernate.c
+++ b/kernel/power/hibernate.c
@@ -595,7 +595,8 @@ static void power_down(void)
 	case HIBERNATION_PLATFORM:
 		hibernation_platform_enter();
 	case HIBERNATION_SHUTDOWN:
-		kernel_power_off();
+		if (pm_power_off)
+			kernel_power_off();
 		break;
 #ifdef CONFIG_SUSPEND
 	case HIBERNATION_SUSPEND:
-- 
1.7.9.5


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

* Re: [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL
  2014-03-20 20:53 ` [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL Sebastian Capella
@ 2014-03-20 21:23   ` Pavel Machek
  2014-03-20 21:35     ` One Thousand Gnomes
  0 siblings, 1 reply; 15+ messages in thread
From: Pavel Machek @ 2014-03-20 21:23 UTC (permalink / raw)
  To: Sebastian Capella
  Cc: linux-kernel, linux-pm, linaro-kernel, Len Brown, Rafael J. Wysocki

Hi!

> Reboot logic in kernel/reboot will avoid calling kernel_power_off
> when pm_power_off is null, and instead uses kernel_halt.  Change
> hibernate's power_down to follow the behavior in the reboot call.
> 
> Calling the notifier twice (once for SYS_POWER_OFF and again for
> SYS_HALT) causes a panic during hibernation on Kirkwood
> Openblocks A6 board.

I can't say I like this patch.

kernel_power_off should work with pm_power_off == NULL, see for
example x86.

static void native_machine_power_off(void)
{
        if (pm_power_off) {
                if (!reboot_force)
			machine_shutdown();
                pm_power_off();
        }
        /* A fallback in case there is no PM info available */
        tboot_shutdown(TB_SHUTDOWN_HALT);
}

. arch/arm/process.c implementation is strange:

void machine_halt(void)
{
        local_irq_disable();
	smp_send_stop();

        local_irq_disable();
        while (1);
}

## Why second disable?

/*                                                                                                 
 * Power-off simply requires that the secondary CPUs stop performing
 any                           
 * activity (executing tasks, handling interrupts). smp_send_stop()                                
 * achieves this. When the system power is turned off, it will take
 all CPUs                       
 * with it.                                                                                        
 */
void machine_power_off(void)
{
	local_irq_disable();
        smp_send_stop();

	if (pm_power_off)
                pm_power_off();
}

## It really should do while (1) here.
   
									Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

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

* Re: [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL
  2014-03-20 21:23   ` Pavel Machek
@ 2014-03-20 21:35     ` One Thousand Gnomes
  2014-03-20 21:36       ` Sebastian Capella
  0 siblings, 1 reply; 15+ messages in thread
From: One Thousand Gnomes @ 2014-03-20 21:35 UTC (permalink / raw)
  To: Pavel Machek
  Cc: Sebastian Capella, linux-kernel, linux-pm, linaro-kernel,
	Len Brown, Rafael J. Wysocki

> 	if (pm_power_off)
>                 pm_power_off();
> }
> 
> ## It really should do while (1) here.

	while(1)
		cpu_relax();

or similar at minimum.

Alan

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

* Re: [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL
  2014-03-20 21:35     ` One Thousand Gnomes
@ 2014-03-20 21:36       ` Sebastian Capella
  2014-03-26 17:22         ` Sebastian Capella
  0 siblings, 1 reply; 15+ messages in thread
From: Sebastian Capella @ 2014-03-20 21:36 UTC (permalink / raw)
  To: One Thousand Gnomes
  Cc: Pavel Machek, Linux Kernel, linux-pm, linaro-kernel, Len Brown,
	Rafael J. Wysocki

Thanks Pavel and Alan for your comments!

I'll rework and try again.

Sebastian

On 20 March 2014 14:35, One Thousand Gnomes <gnomes@lxorguk.ukuu.org.uk> wrote:
>>       if (pm_power_off)
>>                 pm_power_off();
>> }
>>
>> ## It really should do while (1) here.
>
>         while(1)
>                 cpu_relax();
>
> or similar at minimum.
>
> Alan

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

* Re: [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL
  2014-03-20 21:36       ` Sebastian Capella
@ 2014-03-26 17:22         ` Sebastian Capella
  2014-04-15 18:34           ` Sebastian Capella
  0 siblings, 1 reply; 15+ messages in thread
From: Sebastian Capella @ 2014-03-26 17:22 UTC (permalink / raw)
  To: One Thousand Gnomes
  Cc: Pavel Machek, Linux Kernel, linux-pm, linaro-kernel, Len Brown,
	Rafael J. Wysocki, Russell King, Ezequiel Garcia

> On 20 March 2014 14:35, One Thousand Gnomes <gnomes@lxorguk.ukuu.org.uk> wrote:
>>>       if (pm_power_off)
>>>                 pm_power_off();
>>> ## It really should do while (1) here.
>>         while(1)
>>                 cpu_relax();
>> or similar at minimum.

Hi Alan, Pavel,

I prepared the changes suggested for ARM, but Russell disagrees that
this code must block, and points to the kernel/reboot.c function from
which I'd taken the original change.

> On Mar 26, Russell King - ARM Linux wrote:
>> I don't see why we should make this change.  kernel/reboot.c handles
>> this function returning, so other places should do too.
>> Even on x86, this function can return:
>>
>> Therefore, I'd say... it's a bug in the hibernation code - or we probably
>> have many buggy architectures.  I'd suggest fixing the hibernation code
>> rather than stuffing some workaround like an endless loop into every
>> architecture.

In this case, the hibernation code would need to changed prevent
calling both sets of notifiers.

The discussions are very short, but the details are here:

https://lkml.org/lkml/2014/3/25/554  -- linux-arm discussion
https://lkml.org/lkml/2014/3/20/649  -- linux-pm discussion

It doesn't appear definitive that the machine_power_off should block,
since the reboot call is working around the possibility.

If we go the route Russell proposes, the change would basically be
this patch.  Are you ok with me trying to adjust the hibernation
handling here?  Do you have any further thoughts on this?

Thanks!

Sebastian

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

* Re: [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL
  2014-03-26 17:22         ` Sebastian Capella
@ 2014-04-15 18:34           ` Sebastian Capella
  2014-04-15 20:54             ` Russell King - ARM Linux
  0 siblings, 1 reply; 15+ messages in thread
From: Sebastian Capella @ 2014-04-15 18:34 UTC (permalink / raw)
  To: One Thousand Gnomes
  Cc: Pavel Machek, Linux Kernel, linux-pm, linaro-kernel, Len Brown,
	Rafael J. Wysocki, Russell King, Ezequiel Garcia

Ping..

There appears to be disagreement on the correct path to take on this.

Pavel and Alan recommend that arm's machine_power_off shall never return

Russell suggests hibernation be modified to handle machine_power_off
returning; that x86 architecture (and others as well) can have
machine_power_off returning.

Discussions available at the links below:
https://lkml.org/lkml/2014/3/25/554  -- linux-arm discussion
https://lkml.org/lkml/2014/3/20/649  -- linux-pm discussion

Should I continue with the original hibernation patch from the
linux-pm discussion?

Does anyone have any response to Russel's commentsl?

Thanks!

Sebastian

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

* Re: [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL
  2014-04-15 18:34           ` Sebastian Capella
@ 2014-04-15 20:54             ` Russell King - ARM Linux
  2014-04-15 21:18               ` Pavel Machek
  0 siblings, 1 reply; 15+ messages in thread
From: Russell King - ARM Linux @ 2014-04-15 20:54 UTC (permalink / raw)
  To: Sebastian Capella
  Cc: One Thousand Gnomes, Pavel Machek, Linux Kernel, linux-pm,
	linaro-kernel, Len Brown, Rafael J. Wysocki, Ezequiel Garcia

On Tue, Apr 15, 2014 at 11:34:52AM -0700, Sebastian Capella wrote:
> Ping..
> 
> There appears to be disagreement on the correct path to take on this.
> 
> Pavel and Alan recommend that arm's machine_power_off shall never return
> 
> Russell suggests hibernation be modified to handle machine_power_off
> returning; that x86 architecture (and others as well) can have
> machine_power_off returning.
> 
> Discussions available at the links below:
> https://lkml.org/lkml/2014/3/25/554  -- linux-arm discussion
> https://lkml.org/lkml/2014/3/20/649  -- linux-pm discussion
> 
> Should I continue with the original hibernation patch from the
> linux-pm discussion?
> 
> Does anyone have any response to Russel's commentsl?

What I'm basically saying is that I see no reason for ARM to do something
different to what x86 does.

What is pretty clear to me is that ARM is compatible with x86, which is
compatible with kernel/reboot.c, and it's the hibernate code which is
the odd one out.

-- 
FTTC broadband for 0.8mile line: now at 9.7Mbps down 460kbps up... slowly
improving, and getting towards what was expected from it.

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

* Re: [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL
  2014-04-15 20:54             ` Russell King - ARM Linux
@ 2014-04-15 21:18               ` Pavel Machek
  2014-04-16 16:28                 ` Sebastian Capella
  0 siblings, 1 reply; 15+ messages in thread
From: Pavel Machek @ 2014-04-15 21:18 UTC (permalink / raw)
  To: Russell King - ARM Linux
  Cc: Sebastian Capella, One Thousand Gnomes, Linux Kernel, linux-pm,
	linaro-kernel, Len Brown, Rafael J. Wysocki, Ezequiel Garcia

On Tue 2014-04-15 21:54:53, Russell King - ARM Linux wrote:
> On Tue, Apr 15, 2014 at 11:34:52AM -0700, Sebastian Capella wrote:
> > Ping..
> > 
> > There appears to be disagreement on the correct path to take on this.
> > 
> > Pavel and Alan recommend that arm's machine_power_off shall never return
> > 
> > Russell suggests hibernation be modified to handle machine_power_off
> > returning; that x86 architecture (and others as well) can have
> > machine_power_off returning.
> > 
> > Discussions available at the links below:
> > https://lkml.org/lkml/2014/3/25/554  -- linux-arm discussion
> > https://lkml.org/lkml/2014/3/20/649  -- linux-pm discussion
> > 
> > Should I continue with the original hibernation patch from the
> > linux-pm discussion?
> > 
> > Does anyone have any response to Russel's commentsl?
> 
> What I'm basically saying is that I see no reason for ARM to do something
> different to what x86 does.
> 
> What is pretty clear to me is that ARM is compatible with x86, which is
> compatible with kernel/reboot.c, and it's the hibernate code which is
> the odd one out.

I'm pretty sure the original code did not return. Anyway, the best
solution, given how many platforms are out there, would be to

a) document that it should not return

b) fix hibernation to handle the returning case, anyway.

									Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

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

* Re: [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL
  2014-04-15 21:18               ` Pavel Machek
@ 2014-04-16 16:28                 ` Sebastian Capella
  2014-04-16 20:41                   ` Russell King - ARM Linux
  0 siblings, 1 reply; 15+ messages in thread
From: Sebastian Capella @ 2014-04-16 16:28 UTC (permalink / raw)
  To: Pavel Machek
  Cc: Russell King - ARM Linux, One Thousand Gnomes, Linux Kernel,
	linux-pm, linaro-kernel, Len Brown, Rafael J. Wysocki,
	Ezequiel Garcia

On 15 April 2014 14:18, Pavel Machek <pavel@ucw.cz> wrote:
> On Tue 2014-04-15 21:54:53, Russell King - ARM Linux wrote:
>> What I'm basically saying is that I see no reason for ARM to do something
>> different to what x86 does.
>>
>> What is pretty clear to me is that ARM is compatible with x86, which is
>> compatible with kernel/reboot.c, and it's the hibernate code which is
>> the odd one out.
>
> I'm pretty sure the original code did not return. Anyway, the best
> solution, given how many platforms are out there, would be to
>
> a) document that it should not return
>
> b) fix hibernation to handle the returning case, anyway.

Thanks Russell and Pavel!

This sounds fine to me.  Any objections?

Thanks!

Sebastian

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

* Re: [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL
  2014-04-16 16:28                 ` Sebastian Capella
@ 2014-04-16 20:41                   ` Russell King - ARM Linux
  2014-04-16 20:57                     ` One Thousand Gnomes
  0 siblings, 1 reply; 15+ messages in thread
From: Russell King - ARM Linux @ 2014-04-16 20:41 UTC (permalink / raw)
  To: Sebastian Capella
  Cc: Pavel Machek, One Thousand Gnomes, Linux Kernel, linux-pm,
	linaro-kernel, Len Brown, Rafael J. Wysocki, Ezequiel Garcia

On Wed, Apr 16, 2014 at 09:28:28AM -0700, Sebastian Capella wrote:
> On 15 April 2014 14:18, Pavel Machek <pavel@ucw.cz> wrote:
> > On Tue 2014-04-15 21:54:53, Russell King - ARM Linux wrote:
> >> What I'm basically saying is that I see no reason for ARM to do something
> >> different to what x86 does.
> >>
> >> What is pretty clear to me is that ARM is compatible with x86, which is
> >> compatible with kernel/reboot.c, and it's the hibernate code which is
> >> the odd one out.
> >
> > I'm pretty sure the original code did not return. Anyway, the best
> > solution, given how many platforms are out there, would be to
> >
> > a) document that it should not return
> >
> > b) fix hibernation to handle the returning case, anyway.
> 
> Thanks Russell and Pavel!
> 
> This sounds fine to me.  Any objections?

Here is the i386 code from 2.2.20:

void machine_halt(void)
{
}

void machine_power_off(void)
{
        if (acpi_power_off)
                acpi_power_off();
}

Both can return.  On the other hand, machine_restart() can never return as
the final attempt to perform that action in machine_real_restart is a jump
to 16-bit code.

2.4 kernels then modified it to this:

void machine_halt(void)
{
}

void machine_power_off(void)
{
        if (pm_power_off)
                pm_power_off();
}

with machine_restart() doing similar to v2.2.

2.6.0 also did the same as 2.4 kernels.  2.6.16 then changed to this:

void machine_restart(char * __unused)
{
        machine_shutdown();
        machine_emergency_restart();
}

void machine_halt(void)
{
}

void machine_power_off(void)
{
        if (pm_power_off) {
                machine_shutdown();
                pm_power_off();
        }
}

which starts adding some extra stuff into the power off hook - but
again, it's a no-op unless the pm_power_off function pointer is
initialised.

Today, it's:

void machine_power_off(void)
{
        machine_ops.power_off();
}

which calls native_power_off():

static void native_machine_power_off(void)
{
        if (pm_power_off) {
                if (!reboot_force)
                        machine_shutdown();
                pm_power_off();
        }
        /* A fallback in case there is no PM info available */
        tboot_shutdown(TB_SHUTDOWN_HALT);
}

and tboot_shutdown():

void tboot_shutdown(u32 shutdown_type)
{
        void (*shutdown)(void);

        if (!tboot_enabled())
                return;

so it's entirely possible today for machine_power_off() on x86 to return.

So... the i386 code has had this "machine_power_off() can return"
behaviour for a significant number of years and persists to this day.

I'd say scrap (a) _unless_ we're going to add while (1) loops to all
the architectures.  Alternatively, we could just accept that
machine_power_off() may return and deal with that case (iow, not
crash) in generic code.

-- 
FTTC broadband for 0.8mile line: now at 9.7Mbps down 460kbps up... slowly
improving, and getting towards what was expected from it.

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

* Re: [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL
  2014-04-16 20:41                   ` Russell King - ARM Linux
@ 2014-04-16 20:57                     ` One Thousand Gnomes
  2014-04-16 21:09                       ` Russell King - ARM Linux
  0 siblings, 1 reply; 15+ messages in thread
From: One Thousand Gnomes @ 2014-04-16 20:57 UTC (permalink / raw)
  To: Russell King - ARM Linux
  Cc: Sebastian Capella, Pavel Machek, Linux Kernel, linux-pm,
	linaro-kernel, Len Brown, Rafael J. Wysocki, Ezequiel Garcia

> I'd say scrap (a) _unless_ we're going to add while (1) loops to all
> the architectures.  Alternatively, we could just accept that
> machine_power_off() may return and deal with that case (iow, not
> crash) in generic code.

What would the right behaviour be

while(1);

isn't really nice behaviour on a modern device 

 

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

* Re: [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL
  2014-04-16 20:57                     ` One Thousand Gnomes
@ 2014-04-16 21:09                       ` Russell King - ARM Linux
  2014-04-18 21:38                         ` Sebastian Capella
  0 siblings, 1 reply; 15+ messages in thread
From: Russell King - ARM Linux @ 2014-04-16 21:09 UTC (permalink / raw)
  To: One Thousand Gnomes
  Cc: Sebastian Capella, Pavel Machek, Linux Kernel, linux-pm,
	linaro-kernel, Len Brown, Rafael J. Wysocki, Ezequiel Garcia

On Wed, Apr 16, 2014 at 09:57:18PM +0100, One Thousand Gnomes wrote:
> > I'd say scrap (a) _unless_ we're going to add while (1) loops to all
> > the architectures.  Alternatively, we could just accept that
> > machine_power_off() may return and deal with that case (iow, not
> > crash) in generic code.
> 
> What would the right behaviour be
> 
> while(1);
> 
> isn't really nice behaviour on a modern device 

That's an entirely different question... one which also needs fixing
in the hibernate code.  We already know that cpu_relax() in there is
a good thing to do, so that would be a good start.

-- 
FTTC broadband for 0.8mile line: now at 9.7Mbps down 460kbps up... slowly
improving, and getting towards what was expected from it.

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

* Re: [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL
  2014-04-16 21:09                       ` Russell King - ARM Linux
@ 2014-04-18 21:38                         ` Sebastian Capella
  2014-04-20 14:06                           ` Pavel Machek
  0 siblings, 1 reply; 15+ messages in thread
From: Sebastian Capella @ 2014-04-18 21:38 UTC (permalink / raw)
  To: Russell King - ARM Linux
  Cc: One Thousand Gnomes, Pavel Machek, Linux Kernel, linux-pm,
	linaro-kernel, Len Brown, Rafael J. Wysocki, Ezequiel Garcia

Thanks Russell, Alan!

So we're OK with the current patch + replacing while(1) after
kernel_halt at the end of power_down in hibernate.c with a while (1)
cpu_relax()?

Any other changes needed?

If not, I'll send a follow up patch with just these.

Thanks!

Sebastian

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

* Re: [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL
  2014-04-18 21:38                         ` Sebastian Capella
@ 2014-04-20 14:06                           ` Pavel Machek
  0 siblings, 0 replies; 15+ messages in thread
From: Pavel Machek @ 2014-04-20 14:06 UTC (permalink / raw)
  To: Sebastian Capella
  Cc: Russell King - ARM Linux, One Thousand Gnomes, Linux Kernel,
	linux-pm, linaro-kernel, Len Brown, Rafael J. Wysocki,
	Ezequiel Garcia

On Fri 2014-04-18 14:38:34, Sebastian Capella wrote:
> Thanks Russell, Alan!
> 
> So we're OK with the current patch + replacing while(1) after
> kernel_halt at the end of power_down in hibernate.c with a while (1)
> cpu_relax()?
> 
> Any other changes needed?
> 
> If not, I'll send a follow up patch with just these.

That sounds like a plan. Thanks.
									Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

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

end of thread, other threads:[~2014-04-20 14:06 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-20 20:53 [PATCH RFC 0/1] PM / Hibernate: no kernel_power_off when pm_power_off Sebastian Capella
2014-03-20 20:53 ` [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL Sebastian Capella
2014-03-20 21:23   ` Pavel Machek
2014-03-20 21:35     ` One Thousand Gnomes
2014-03-20 21:36       ` Sebastian Capella
2014-03-26 17:22         ` Sebastian Capella
2014-04-15 18:34           ` Sebastian Capella
2014-04-15 20:54             ` Russell King - ARM Linux
2014-04-15 21:18               ` Pavel Machek
2014-04-16 16:28                 ` Sebastian Capella
2014-04-16 20:41                   ` Russell King - ARM Linux
2014-04-16 20:57                     ` One Thousand Gnomes
2014-04-16 21:09                       ` Russell King - ARM Linux
2014-04-18 21:38                         ` Sebastian Capella
2014-04-20 14:06                           ` Pavel Machek

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.