Skip to content

Commit ef0f3ed

Browse files
jpoimboeIngo Molnar
authored andcommitted
x86/asm/power: Create stack frames in hibernate_asm_64.S
swsusp_arch_suspend() and restore_registers() are callable non-leaf functions which don't honor CONFIG_FRAME_POINTER, which can result in bad stack traces. Also they aren't annotated as ELF callable functions which can confuse tooling. Create a stack frame for them when CONFIG_FRAME_POINTER is enabled and give them proper ELF function annotations. Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com> Reviewed-by: Borislav Petkov <bp@suse.de> Acked-by: Pavel Machek <pavel@ucw.cz> Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Andy Lutomirski <luto@amacapital.net> Cc: Andy Lutomirski <luto@kernel.org> Cc: Arnaldo Carvalho de Melo <acme@kernel.org> Cc: Bernd Petrovitsch <bernd@petrovitsch.priv.at> Cc: Borislav Petkov <bp@alien8.de> Cc: Brian Gerst <brgerst@gmail.com> Cc: Chris J Arges <chris.j.arges@canonical.com> Cc: Denys Vlasenko <dvlasenk@redhat.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Jiri Slaby <jslaby@suse.cz> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Michal Marek <mmarek@suse.cz> Cc: Namhyung Kim <namhyung@gmail.com> Cc: Pedro Alves <palves@redhat.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: live-patching@vger.kernel.org Link: http://lkml.kernel.org/r/bdad00205897dc707aebe9e9e39757085e2bf999.1453405861.git.jpoimboe@redhat.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
1 parent 779c433 commit ef0f3ed

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

arch/x86/power/hibernate_asm_64.S

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@
2121
#include <asm/page_types.h>
2222
#include <asm/asm-offsets.h>
2323
#include <asm/processor-flags.h>
24+
#include <asm/frame.h>
2425

2526
ENTRY(swsusp_arch_suspend)
27+
FRAME_BEGIN
2628
movq $saved_context, %rax
2729
movq %rsp, pt_regs_sp(%rax)
2830
movq %rbp, pt_regs_bp(%rax)
@@ -50,7 +52,9 @@ ENTRY(swsusp_arch_suspend)
5052
movq %rax, restore_cr3(%rip)
5153

5254
call swsusp_save
55+
FRAME_END
5356
ret
57+
ENDPROC(swsusp_arch_suspend)
5458

5559
ENTRY(restore_image)
5660
/* switch to temporary page tables */
@@ -107,6 +111,7 @@ ENTRY(core_restore_code)
107111
*/
108112

109113
ENTRY(restore_registers)
114+
FRAME_BEGIN
110115
/* go back to the original page tables */
111116
movq %rbx, %cr3
112117

@@ -147,4 +152,6 @@ ENTRY(restore_registers)
147152
/* tell the hibernation core that we've just restored the memory */
148153
movq %rax, in_suspend(%rip)
149154

155+
FRAME_END
150156
ret
157+
ENDPROC(restore_registers)

0 commit comments

Comments
 (0)