mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-23 01:40:30 +00:00
x86/asm/efi: Create a stack frame in efi_call()
efi_call() is a callable non-leaf function which doesn't honor CONFIG_FRAME_POINTER, which can result in bad stack traces. Create a stack frame for it when CONFIG_FRAME_POINTER is enabled. Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com> Reviewed-by: Matt Fleming <matt@codeblueprint.co.uk> Reviewed-by: Borislav Petkov <bp@suse.de> 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/2294b6fad60eea4cc862eddc8e98a1324e6eeeca.1453405861.git.jpoimboe@redhat.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
3387a535ce
commit
779c433b8e
@ -11,6 +11,7 @@
|
|||||||
#include <asm/msr.h>
|
#include <asm/msr.h>
|
||||||
#include <asm/processor-flags.h>
|
#include <asm/processor-flags.h>
|
||||||
#include <asm/page_types.h>
|
#include <asm/page_types.h>
|
||||||
|
#include <asm/frame.h>
|
||||||
|
|
||||||
#define SAVE_XMM \
|
#define SAVE_XMM \
|
||||||
mov %rsp, %rax; \
|
mov %rsp, %rax; \
|
||||||
@ -74,6 +75,7 @@
|
|||||||
.endm
|
.endm
|
||||||
|
|
||||||
ENTRY(efi_call)
|
ENTRY(efi_call)
|
||||||
|
FRAME_BEGIN
|
||||||
SAVE_XMM
|
SAVE_XMM
|
||||||
mov (%rsp), %rax
|
mov (%rsp), %rax
|
||||||
mov 8(%rax), %rax
|
mov 8(%rax), %rax
|
||||||
@ -88,6 +90,7 @@ ENTRY(efi_call)
|
|||||||
RESTORE_PGT
|
RESTORE_PGT
|
||||||
addq $48, %rsp
|
addq $48, %rsp
|
||||||
RESTORE_XMM
|
RESTORE_XMM
|
||||||
|
FRAME_END
|
||||||
ret
|
ret
|
||||||
ENDPROC(efi_call)
|
ENDPROC(efi_call)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user