diff options
Diffstat (limited to 'include/asm-ia64/kprobes.h')
-rw-r--r-- | include/asm-ia64/kprobes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asm-ia64/kprobes.h b/include/asm-ia64/kprobes.h index 828ae00e47c1..2abc98b336f3 100644 --- a/include/asm-ia64/kprobes.h +++ b/include/asm-ia64/kprobes.h | |||
@@ -71,13 +71,15 @@ struct prev_kprobe { | |||
71 | 71 | ||
72 | #define MAX_PARAM_RSE_SIZE (0x60+0x60/0x3f) | 72 | #define MAX_PARAM_RSE_SIZE (0x60+0x60/0x3f) |
73 | /* per-cpu kprobe control block */ | 73 | /* per-cpu kprobe control block */ |
74 | #define ARCH_PREV_KPROBE_SZ 2 | ||
74 | struct kprobe_ctlblk { | 75 | struct kprobe_ctlblk { |
75 | unsigned long kprobe_status; | 76 | unsigned long kprobe_status; |
76 | struct pt_regs jprobe_saved_regs; | 77 | struct pt_regs jprobe_saved_regs; |
77 | unsigned long jprobes_saved_stacked_regs[MAX_PARAM_RSE_SIZE]; | 78 | unsigned long jprobes_saved_stacked_regs[MAX_PARAM_RSE_SIZE]; |
78 | unsigned long *bsp; | 79 | unsigned long *bsp; |
79 | unsigned long cfm; | 80 | unsigned long cfm; |
80 | struct prev_kprobe prev_kprobe; | 81 | atomic_t prev_kprobe_index; |
82 | struct prev_kprobe prev_kprobe[ARCH_PREV_KPROBE_SZ]; | ||
81 | }; | 83 | }; |
82 | 84 | ||
83 | #define JPROBE_ENTRY(pentry) (kprobe_opcode_t *)pentry | 85 | #define JPROBE_ENTRY(pentry) (kprobe_opcode_t *)pentry |