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 branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull objtool fix from Ingo Molnar:
"A single late breaking fix for objtool"

* 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
objtool: Fix bytes check of lea's rex_prefix

+1 -1
+1 -1
tools/objtool/arch/x86/decode.c
··· 99 99 break; 100 100 101 101 case 0x8d: 102 - if (insn.rex_prefix.bytes && 102 + if (insn.rex_prefix.nbytes && 103 103 insn.rex_prefix.bytes[0] == 0x48 && 104 104 insn.modrm.nbytes && insn.modrm.bytes[0] == 0x2c && 105 105 insn.sib.nbytes && insn.sib.bytes[0] == 0x24)