diff options
author | Paul Mundt <lethal@linux-sh.org> | 2008-09-08 05:10:10 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-09-08 05:10:10 -0400 |
commit | 174b5c9923e0170c844e03d55a9f3fb3b329a8b7 (patch) | |
tree | 09192f40fab1bed13d2bb5b2b6d08ddff3f5621d /arch/sh | |
parent | 037c10a612e8b7461e33672fb3848807ac6e2346 (diff) |
sh: kprobes: Use trapa #0x3a for breakpoint trap.
Not all parts support trapa #0xff, so use something within the debug trap
range that's accessible on all parts.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/include/asm/kprobes.h | 2 | ||||
-rw-r--r-- | arch/sh/kernel/kprobes.c | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/arch/sh/include/asm/kprobes.h b/arch/sh/include/asm/kprobes.h index 756a5cd96378..6078d8e551d4 100644 --- a/arch/sh/include/asm/kprobes.h +++ b/arch/sh/include/asm/kprobes.h | |||
@@ -7,7 +7,7 @@ | |||
7 | #include <linux/ptrace.h> | 7 | #include <linux/ptrace.h> |
8 | 8 | ||
9 | typedef u16 kprobe_opcode_t; | 9 | typedef u16 kprobe_opcode_t; |
10 | #define BREAKPOINT_INSTRUCTION 0xc3ff | 10 | #define BREAKPOINT_INSTRUCTION 0xc33a |
11 | 11 | ||
12 | #define MAX_INSN_SIZE 16 | 12 | #define MAX_INSN_SIZE 16 |
13 | #define MAX_STACK_SIZE 64 | 13 | #define MAX_STACK_SIZE 64 |
diff --git a/arch/sh/kernel/kprobes.c b/arch/sh/kernel/kprobes.c index 81a3725e5155..fdd049e9ad86 100644 --- a/arch/sh/kernel/kprobes.c +++ b/arch/sh/kernel/kprobes.c | |||
@@ -525,8 +525,7 @@ int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs) | |||
525 | 525 | ||
526 | void __kprobes jprobe_return(void) | 526 | void __kprobes jprobe_return(void) |
527 | { | 527 | { |
528 | __asm("trapa #-1\n\t" "jprobe_return_end:\n\t" "nop\n\t"); | 528 | asm volatile ("trapa #0x3a\n\t" "jprobe_return_end:\n\t" "nop\n\t"); |
529 | |||
530 | } | 529 | } |
531 | 530 | ||
532 | int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs) | 531 | int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs) |