aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/kprobes.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/kprobes.h')
-rw-r--r--include/linux/kprobes.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/kprobes.h b/include/linux/kprobes.h
index 461391decc46..5e1a7b0d7b3f 100644
--- a/include/linux/kprobes.h
+++ b/include/linux/kprobes.h
@@ -36,6 +36,12 @@
36 36
37#include <asm/kprobes.h> 37#include <asm/kprobes.h>
38 38
39/* kprobe_status settings */
40#define KPROBE_HIT_ACTIVE 0x00000001
41#define KPROBE_HIT_SS 0x00000002
42#define KPROBE_REENTER 0x00000004
43#define KPROBE_HIT_SSDONE 0x00000008
44
39struct kprobe; 45struct kprobe;
40struct pt_regs; 46struct pt_regs;
41struct kretprobe; 47struct kretprobe;
@@ -55,6 +61,9 @@ struct kprobe {
55 /* list of kprobes for multi-handler support */ 61 /* list of kprobes for multi-handler support */
56 struct list_head list; 62 struct list_head list;
57 63
64 /*count the number of times this probe was temporarily disarmed */
65 unsigned long nmissed;
66
58 /* location of the probe point */ 67 /* location of the probe point */
59 kprobe_opcode_t *addr; 68 kprobe_opcode_t *addr;
60 69