diff options
Diffstat (limited to 'include/linux/uprobes.h')
-rw-r--r-- | include/linux/uprobes.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/uprobes.h b/include/linux/uprobes.h index a111460c07d5..d594d3b3ad4c 100644 --- a/include/linux/uprobes.h +++ b/include/linux/uprobes.h | |||
@@ -99,6 +99,7 @@ struct xol_area { | |||
99 | 99 | ||
100 | struct uprobes_state { | 100 | struct uprobes_state { |
101 | struct xol_area *xol_area; | 101 | struct xol_area *xol_area; |
102 | atomic_t count; | ||
102 | }; | 103 | }; |
103 | extern int __weak set_swbp(struct arch_uprobe *aup, struct mm_struct *mm, unsigned long vaddr); | 104 | extern int __weak set_swbp(struct arch_uprobe *aup, struct mm_struct *mm, unsigned long vaddr); |
104 | extern int __weak set_orig_insn(struct arch_uprobe *aup, struct mm_struct *mm, unsigned long vaddr, bool verify); | 105 | extern int __weak set_orig_insn(struct arch_uprobe *aup, struct mm_struct *mm, unsigned long vaddr, bool verify); |
@@ -106,6 +107,7 @@ extern bool __weak is_swbp_insn(uprobe_opcode_t *insn); | |||
106 | extern int uprobe_register(struct inode *inode, loff_t offset, struct uprobe_consumer *uc); | 107 | extern int uprobe_register(struct inode *inode, loff_t offset, struct uprobe_consumer *uc); |
107 | extern void uprobe_unregister(struct inode *inode, loff_t offset, struct uprobe_consumer *uc); | 108 | extern void uprobe_unregister(struct inode *inode, loff_t offset, struct uprobe_consumer *uc); |
108 | extern int uprobe_mmap(struct vm_area_struct *vma); | 109 | extern int uprobe_mmap(struct vm_area_struct *vma); |
110 | extern void uprobe_munmap(struct vm_area_struct *vma); | ||
109 | extern void uprobe_free_utask(struct task_struct *t); | 111 | extern void uprobe_free_utask(struct task_struct *t); |
110 | extern void uprobe_copy_process(struct task_struct *t); | 112 | extern void uprobe_copy_process(struct task_struct *t); |
111 | extern unsigned long __weak uprobe_get_swbp_addr(struct pt_regs *regs); | 113 | extern unsigned long __weak uprobe_get_swbp_addr(struct pt_regs *regs); |
@@ -132,6 +134,9 @@ static inline int uprobe_mmap(struct vm_area_struct *vma) | |||
132 | { | 134 | { |
133 | return 0; | 135 | return 0; |
134 | } | 136 | } |
137 | static inline void uprobe_munmap(struct vm_area_struct *vma) | ||
138 | { | ||
139 | } | ||
135 | static inline void uprobe_notify_resume(struct pt_regs *regs) | 140 | static inline void uprobe_notify_resume(struct pt_regs *regs) |
136 | { | 141 | { |
137 | } | 142 | } |