diff options
author | Josh Poimboeuf <jpoimboe@redhat.com> | 2019-07-17 21:36:41 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2019-07-18 15:01:04 -0400 |
commit | 61a73f5cd1a5794626d216cc56e20a1b195c5d0c (patch) | |
tree | 13f5a3feb0a9e6bb5b9a1b8e1563597f47d600bf | |
parent | e6dd47394493061c605285a868fc72eae2e9c866 (diff) |
x86/head/64: Annotate start_cpu0() as non-callable
After an objtool improvement, it complains about the fact that
start_cpu0() jumps to code which has an LRET instruction.
arch/x86/kernel/head_64.o: warning: objtool: .head.text+0xe4: unsupported instruction in callable function
Technically, start_cpu0() is callable, but it acts nothing like a
callable function. Prevent objtool from treating it like one by
removing its ELF function annotation.
Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/6b1b4505fcb90571a55fa1b52d71fb458ca24454.1563413318.git.jpoimboe@redhat.com
-rw-r--r-- | arch/x86/kernel/head_64.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/head_64.S b/arch/x86/kernel/head_64.S index bcd206c8ac90..66b4a7757397 100644 --- a/arch/x86/kernel/head_64.S +++ b/arch/x86/kernel/head_64.S | |||
@@ -253,10 +253,10 @@ END(secondary_startup_64) | |||
253 | * start_secondary() via .Ljump_to_C_code. | 253 | * start_secondary() via .Ljump_to_C_code. |
254 | */ | 254 | */ |
255 | ENTRY(start_cpu0) | 255 | ENTRY(start_cpu0) |
256 | movq initial_stack(%rip), %rsp | ||
257 | UNWIND_HINT_EMPTY | 256 | UNWIND_HINT_EMPTY |
257 | movq initial_stack(%rip), %rsp | ||
258 | jmp .Ljump_to_C_code | 258 | jmp .Ljump_to_C_code |
259 | ENDPROC(start_cpu0) | 259 | END(start_cpu0) |
260 | #endif | 260 | #endif |
261 | 261 | ||
262 | /* Both SMP bootup and ACPI suspend change these variables */ | 262 | /* Both SMP bootup and ACPI suspend change these variables */ |