Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5000cadc authored by Matt Mackall's avatar Matt Mackall Committed by Len Brown
Browse files

x86: trim ACPI sleep stack buffer



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: default avatarMatt Mackall <mpm@selenic.com>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent d0d0f743
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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

/**