Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'objtool_urgent_for_v6.16_rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull objtool fix from Borislav Petkov:

- Fix the compilation of an x86 kernel on a big engian machine due to a
missed endianness conversion

* tag 'objtool_urgent_for_v6.16_rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
objtool: Add missing endian conversion to read_annotate()

+1
+1
tools/objtool/check.c
··· 2318 2318 2319 2319 for_each_reloc(sec->rsec, reloc) { 2320 2320 type = *(u32 *)(sec->data->d_buf + (reloc_idx(reloc) * sec->sh.sh_entsize) + 4); 2321 + type = bswap_if_needed(file->elf, type); 2321 2322 2322 2323 offset = reloc->sym->offset + reloc_addend(reloc); 2323 2324 insn = find_insn(file, reloc->sym->sec, offset);