]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
objtool/klp: Don't correlate absolute symbols
authorJosh Poimboeuf <jpoimboe@kernel.org>
Mon, 13 Apr 2026 02:25:19 +0000 (19:25 -0700)
committerJosh Poimboeuf <jpoimboe@kernel.org>
Tue, 5 May 2026 04:15:59 +0000 (21:15 -0700)
Some arch/x86/crypto/*.S files define local .set/.equ constants that get
duplicated in vmlinux.o.  This causes klp-diff to fail with "Multiple
correlation candidates" errors since it can't uniquely match these
between orig and patched builds.

Skip ABS symbols in dont_correlate().  They're purely compile-time
assembly constants that are never referenced by relocations, so they
don't need correlation.

Acked-by: Song Liu <song@kernel.org>
Reviewed-by: Miroslav Benes <mbenes@suse.cz>
Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>
tools/objtool/klp-diff.c

index 36753eeba58c01e197a48f935bef52b354354944..27ebe1b1f463681106caa5bac81d0f596b6767f6 100644 (file)
@@ -361,6 +361,15 @@ static bool is_addressable_sym(struct symbol *sym)
        return !strcmp(sym->sec->name, ".discard.addressable");
 }
 
+/*
+ * ABS symbols are typically assembly .set/.equ constants which are never
+ * referenced by relocations.  (Exclude FILE symbols which are also SHN_ABS.)
+ */
+static bool is_abs_sym(struct symbol *sym)
+{
+       return sym->sym.st_shndx == SHN_ABS && !is_file_sym(sym);
+}
+
 /*
  * These symbols should never be correlated, so their local patched versions
  * are used instead of linking to the originals.
@@ -370,6 +379,7 @@ static bool dont_correlate(struct symbol *sym)
        return is_file_sym(sym) ||
               is_null_sym(sym) ||
               is_sec_sym(sym) ||
+              is_abs_sym(sym) ||
               is_prefix_func(sym) ||
               is_uncorrelated_static_local(sym) ||
               is_clang_tmp_label(sym) ||