From: Josh Poimboeuf Date: Wed, 17 Sep 2025 16:03:34 +0000 (-0700) Subject: objtool: Remove .parainstructions reference X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=72e4b6b44e9f53990315c6dd9fae2b2fc89c021a;p=thirdparty%2Fkernel%2Flinux.git objtool: Remove .parainstructions reference The .parainstructions section no longer exists since the following commit: 60bc276b129e ("x86/paravirt: Switch mixed paravirt/alternative calls to alternatives"). Remove the reference to it. Acked-by: Petr Mladek Tested-by: Joe Lawrence Signed-off-by: Josh Poimboeuf --- diff --git a/tools/objtool/check.c b/tools/objtool/check.c index 2bd35d11411bf..61e071c46ac26 100644 --- a/tools/objtool/check.c +++ b/tools/objtool/check.c @@ -4468,7 +4468,6 @@ static int validate_ibt(struct objtool_file *file) !strcmp(sec->name, ".altinstructions") || !strcmp(sec->name, ".ibt_endbr_seal") || !strcmp(sec->name, ".orc_unwind_ip") || - !strcmp(sec->name, ".parainstructions") || !strcmp(sec->name, ".retpoline_sites") || !strcmp(sec->name, ".smp_locks") || !strcmp(sec->name, ".static_call_sites") ||