projects
/
kernel
/
kernel-generic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d0d0f74
)
x86: trim ACPI sleep stack buffer
author
Matt Mackall
<mpm@selenic.com>
Thu, 9 Oct 2008 16:56:21 +0000
(11:56 -0500)
committer
Len Brown
<len.brown@intel.com>
Fri, 10 Oct 2008 22:05:52 +0000
(18:05 -0400)
x86_64 SMP suspend to RAM uses a 10k temporary stack for saving the
kernel state, but only 4k of it is used. Shrink it to 4k.
Signed-off-by: Matt Mackall <mpm@selenic.com>
Signed-off-by: Len Brown <len.brown@intel.com>
arch/x86/kernel/acpi/sleep.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/acpi/sleep.c
b/arch/x86/kernel/acpi/sleep.c
index
29cf340
..
55d10cb
100644
(file)
--- a/
arch/x86/kernel/acpi/sleep.c
+++ b/
arch/x86/kernel/acpi/sleep.c
@@
-21,7
+21,7
@@
unsigned long acpi_realmode_flags;
static unsigned long acpi_realmode;
#if defined(CONFIG_SMP) && defined(CONFIG_64BIT)
-static char temp_stack[
10240
];
+static char temp_stack[
4096
];
#endif
/**