Skip to content

Commit

Permalink
x86: single_step 0xf0
Browse files Browse the repository at this point in the history
This fixes the 64-bit single-step handling code's instruction
decoder to grok the 0xf0 (lock) prefix, which the 32-bit code
already does correctly.

Signed-off-by: Roland McGrath <roland@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Roland McGrath authored and Ingo Molnar committed Jan 30, 2008
1 parent 3f80c1a commit 5f76cb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/kernel/step.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ static int is_setting_trap_flag(struct task_struct *child, struct pt_regs *regs)
case 0x26: case 0x2e:
case 0x36: case 0x3e:
case 0x64: case 0x65:
case 0xf2: case 0xf3:
case 0xf0: case 0xf2: case 0xf3:
continue;

case 0x40 ... 0x4f:
Expand Down

0 comments on commit 5f76cb1

Please sign in to comment.