LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] PM: Fix dependencies of CONFIG_SUSPEND and CONFIG_HIBERNATION
@ 2007-08-03 21:59 Rafael J. Wysocki
2007-08-03 22:01 ` Linus Torvalds
0 siblings, 1 reply; 6+ messages in thread
From: Rafael J. Wysocki @ 2007-08-03 21:59 UTC (permalink / raw)
To: Andrew Morton
Cc: Len Brown, Linus Torvalds, LKML, Pavel Machek, pm list, Adrian Bunk
From: Rafael J. Wysocki <rjw@sisk.pl>
Dependencies of CONFIG_SUSPEND and CONFIG_HIBERNATION introduced by commit
296699de6bdc717189a331ab6bbe90e05c94db06 "Introduce CONFIG_SUSPEND for
suspend-to-Ram and standby" are incorrect, as they don't cover the facts that
(1) not all architectures support suspend and (2) SMP hibernation is only
possible on X86 and PPC64 (if PPC64_SWSUSP is set).
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
---
kernel/power/Kconfig | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
Index: linux-2.6/kernel/power/Kconfig
===================================================================
--- linux-2.6.orig/kernel/power/Kconfig 2007-07-30 07:58:48.000000000 +0200
+++ linux-2.6/kernel/power/Kconfig 2007-08-03 23:29:57.000000000 +0200
@@ -74,7 +74,8 @@ config PM_TRACE
config SUSPEND_SMP_POSSIBLE
bool
- depends on (X86 && !X86_VOYAGER) || (PPC64 && (PPC_PSERIES || PPC_PMAC))
+ depends on (X86 && !X86_VOYAGER) \
+ || (PPC64 && (PPC_PSERIES || PPC_PMAC)) || ARM
depends on SMP
default y
@@ -92,7 +93,8 @@ config PM_SLEEP
config SUSPEND
bool "Suspend to RAM and standby"
depends on PM
- depends on !SMP || SUSPEND_SMP_POSSIBLE
+ depends on SUSPEND_SMP_POSSIBLE || ((BLACKFIN || MIPS || SUPERH || FRV \
+ || (PPC32 && PPC_MPC52xx)) && !SMP)
default y
---help---
Allow the system to enter sleep states in which main memory is
@@ -102,7 +104,8 @@ config SUSPEND
config HIBERNATION
bool "Hibernation (aka 'suspend to disk')"
depends on PM && SWAP
- depends on ((X86 || PPC64_SWSUSP || FRV || PPC32) && !SMP) || SUSPEND_SMP_POSSIBLE
+ depends on ((X86 || PPC64_SWSUSP || FRV || PPC32) && !SMP) \
+ || ((X86 || PPC64_SWSUSP) && SUSPEND_SMP_POSSIBLE)
---help---
Enable the suspend to disk (STD) functionality, which is usually
called "hibernation" in user interfaces. STD checkpoints the
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] PM: Fix dependencies of CONFIG_SUSPEND and CONFIG_HIBERNATION
2007-08-03 21:59 [PATCH] PM: Fix dependencies of CONFIG_SUSPEND and CONFIG_HIBERNATION Rafael J. Wysocki
@ 2007-08-03 22:01 ` Linus Torvalds
2007-08-03 22:47 ` Rafael J. Wysocki
0 siblings, 1 reply; 6+ messages in thread
From: Linus Torvalds @ 2007-08-03 22:01 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: Andrew Morton, Len Brown, LKML, Pavel Machek, pm list, Adrian Bunk
On Fri, 3 Aug 2007, Rafael J. Wysocki wrote:
> depends on PM
> - depends on !SMP || SUSPEND_SMP_POSSIBLE
> + depends on SUSPEND_SMP_POSSIBLE || ((BLACKFIN || MIPS || SUPERH || FRV \
> + || (PPC32 && PPC_MPC52xx)) && !SMP)
Please, do that as SUSPEND_UP_POSSIBLE, and make it look like
config SUSPEND_UP_POSSIBLE
depends on BLACKFIN || MIPS || SUPERH || FRV || ((PPC32 && PPC_MPC52xx)
depends on !SMP
default y
and now you can write the above thing as
depends on SUSPEND_SMP_POSSIBLE || SUSPEND_UP_POSSIBLE
and it's all much nicer.
I would say that doing a similar setup for HIBERNATE would be nice too,
but the SUSPEND case is more noticeable because the SMP case is so nice
already.
Linus
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] PM: Fix dependencies of CONFIG_SUSPEND and CONFIG_HIBERNATION
2007-08-03 22:01 ` Linus Torvalds
@ 2007-08-03 22:47 ` Rafael J. Wysocki
2007-08-04 3:45 ` Len Brown
0 siblings, 1 reply; 6+ messages in thread
From: Rafael J. Wysocki @ 2007-08-03 22:47 UTC (permalink / raw)
To: Linus Torvalds
Cc: Andrew Morton, Len Brown, LKML, Pavel Machek, pm list, Adrian Bunk
On Saturday, 4 August 2007 00:01, Linus Torvalds wrote:
>
> On Fri, 3 Aug 2007, Rafael J. Wysocki wrote:
> > depends on PM
> > - depends on !SMP || SUSPEND_SMP_POSSIBLE
> > + depends on SUSPEND_SMP_POSSIBLE || ((BLACKFIN || MIPS || SUPERH || FRV \
> > + || (PPC32 && PPC_MPC52xx)) && !SMP)
>
> Please, do that as SUSPEND_UP_POSSIBLE, and make it look like
>
> config SUSPEND_UP_POSSIBLE
> depends on BLACKFIN || MIPS || SUPERH || FRV || ((PPC32 && PPC_MPC52xx)
> depends on !SMP
> default y
OK
> and now you can write the above thing as
>
> depends on SUSPEND_SMP_POSSIBLE || SUSPEND_UP_POSSIBLE
>
> and it's all much nicer.
>
> I would say that doing a similar setup for HIBERNATE would be nice too,
> but the SUSPEND case is more noticeable because the SMP case is so nice
> already.
I did it symmetrically for suspend and hibernation and renamed SUSPEND_SMP to
PM_SLEEP_SMP. Patch follows.
Greetings,
Rafael
---
From: Rafael J. Wysocki <rjw@sisk.pl>
Dependencies of CONFIG_SUSPEND and CONFIG_HIBERNATION introduced by commit
296699de6bdc717189a331ab6bbe90e05c94db06 "Introduce CONFIG_SUSPEND for
suspend-to-Ram and standby" are incorrect, as they don't cover the facts that
(1) not all architectures support suspend and (2) SMP hibernation is only
possible on X86 and PPC64 (if PPC64_SWSUSP is set).
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
---
kernel/power/Kconfig | 40 ++++++++++++++++++++++++++++++----------
1 file changed, 30 insertions(+), 10 deletions(-)
Index: linux-2.6/kernel/power/Kconfig
===================================================================
--- linux-2.6.orig/kernel/power/Kconfig 2007-07-30 07:58:48.000000000 +0200
+++ linux-2.6/kernel/power/Kconfig 2007-08-04 00:39:21.000000000 +0200
@@ -72,15 +72,10 @@ config PM_TRACE
CAUTION: this option will cause your machine's real-time clock to be
set to an invalid time after a resume.
-config SUSPEND_SMP_POSSIBLE
- bool
- depends on (X86 && !X86_VOYAGER) || (PPC64 && (PPC_PSERIES || PPC_PMAC))
- depends on SMP
- default y
-
-config SUSPEND_SMP
+config PM_SLEEP_SMP
bool
- depends on SUSPEND_SMP_POSSIBLE && PM_SLEEP
+ depends on SUSPEND_SMP_POSSIBLE || HIBERNATION_SMP_POSSIBLE
+ depends on PM_SLEEP
select HOTPLUG_CPU
default y
@@ -89,20 +84,45 @@ config PM_SLEEP
depends on SUSPEND || HIBERNATION
default y
+config SUSPEND_UP_POSSIBLE
+ bool
+ depends on BLACKFIN || MIPS || SUPERH || FRV || (PPC32 && PPC_MPC52xx)
+ depends on !SMP
+ default y
+
+config SUSPEND_SMP_POSSIBLE
+ bool
+ depends on (X86 && !X86_VOYAGER) \
+ || (PPC64 && (PPC_PSERIES || PPC_PMAC)) || ARM
+ depends on SMP
+ default y
+
config SUSPEND
bool "Suspend to RAM and standby"
depends on PM
- depends on !SMP || SUSPEND_SMP_POSSIBLE
+ depends on SUSPEND_UP_POSSIBLE || SUSPEND_SMP_POSSIBLE
default y
---help---
Allow the system to enter sleep states in which main memory is
powered and thus its contents are preserved, such as the
suspend-to-RAM state (i.e. the ACPI S3 state).
+config HIBERNATION_UP_POSSIBLE
+ bool
+ depends on X86 || PPC64_SWSUSP || FRV || PPC32
+ depends on !SMP
+ default y
+
+config HIBERNATION_SMP_POSSIBLE
+ bool
+ depends on (X86 && !X86_VOYAGER) || PPC64_SWSUSP
+ depends on SMP
+ default y
+
config HIBERNATION
bool "Hibernation (aka 'suspend to disk')"
depends on PM && SWAP
- depends on ((X86 || PPC64_SWSUSP || FRV || PPC32) && !SMP) || SUSPEND_SMP_POSSIBLE
+ depends on HIBERNATION_UP_POSSIBLE || HIBERNATION_SMP_POSSIBLE
---help---
Enable the suspend to disk (STD) functionality, which is usually
called "hibernation" in user interfaces. STD checkpoints the
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] PM: Fix dependencies of CONFIG_SUSPEND and CONFIG_HIBERNATION
2007-08-03 22:47 ` Rafael J. Wysocki
@ 2007-08-04 3:45 ` Len Brown
2007-08-04 9:48 ` Rafael J. Wysocki
0 siblings, 1 reply; 6+ messages in thread
From: Len Brown @ 2007-08-04 3:45 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: Linus Torvalds, Andrew Morton, LKML, Pavel Machek, pm list, Adrian Bunk
On Friday 03 August 2007 18:47, Rafael J. Wysocki wrote:
> On Saturday, 4 August 2007 00:01, Linus Torvalds wrote:
> >
> > On Fri, 3 Aug 2007, Rafael J. Wysocki wrote:
> > > depends on PM
> > > - depends on !SMP || SUSPEND_SMP_POSSIBLE
> > > + depends on SUSPEND_SMP_POSSIBLE || ((BLACKFIN || MIPS || SUPERH || FRV \
> > > + || (PPC32 && PPC_MPC52xx)) && !SMP)
> >
> > Please, do that as SUSPEND_UP_POSSIBLE, and make it look like
> >
> > config SUSPEND_UP_POSSIBLE
> > depends on BLACKFIN || MIPS || SUPERH || FRV || ((PPC32 && PPC_MPC52xx)
> > depends on !SMP
> > default y
>
> OK
>
> > and now you can write the above thing as
> >
> > depends on SUSPEND_SMP_POSSIBLE || SUSPEND_UP_POSSIBLE
> >
> > and it's all much nicer.
> >
> > I would say that doing a similar setup for HIBERNATE would be nice too,
> > but the SUSPEND case is more noticeable because the SMP case is so nice
> > already.
>
> I did it symmetrically for suspend and hibernation and renamed SUSPEND_SMP to
> PM_SLEEP_SMP. Patch follows.
>
> Greetings,
> Rafael
>
>
> ---
> From: Rafael J. Wysocki <rjw@sisk.pl>
>
> Dependencies of CONFIG_SUSPEND and CONFIG_HIBERNATION introduced by commit
> 296699de6bdc717189a331ab6bbe90e05c94db06 "Introduce CONFIG_SUSPEND for
> suspend-to-Ram and standby" are incorrect, as they don't cover the facts that
> (1) not all architectures support suspend and (2) SMP hibernation is only
> possible on X86 and PPC64 (if PPC64_SWSUSP is set).
>
> Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
> ---
> kernel/power/Kconfig | 40 ++++++++++++++++++++++++++++++----------
> 1 file changed, 30 insertions(+), 10 deletions(-)
>
> Index: linux-2.6/kernel/power/Kconfig
> ===================================================================
> --- linux-2.6.orig/kernel/power/Kconfig 2007-07-30 07:58:48.000000000 +0200
> +++ linux-2.6/kernel/power/Kconfig 2007-08-04 00:39:21.000000000 +0200
> @@ -72,15 +72,10 @@ config PM_TRACE
> CAUTION: this option will cause your machine's real-time clock to be
> set to an invalid time after a resume.
>
> -config SUSPEND_SMP_POSSIBLE
> - bool
> - depends on (X86 && !X86_VOYAGER) || (PPC64 && (PPC_PSERIES || PPC_PMAC))
> - depends on SMP
> - default y
> -
> -config SUSPEND_SMP
> +config PM_SLEEP_SMP
> bool
> - depends on SUSPEND_SMP_POSSIBLE && PM_SLEEP
> + depends on SUSPEND_SMP_POSSIBLE || HIBERNATION_SMP_POSSIBLE
> + depends on PM_SLEEP
> select HOTPLUG_CPU
> default y
>
> @@ -89,20 +84,45 @@ config PM_SLEEP
> depends on SUSPEND || HIBERNATION
> default y
>
> +config SUSPEND_UP_POSSIBLE
> + bool
> + depends on BLACKFIN || MIPS || SUPERH || FRV || (PPC32 && PPC_MPC52xx)
please include (X86 && !X86_VOYAGER) here -- else you'll disable
SUSPEND from all X86 when built UP.
thanks,
-Len
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] PM: Fix dependencies of CONFIG_SUSPEND and CONFIG_HIBERNATION
2007-08-04 3:45 ` Len Brown
@ 2007-08-04 9:48 ` Rafael J. Wysocki
2007-08-04 22:09 ` Rafael J. Wysocki
0 siblings, 1 reply; 6+ messages in thread
From: Rafael J. Wysocki @ 2007-08-04 9:48 UTC (permalink / raw)
To: Len Brown
Cc: Linus Torvalds, Andrew Morton, LKML, Pavel Machek, pm list, Adrian Bunk
On Saturday, 4 August 2007 05:45, Len Brown wrote:
> On Friday 03 August 2007 18:47, Rafael J. Wysocki wrote:
> > On Saturday, 4 August 2007 00:01, Linus Torvalds wrote:
> > > On Fri, 3 Aug 2007, Rafael J. Wysocki wrote:
[--snip--]
> >
> > +config SUSPEND_UP_POSSIBLE
> > + bool
> > + depends on BLACKFIN || MIPS || SUPERH || FRV || (PPC32 && PPC_MPC52xx)
>
> please include (X86 && !X86_VOYAGER) here -- else you'll disable
> SUSPEND from all X86 when built UP.
Right. I think I should include everything that can do SMP suspend here.
Updated patch is appended.
Greetings,
Rafael
---
From: Rafael J. Wysocki <rjw@sisk.pl>
Dependencies of CONFIG_SUSPEND and CONFIG_HIBERNATION introduced by commit
296699de6bdc717189a331ab6bbe90e05c94db06 "Introduce CONFIG_SUSPEND for
suspend-to-Ram and standby" are incorrect, as they don't cover the facts that
(1) not all architectures support suspend and (2) SMP hibernation is only
possible on X86 and PPC64 (if PPC64_SWSUSP is set).
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
---
kernel/power/Kconfig | 42 ++++++++++++++++++++++++++++++++----------
1 file changed, 32 insertions(+), 10 deletions(-)
Index: linux-2.6/kernel/power/Kconfig
===================================================================
--- linux-2.6.orig/kernel/power/Kconfig
+++ linux-2.6/kernel/power/Kconfig
@@ -72,15 +72,10 @@ config PM_TRACE
CAUTION: this option will cause your machine's real-time clock to be
set to an invalid time after a resume.
-config SUSPEND_SMP_POSSIBLE
- bool
- depends on (X86 && !X86_VOYAGER) || (PPC64 && (PPC_PSERIES || PPC_PMAC))
- depends on SMP
- default y
-
-config SUSPEND_SMP
+config PM_SLEEP_SMP
bool
- depends on SUSPEND_SMP_POSSIBLE && PM_SLEEP
+ depends on SUSPEND_SMP_POSSIBLE || HIBERNATION_SMP_POSSIBLE
+ depends on PM_SLEEP
select HOTPLUG_CPU
default y
@@ -89,20 +84,47 @@ config PM_SLEEP
depends on SUSPEND || HIBERNATION
default y
+config SUSPEND_UP_POSSIBLE
+ bool
+ depends on (X86 && !X86_VOYAGER) || (PPC32 && PPC_MPC52xx) \
+ || (PPC64 && (PPC_PSERIES || PPC_PMAC)) || ARM || BLACKFIN \
+ || MIPS || SUPERH || FRV
+ depends on !SMP
+ default y
+
+config SUSPEND_SMP_POSSIBLE
+ bool
+ depends on (X86 && !X86_VOYAGER) \
+ || (PPC64 && (PPC_PSERIES || PPC_PMAC)) || ARM
+ depends on SMP
+ default y
+
config SUSPEND
bool "Suspend to RAM and standby"
depends on PM
- depends on !SMP || SUSPEND_SMP_POSSIBLE
+ depends on SUSPEND_UP_POSSIBLE || SUSPEND_SMP_POSSIBLE
default y
---help---
Allow the system to enter sleep states in which main memory is
powered and thus its contents are preserved, such as the
suspend-to-RAM state (i.e. the ACPI S3 state).
+config HIBERNATION_UP_POSSIBLE
+ bool
+ depends on X86 || PPC64_SWSUSP || FRV || PPC32
+ depends on !SMP
+ default y
+
+config HIBERNATION_SMP_POSSIBLE
+ bool
+ depends on (X86 && !X86_VOYAGER) || PPC64_SWSUSP
+ depends on SMP
+ default y
+
config HIBERNATION
bool "Hibernation (aka 'suspend to disk')"
depends on PM && SWAP
- depends on ((X86 || PPC64_SWSUSP || FRV || PPC32) && !SMP) || SUSPEND_SMP_POSSIBLE
+ depends on HIBERNATION_UP_POSSIBLE || HIBERNATION_SMP_POSSIBLE
---help---
Enable the suspend to disk (STD) functionality, which is usually
called "hibernation" in user interfaces. STD checkpoints the
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] PM: Fix dependencies of CONFIG_SUSPEND and CONFIG_HIBERNATION
2007-08-04 9:48 ` Rafael J. Wysocki
@ 2007-08-04 22:09 ` Rafael J. Wysocki
0 siblings, 0 replies; 6+ messages in thread
From: Rafael J. Wysocki @ 2007-08-04 22:09 UTC (permalink / raw)
To: Len Brown
Cc: Linus Torvalds, Andrew Morton, LKML, Pavel Machek, pm list, Adrian Bunk
On Saturday, 4 August 2007 11:48, Rafael J. Wysocki wrote:
> On Saturday, 4 August 2007 05:45, Len Brown wrote:
> > On Friday 03 August 2007 18:47, Rafael J. Wysocki wrote:
> > > On Saturday, 4 August 2007 00:01, Linus Torvalds wrote:
> > > > On Fri, 3 Aug 2007, Rafael J. Wysocki wrote:
> [--snip--]
> > >
> > > +config SUSPEND_UP_POSSIBLE
> > > + bool
> > > + depends on BLACKFIN || MIPS || SUPERH || FRV || (PPC32 && PPC_MPC52xx)
> >
> > please include (X86 && !X86_VOYAGER) here -- else you'll disable
> > SUSPEND from all X86 when built UP.
>
> Right. I think I should include everything that can do SMP suspend here.
>
> Updated patch is appended.
Well, unfortunately, the patch below is buggy, because I need to change
CONFIG_SUSPEND_SMP into CONFIG_PM_SLEEP_SMP in some more places.
I'll send an updated version in a new thread.
Greetings,
Rafael
> ---
> From: Rafael J. Wysocki <rjw@sisk.pl>
>
> Dependencies of CONFIG_SUSPEND and CONFIG_HIBERNATION introduced by commit
> 296699de6bdc717189a331ab6bbe90e05c94db06 "Introduce CONFIG_SUSPEND for
> suspend-to-Ram and standby" are incorrect, as they don't cover the facts that
> (1) not all architectures support suspend and (2) SMP hibernation is only
> possible on X86 and PPC64 (if PPC64_SWSUSP is set).
>
> Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
> ---
> kernel/power/Kconfig | 42 ++++++++++++++++++++++++++++++++----------
> 1 file changed, 32 insertions(+), 10 deletions(-)
>
> Index: linux-2.6/kernel/power/Kconfig
> ===================================================================
> --- linux-2.6.orig/kernel/power/Kconfig
> +++ linux-2.6/kernel/power/Kconfig
> @@ -72,15 +72,10 @@ config PM_TRACE
> CAUTION: this option will cause your machine's real-time clock to be
> set to an invalid time after a resume.
>
> -config SUSPEND_SMP_POSSIBLE
> - bool
> - depends on (X86 && !X86_VOYAGER) || (PPC64 && (PPC_PSERIES || PPC_PMAC))
> - depends on SMP
> - default y
> -
> -config SUSPEND_SMP
> +config PM_SLEEP_SMP
> bool
> - depends on SUSPEND_SMP_POSSIBLE && PM_SLEEP
> + depends on SUSPEND_SMP_POSSIBLE || HIBERNATION_SMP_POSSIBLE
> + depends on PM_SLEEP
> select HOTPLUG_CPU
> default y
>
> @@ -89,20 +84,47 @@ config PM_SLEEP
> depends on SUSPEND || HIBERNATION
> default y
>
> +config SUSPEND_UP_POSSIBLE
> + bool
> + depends on (X86 && !X86_VOYAGER) || (PPC32 && PPC_MPC52xx) \
> + || (PPC64 && (PPC_PSERIES || PPC_PMAC)) || ARM || BLACKFIN \
> + || MIPS || SUPERH || FRV
> + depends on !SMP
> + default y
> +
> +config SUSPEND_SMP_POSSIBLE
> + bool
> + depends on (X86 && !X86_VOYAGER) \
> + || (PPC64 && (PPC_PSERIES || PPC_PMAC)) || ARM
> + depends on SMP
> + default y
> +
> config SUSPEND
> bool "Suspend to RAM and standby"
> depends on PM
> - depends on !SMP || SUSPEND_SMP_POSSIBLE
> + depends on SUSPEND_UP_POSSIBLE || SUSPEND_SMP_POSSIBLE
> default y
> ---help---
> Allow the system to enter sleep states in which main memory is
> powered and thus its contents are preserved, such as the
> suspend-to-RAM state (i.e. the ACPI S3 state).
>
> +config HIBERNATION_UP_POSSIBLE
> + bool
> + depends on X86 || PPC64_SWSUSP || FRV || PPC32
> + depends on !SMP
> + default y
> +
> +config HIBERNATION_SMP_POSSIBLE
> + bool
> + depends on (X86 && !X86_VOYAGER) || PPC64_SWSUSP
> + depends on SMP
> + default y
> +
> config HIBERNATION
> bool "Hibernation (aka 'suspend to disk')"
> depends on PM && SWAP
> - depends on ((X86 || PPC64_SWSUSP || FRV || PPC32) && !SMP) || SUSPEND_SMP_POSSIBLE
> + depends on HIBERNATION_UP_POSSIBLE || HIBERNATION_SMP_POSSIBLE
> ---help---
> Enable the suspend to disk (STD) functionality, which is usually
> called "hibernation" in user interfaces. STD checkpoints the
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
>
--
"Premature optimization is the root of all evil." - Donald Knuth
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2007-08-04 22:00 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-08-03 21:59 [PATCH] PM: Fix dependencies of CONFIG_SUSPEND and CONFIG_HIBERNATION Rafael J. Wysocki
2007-08-03 22:01 ` Linus Torvalds
2007-08-03 22:47 ` Rafael J. Wysocki
2007-08-04 3:45 ` Len Brown
2007-08-04 9:48 ` Rafael J. Wysocki
2007-08-04 22:09 ` Rafael J. Wysocki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).