]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
x86/alternatives: Move declarations of vmlinux.lds.S defined section symbols to ...
authorIngo Molnar <mingo@kernel.org>
Fri, 11 Apr 2025 05:41:00 +0000 (07:41 +0200)
committerIngo Molnar <mingo@kernel.org>
Fri, 11 Apr 2025 09:01:35 +0000 (11:01 +0200)
Move it from the middle of a .c file next to the similar declarations
of __alt_instructions[] et al.

Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: Juergen Gross <jgross@suse.com>
Cc: "H . Peter Anvin" <hpa@zytor.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: https://lore.kernel.org/r/20250411054105.2341982-49-mingo@kernel.org
arch/x86/include/asm/alternative.h
arch/x86/kernel/alternative.c

index 4a37a8bd87fdfa310f03fd42349c175a451e8602..ef84739a77f524677298c4bcda49735dbea7aacc 100644 (file)
@@ -82,6 +82,12 @@ struct alt_instr {
 
 extern struct alt_instr __alt_instructions[], __alt_instructions_end[];
 
+extern s32 __retpoline_sites[], __retpoline_sites_end[];
+extern s32 __return_sites[],   __return_sites_end[];
+extern s32 __cfi_sites[],      __cfi_sites_end[];
+extern s32 __ibt_endbr_seal[], __ibt_endbr_seal_end[];
+extern s32 __smp_locks[],      __smp_locks_end[];
+
 /*
  * Debug flag that can be tested to see whether alternative
  * instructions were patched in already:
index eb3be5d3efef14a80c435d78ce815b62870817c4..cd828c236fd202896d83d834eb228d6a99d9394d 100644 (file)
@@ -149,12 +149,6 @@ static void add_nop(u8 *buf, unsigned int len)
                *buf = INT3_INSN_OPCODE;
 }
 
-extern s32 __retpoline_sites[], __retpoline_sites_end[];
-extern s32 __return_sites[], __return_sites_end[];
-extern s32 __cfi_sites[], __cfi_sites_end[];
-extern s32 __ibt_endbr_seal[], __ibt_endbr_seal_end[];
-extern s32 __smp_locks[], __smp_locks_end[];
-
 /*
  * Matches NOP and NOPL, not any of the other possible NOPs.
  */