diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-02-02 12:54:45 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-02-02 12:54:45 -0800 |
commit | 027eb72cbcf81561867a764074964e2ce9828398 (patch) | |
tree | 40defa16b78e50efb9c1ffbf9b3b6d4e1027898b /tools | |
parent | 1fc576b82b96d9bb033ff0098e1c0bf68de282b2 (diff) | |
parent | b5b46c4740aed1538544f0fa849c5b76c7823469 (diff) | |
download | linux-027eb72cbcf81561867a764074964e2ce9828398.tar.bz2 |
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
Diffstat (limited to 'tools')
-rw-r--r-- | tools/objtool/arch/x86/decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/objtool/arch/x86/decode.c b/tools/objtool/arch/x86/decode.c index 5e0dea2cdc01..039636ffb6c8 100644 --- a/tools/objtool/arch/x86/decode.c +++ b/tools/objtool/arch/x86/decode.c @@ -150,9 +150,9 @@ int arch_decode_instruction(struct elf *elf, struct section *sec, *type = INSN_RETURN; break; - case 0xc5: /* iret */ case 0xca: /* retf */ case 0xcb: /* retf */ + case 0xcf: /* iret */ *type = INSN_CONTEXT_SWITCH; break; |