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 fix for a bad opcode in objtool's instruction decoder"

* 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
objtool: Fix IRET's opcode

+1 -1
+1 -1
tools/objtool/arch/x86/decode.c
··· 150 150 *type = INSN_RETURN; 151 151 break; 152 152 153 - case 0xc5: /* iret */ 154 153 case 0xca: /* retf */ 155 154 case 0xcb: /* retf */ 155 + case 0xcf: /* iret */ 156 156 *type = INSN_CONTEXT_SWITCH; 157 157 break; 158 158