Robot yielded a .config that tripped:
vmlinux.o: warning: objtool: do_jit+0x276: relocation to !ENDBR: .noinstr.text+0x6a60
This is the result of using __bhi_args[1] in unreachable code; make
sure the compiler is able to determine this is unreachable and trigger
DCE.
Closes: https://lore.kernel.org/oe-kbuild-all/202503030704.H9KFysNS-lkp@intel.com/
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20250303094911.GL5880@noisy.programming.kicks-ass.net
};
extern enum cfi_mode cfi_mode;
+
+#ifdef CONFIG_FINEIBT_BHI
extern bool cfi_bhi;
+#else
+#define cfi_bhi (0)
+#endif
typedef u8 bhi_thunk[32];
extern bhi_thunk __bhi_args[];
#endif
enum cfi_mode cfi_mode __ro_after_init = __CFI_DEFAULT;
+
+#ifdef CONFIG_FINEIBT_BHI
bool cfi_bhi __ro_after_init = false;
+#endif
#ifdef CONFIG_CFI_CLANG
struct bpf_insn;
pr_err("Ignoring paranoid; depends on fineibt.\n");
}
} else if (!strcmp(str, "bhi")) {
+#ifdef CONFIG_FINEIBT_BHI
if (cfi_mode == CFI_FINEIBT) {
cfi_bhi = true;
} else {
pr_err("Ignoring bhi; depends on fineibt.\n");
}
+#else
+ pr_err("Ignoring bhi; depends on FINEIBT_BHI=y.\n");
+#endif
} else {
pr_err("Ignoring unknown cfi option (%s).", str);
}