diff options
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/kernel/kprobes.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/i386/kernel/kprobes.c b/arch/i386/kernel/kprobes.c index 7fb5a6f4a563..e5cec32018a5 100644 --- a/arch/i386/kernel/kprobes.c +++ b/arch/i386/kernel/kprobes.c | |||
@@ -221,7 +221,10 @@ static int __kprobes kprobe_handler(struct pt_regs *regs) | |||
221 | * either a probepoint or a debugger breakpoint | 221 | * either a probepoint or a debugger breakpoint |
222 | * at this address. In either case, no further | 222 | * at this address. In either case, no further |
223 | * handling of this interrupt is appropriate. | 223 | * handling of this interrupt is appropriate. |
224 | * Back up over the (now missing) int3 and run | ||
225 | * the original instruction. | ||
224 | */ | 226 | */ |
227 | regs->eip -= sizeof(kprobe_opcode_t); | ||
225 | ret = 1; | 228 | ret = 1; |
226 | } | 229 | } |
227 | /* Not one of ours: let kernel handle it */ | 230 | /* Not one of ours: let kernel handle it */ |