aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/perf_event.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/perf_event.h')
-rw-r--r--include/linux/perf_event.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h
index 24de5f181a41..ace31fbac513 100644
--- a/include/linux/perf_event.h
+++ b/include/linux/perf_event.h
@@ -941,10 +941,8 @@ static inline void perf_event_mmap(struct vm_area_struct *vma)
941} 941}
942 942
943extern struct perf_guest_info_callbacks *perf_guest_cbs; 943extern struct perf_guest_info_callbacks *perf_guest_cbs;
944extern int perf_register_guest_info_callbacks( 944extern int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *callbacks);
945 struct perf_guest_info_callbacks *); 945extern int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *callbacks);
946extern int perf_unregister_guest_info_callbacks(
947 struct perf_guest_info_callbacks *);
948 946
949extern void perf_event_comm(struct task_struct *tsk); 947extern void perf_event_comm(struct task_struct *tsk);
950extern void perf_event_fork(struct task_struct *tsk); 948extern void perf_event_fork(struct task_struct *tsk);
@@ -1016,9 +1014,9 @@ static inline void
1016perf_bp_event(struct perf_event *event, void *data) { } 1014perf_bp_event(struct perf_event *event, void *data) { }
1017 1015
1018static inline int perf_register_guest_info_callbacks 1016static inline int perf_register_guest_info_callbacks
1019(struct perf_guest_info_callbacks *) {return 0; } 1017(struct perf_guest_info_callbacks *callbacks) { return 0; }
1020static inline int perf_unregister_guest_info_callbacks 1018static inline int perf_unregister_guest_info_callbacks
1021(struct perf_guest_info_callbacks *) {return 0; } 1019(struct perf_guest_info_callbacks *callbacks) { return 0; }
1022 1020
1023static inline void perf_event_mmap(struct vm_area_struct *vma) { } 1021static inline void perf_event_mmap(struct vm_area_struct *vma) { }
1024static inline void perf_event_comm(struct task_struct *tsk) { } 1022static inline void perf_event_comm(struct task_struct *tsk) { }