usb: musb: blackfin: delete unnecessary 'out of memory' messages
[linux-2.6/btrfs-unstable.git] / include / linux / profile.h
blobb537a25ffa17215996577b65ac88539c959595c9
1 #ifndef _LINUX_PROFILE_H
2 #define _LINUX_PROFILE_H
4 #include <linux/kernel.h>
5 #include <linux/init.h>
6 #include <linux/cpumask.h>
7 #include <linux/cache.h>
9 #include <asm/errno.h>
11 #define CPU_PROFILING 1
12 #define SCHED_PROFILING 2
13 #define SLEEP_PROFILING 3
14 #define KVM_PROFILING 4
16 struct proc_dir_entry;
17 struct pt_regs;
18 struct notifier_block;
20 #if defined(CONFIG_PROFILING) && defined(CONFIG_PROC_FS)
21 void create_prof_cpu_mask(void);
22 int create_proc_profile(void);
23 #else
24 static inline void create_prof_cpu_mask(void)
28 static inline int create_proc_profile(void)
30 return 0;
32 #endif
34 enum profile_type {
35 PROFILE_TASK_EXIT,
36 PROFILE_MUNMAP
39 #ifdef CONFIG_PROFILING
41 extern int prof_on __read_mostly;
43 /* init basic kernel profiler */
44 int profile_init(void);
45 int profile_setup(char *str);
46 void profile_tick(int type);
47 int setup_profiling_timer(unsigned int multiplier);
50 * Add multiple profiler hits to a given address:
52 void profile_hits(int type, void *ip, unsigned int nr_hits);
55 * Single profiler hit:
57 static inline void profile_hit(int type, void *ip)
60 * Speedup for the common (no profiling enabled) case:
62 if (unlikely(prof_on == type))
63 profile_hits(type, ip, 1);
66 struct task_struct;
67 struct mm_struct;
69 /* task is in do_exit() */
70 void profile_task_exit(struct task_struct * task);
72 /* task is dead, free task struct ? Returns 1 if
73 * the task was taken, 0 if the task should be freed.
75 int profile_handoff_task(struct task_struct * task);
77 /* sys_munmap */
78 void profile_munmap(unsigned long addr);
80 int task_handoff_register(struct notifier_block * n);
81 int task_handoff_unregister(struct notifier_block * n);
83 int profile_event_register(enum profile_type, struct notifier_block * n);
84 int profile_event_unregister(enum profile_type, struct notifier_block * n);
86 struct pt_regs;
88 #else
90 #define prof_on 0
92 static inline int profile_init(void)
94 return 0;
97 static inline void profile_tick(int type)
99 return;
102 static inline void profile_hits(int type, void *ip, unsigned int nr_hits)
104 return;
107 static inline void profile_hit(int type, void *ip)
109 return;
112 static inline int task_handoff_register(struct notifier_block * n)
114 return -ENOSYS;
117 static inline int task_handoff_unregister(struct notifier_block * n)
119 return -ENOSYS;
122 static inline int profile_event_register(enum profile_type t, struct notifier_block * n)
124 return -ENOSYS;
127 static inline int profile_event_unregister(enum profile_type t, struct notifier_block * n)
129 return -ENOSYS;
132 #define profile_task_exit(a) do { } while (0)
133 #define profile_handoff_task(a) (0)
134 #define profile_munmap(a) do { } while (0)
136 #endif /* CONFIG_PROFILING */
138 #endif /* _LINUX_PROFILE_H */