diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/perf_event.h | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h index 80acbf3d5de1..70cffd052c04 100644 --- a/include/linux/perf_event.h +++ b/include/linux/perf_event.h | |||
| @@ -452,6 +452,7 @@ enum perf_callchain_context { | |||
| 452 | #include <linux/fs.h> | 452 | #include <linux/fs.h> |
| 453 | #include <linux/pid_namespace.h> | 453 | #include <linux/pid_namespace.h> |
| 454 | #include <linux/workqueue.h> | 454 | #include <linux/workqueue.h> |
| 455 | #include <linux/ftrace.h> | ||
| 455 | #include <asm/atomic.h> | 456 | #include <asm/atomic.h> |
| 456 | 457 | ||
| 457 | #define PERF_MAX_STACK_DEPTH 255 | 458 | #define PERF_MAX_STACK_DEPTH 255 |
| @@ -847,6 +848,44 @@ perf_sw_event(u32 event_id, u64 nr, int nmi, struct pt_regs *regs, u64 addr) | |||
| 847 | __perf_sw_event(event_id, nr, nmi, regs, addr); | 848 | __perf_sw_event(event_id, nr, nmi, regs, addr); |
| 848 | } | 849 | } |
| 849 | 850 | ||
| 851 | extern void | ||
| 852 | perf_arch_fetch_caller_regs(struct pt_regs *regs, unsigned long ip, int skip); | ||
| 853 | |||
| 854 | /* | ||
| 855 | * Take a snapshot of the regs. Skip ip and frame pointer to | ||
| 856 | * the nth caller. We only need a few of the regs: | ||
| 857 | * - ip for PERF_SAMPLE_IP | ||
| 858 | * - cs for user_mode() tests | ||
| 859 | * - bp for callchains | ||
| 860 | * - eflags, for future purposes, just in case | ||
| 861 | */ | ||
| 862 | static inline void perf_fetch_caller_regs(struct pt_regs *regs, int skip) | ||
| 863 | { | ||
| 864 | unsigned long ip; | ||
| 865 | |||
| 866 | memset(regs, 0, sizeof(*regs)); | ||
| 867 | |||
| 868 | switch (skip) { | ||
| 869 | case 1 : | ||
| 870 | ip = CALLER_ADDR0; | ||
| 871 | break; | ||
| 872 | case 2 : | ||
| 873 | ip = CALLER_ADDR1; | ||
| 874 | break; | ||
| 875 | case 3 : | ||
| 876 | ip = CALLER_ADDR2; | ||
| 877 | break; | ||
| 878 | case 4: | ||
| 879 | ip = CALLER_ADDR3; | ||
| 880 | break; | ||
| 881 | /* No need to support further for now */ | ||
| 882 | default: | ||
| 883 | ip = 0; | ||
| 884 | } | ||
| 885 | |||
| 886 | return perf_arch_fetch_caller_regs(regs, ip, skip); | ||
| 887 | } | ||
| 888 | |||
| 850 | extern void __perf_event_mmap(struct vm_area_struct *vma); | 889 | extern void __perf_event_mmap(struct vm_area_struct *vma); |
| 851 | 890 | ||
| 852 | static inline void perf_event_mmap(struct vm_area_struct *vma) | 891 | static inline void perf_event_mmap(struct vm_area_struct *vma) |
| @@ -880,7 +919,8 @@ static inline bool perf_paranoid_kernel(void) | |||
| 880 | } | 919 | } |
| 881 | 920 | ||
| 882 | extern void perf_event_init(void); | 921 | extern void perf_event_init(void); |
| 883 | extern void perf_tp_event(int event_id, u64 addr, u64 count, void *record, int entry_size); | 922 | extern void perf_tp_event(int event_id, u64 addr, u64 count, void *record, |
| 923 | int entry_size, struct pt_regs *regs); | ||
| 884 | extern void perf_bp_event(struct perf_event *event, void *data); | 924 | extern void perf_bp_event(struct perf_event *event, void *data); |
| 885 | 925 | ||
| 886 | #ifndef perf_misc_flags | 926 | #ifndef perf_misc_flags |
