memcg: make page->mapping NULL before uncharge
[linux-2.6/mini2440.git] / include / linux / profile.h
blob570045053ce9bf04bbda46d21a97feb3b76dadb2
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(struct proc_dir_entry *de);
22 #else
23 static inline void create_prof_cpu_mask(struct proc_dir_entry *de)
26 #endif
28 enum profile_type {
29 PROFILE_TASK_EXIT,
30 PROFILE_MUNMAP
33 #ifdef CONFIG_PROFILING
35 extern int prof_on __read_mostly;
37 /* init basic kernel profiler */
38 int profile_init(void);
39 int profile_setup(char *str);
40 int create_proc_profile(void);
41 void profile_tick(int type);
44 * Add multiple profiler hits to a given address:
46 void profile_hits(int type, void *ip, unsigned int nr_hits);
49 * Single profiler hit:
51 static inline void profile_hit(int type, void *ip)
54 * Speedup for the common (no profiling enabled) case:
56 if (unlikely(prof_on == type))
57 profile_hits(type, ip, 1);
60 struct task_struct;
61 struct mm_struct;
63 /* task is in do_exit() */
64 void profile_task_exit(struct task_struct * task);
66 /* task is dead, free task struct ? Returns 1 if
67 * the task was taken, 0 if the task should be freed.
69 int profile_handoff_task(struct task_struct * task);
71 /* sys_munmap */
72 void profile_munmap(unsigned long addr);
74 int task_handoff_register(struct notifier_block * n);
75 int task_handoff_unregister(struct notifier_block * n);
77 int profile_event_register(enum profile_type, struct notifier_block * n);
78 int profile_event_unregister(enum profile_type, struct notifier_block * n);
80 int register_timer_hook(int (*hook)(struct pt_regs *));
81 void unregister_timer_hook(int (*hook)(struct pt_regs *));
83 struct pt_regs;
85 #else
87 #define prof_on 0
89 static inline int profile_init(void)
91 return 0;
94 static inline void profile_tick(int type)
96 return;
99 static inline void profile_hits(int type, void *ip, unsigned int nr_hits)
101 return;
104 static inline void profile_hit(int type, void *ip)
106 return;
109 static inline int task_handoff_register(struct notifier_block * n)
111 return -ENOSYS;
114 static inline int task_handoff_unregister(struct notifier_block * n)
116 return -ENOSYS;
119 static inline int profile_event_register(enum profile_type t, struct notifier_block * n)
121 return -ENOSYS;
124 static inline int profile_event_unregister(enum profile_type t, struct notifier_block * n)
126 return -ENOSYS;
129 #define profile_task_exit(a) do { } while (0)
130 #define profile_handoff_task(a) (0)
131 #define profile_munmap(a) do { } while (0)
133 static inline int register_timer_hook(int (*hook)(struct pt_regs *))
135 return -ENOSYS;
138 static inline void unregister_timer_hook(int (*hook)(struct pt_regs *))
140 return;
143 #endif /* CONFIG_PROFILING */
145 #endif /* _LINUX_PROFILE_H */