Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_PROFILE_H |
| 2 | #define _LINUX_PROFILE_H |
| 3 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <linux/init.h> |
| 6 | #include <linux/cpumask.h> |
Ingo Molnar | ece8a68 | 2006-12-06 20:37:24 -0800 | [diff] [blame] | 7 | #include <linux/cache.h> |
| 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <asm/errno.h> |
| 10 | |
| 11 | #define CPU_PROFILING 1 |
| 12 | #define SCHED_PROFILING 2 |
Ingo Molnar | ece8a68 | 2006-12-06 20:37:24 -0800 | [diff] [blame] | 13 | #define SLEEP_PROFILING 3 |
Ingo Molnar | 07031e1 | 2007-01-10 23:15:38 -0800 | [diff] [blame] | 14 | #define KVM_PROFILING 4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
| 16 | struct proc_dir_entry; |
| 17 | struct pt_regs; |
Andrew Morton | 772a0dc | 2006-03-23 03:00:55 -0800 | [diff] [blame] | 18 | struct notifier_block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Adrian Bunk | b03f648 | 2008-07-25 01:45:35 -0700 | [diff] [blame] | 20 | #if defined(CONFIG_PROFILING) && defined(CONFIG_PROC_FS) |
Andrew Morton | cebbd3f | 2008-07-25 01:45:35 -0700 | [diff] [blame] | 21 | void create_prof_cpu_mask(struct proc_dir_entry *de); |
Paul Mundt | 66f50ee | 2008-10-22 14:14:59 -0700 | [diff] [blame] | 22 | int create_proc_profile(void); |
Adrian Bunk | b03f648 | 2008-07-25 01:45:35 -0700 | [diff] [blame] | 23 | #else |
Andrew Morton | cebbd3f | 2008-07-25 01:45:35 -0700 | [diff] [blame] | 24 | static inline void create_prof_cpu_mask(struct proc_dir_entry *de) |
| 25 | { |
| 26 | } |
Paul Mundt | 66f50ee | 2008-10-22 14:14:59 -0700 | [diff] [blame] | 27 | |
| 28 | static inline int create_proc_profile(void) |
| 29 | { |
| 30 | return 0; |
| 31 | } |
Adrian Bunk | b03f648 | 2008-07-25 01:45:35 -0700 | [diff] [blame] | 32 | #endif |
| 33 | |
| 34 | enum profile_type { |
| 35 | PROFILE_TASK_EXIT, |
| 36 | PROFILE_MUNMAP |
| 37 | }; |
| 38 | |
| 39 | #ifdef CONFIG_PROFILING |
| 40 | |
| 41 | extern int prof_on __read_mostly; |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | /* init basic kernel profiler */ |
Dave Hansen | 22b8ce9 | 2008-10-15 22:01:46 -0700 | [diff] [blame] | 44 | int profile_init(void); |
| 45 | int profile_setup(char *str); |
Adrian Bunk | b03f648 | 2008-07-25 01:45:35 -0700 | [diff] [blame] | 46 | void profile_tick(int type); |
Ingo Molnar | ece8a68 | 2006-12-06 20:37:24 -0800 | [diff] [blame] | 47 | |
| 48 | /* |
| 49 | * Add multiple profiler hits to a given address: |
| 50 | */ |
Adrian Bunk | b03f648 | 2008-07-25 01:45:35 -0700 | [diff] [blame] | 51 | void profile_hits(int type, void *ip, unsigned int nr_hits); |
Ingo Molnar | ece8a68 | 2006-12-06 20:37:24 -0800 | [diff] [blame] | 52 | |
| 53 | /* |
| 54 | * Single profiler hit: |
| 55 | */ |
| 56 | static inline void profile_hit(int type, void *ip) |
| 57 | { |
| 58 | /* |
| 59 | * Speedup for the common (no profiling enabled) case: |
| 60 | */ |
| 61 | if (unlikely(prof_on == type)) |
| 62 | profile_hits(type, ip, 1); |
| 63 | } |
| 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | struct task_struct; |
| 66 | struct mm_struct; |
| 67 | |
| 68 | /* task is in do_exit() */ |
| 69 | void profile_task_exit(struct task_struct * task); |
| 70 | |
| 71 | /* task is dead, free task struct ? Returns 1 if |
| 72 | * the task was taken, 0 if the task should be freed. |
| 73 | */ |
| 74 | int profile_handoff_task(struct task_struct * task); |
| 75 | |
| 76 | /* sys_munmap */ |
| 77 | void profile_munmap(unsigned long addr); |
| 78 | |
| 79 | int task_handoff_register(struct notifier_block * n); |
| 80 | int task_handoff_unregister(struct notifier_block * n); |
| 81 | |
| 82 | int profile_event_register(enum profile_type, struct notifier_block * n); |
| 83 | int profile_event_unregister(enum profile_type, struct notifier_block * n); |
| 84 | |
| 85 | int register_timer_hook(int (*hook)(struct pt_regs *)); |
| 86 | void unregister_timer_hook(int (*hook)(struct pt_regs *)); |
| 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | struct pt_regs; |
| 89 | |
| 90 | #else |
| 91 | |
Adrian Bunk | b03f648 | 2008-07-25 01:45:35 -0700 | [diff] [blame] | 92 | #define prof_on 0 |
| 93 | |
Dave Hansen | 22b8ce9 | 2008-10-15 22:01:46 -0700 | [diff] [blame] | 94 | static inline int profile_init(void) |
Adrian Bunk | b03f648 | 2008-07-25 01:45:35 -0700 | [diff] [blame] | 95 | { |
Dave Hansen | 22b8ce9 | 2008-10-15 22:01:46 -0700 | [diff] [blame] | 96 | return 0; |
Adrian Bunk | b03f648 | 2008-07-25 01:45:35 -0700 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | static inline void profile_tick(int type) |
| 100 | { |
| 101 | return; |
| 102 | } |
| 103 | |
| 104 | static inline void profile_hits(int type, void *ip, unsigned int nr_hits) |
| 105 | { |
| 106 | return; |
| 107 | } |
| 108 | |
| 109 | static inline void profile_hit(int type, void *ip) |
| 110 | { |
| 111 | return; |
| 112 | } |
| 113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | static inline int task_handoff_register(struct notifier_block * n) |
| 115 | { |
| 116 | return -ENOSYS; |
| 117 | } |
| 118 | |
| 119 | static inline int task_handoff_unregister(struct notifier_block * n) |
| 120 | { |
| 121 | return -ENOSYS; |
| 122 | } |
| 123 | |
| 124 | static inline int profile_event_register(enum profile_type t, struct notifier_block * n) |
| 125 | { |
| 126 | return -ENOSYS; |
| 127 | } |
| 128 | |
| 129 | static inline int profile_event_unregister(enum profile_type t, struct notifier_block * n) |
| 130 | { |
| 131 | return -ENOSYS; |
| 132 | } |
| 133 | |
| 134 | #define profile_task_exit(a) do { } while (0) |
| 135 | #define profile_handoff_task(a) (0) |
| 136 | #define profile_munmap(a) do { } while (0) |
| 137 | |
| 138 | static inline int register_timer_hook(int (*hook)(struct pt_regs *)) |
| 139 | { |
| 140 | return -ENOSYS; |
| 141 | } |
| 142 | |
| 143 | static inline void unregister_timer_hook(int (*hook)(struct pt_regs *)) |
| 144 | { |
| 145 | return; |
| 146 | } |
| 147 | |
| 148 | #endif /* CONFIG_PROFILING */ |
| 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | #endif /* _LINUX_PROFILE_H */ |