]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
x86: trim ACPI sleep stack buffer
authorMatt Mackall <mpm@selenic.com>
Thu, 9 Oct 2008 16:56:21 +0000 (11:56 -0500)
committerLen 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

index 29cf3403abef86d7d5ae978ff8da59b74c9df042..55d10cbe65b14bfa1863b6c9c7ba271e67a62289 100644 (file)
@@ -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
 
 /**