Merge tag 'objtool_urgent_for_v6.18_rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull objtool fixes from Borislav Petkov:

- Fix x32 build due to wrong format specifier on that sub-arch

- Add one more Rust noreturn function to objtool's list

* tag 'objtool_urgent_for_v6.18_rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
objtool: Fix failure when being compiled on x32 system
objtool/rust: add one more `noreturn` Rust function

+3 -2
+3 -2
tools/objtool/check.c
··· 217 217 * these come from the Rust standard library). 218 218 */ 219 219 return str_ends_with(func->name, "_4core5sliceSp15copy_from_slice17len_mismatch_fail") || 220 + str_ends_with(func->name, "_4core6option13expect_failed") || 220 221 str_ends_with(func->name, "_4core6option13unwrap_failed") || 221 222 str_ends_with(func->name, "_4core6result13unwrap_failed") || 222 223 str_ends_with(func->name, "_4core9panicking5panic") || ··· 4711 4710 4712 4711 for_each_reloc(sec->rsec, reloc) { 4713 4712 if (arch_absolute_reloc(file->elf, reloc)) { 4714 - WARN("section %s has absolute relocation at offset 0x%lx", 4715 - sec->name, reloc_offset(reloc)); 4713 + WARN("section %s has absolute relocation at offset 0x%llx", 4714 + sec->name, (unsigned long long)reloc_offset(reloc)); 4716 4715 ret++; 4717 4716 } 4718 4717 }