net: Fix recursive descent in __scm_destroy().
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / profile.h
blob7e7087239af5fc0497ebf40bf92d65cb99b5749f
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 void __init profile_init(void);
39 void profile_tick(int type);
42 * Add multiple profiler hits to a given address:
44 void profile_hits(int type, void *ip, unsigned int nr_hits);
47 * Single profiler hit:
49 static inline void profile_hit(int type, void *ip)
52 * Speedup for the common (no profiling enabled) case:
54 if (unlikely(prof_on == type))
55 profile_hits(type, ip, 1);
58 struct task_struct;
59 struct mm_struct;
61 /* task is in do_exit() */
62 void profile_task_exit(struct task_struct * task);
64 /* task is dead, free task struct ? Returns 1 if
65 * the task was taken, 0 if the task should be freed.
67 int profile_handoff_task(struct task_struct * task);
69 /* sys_munmap */
70 void profile_munmap(unsigned long addr);
72 int task_handoff_register(struct notifier_block * n);
73 int task_handoff_unregister(struct notifier_block * n);
75 int profile_event_register(enum profile_type, struct notifier_block * n);
76 int profile_event_unregister(enum profile_type, struct notifier_block * n);
78 int register_timer_hook(int (*hook)(struct pt_regs *));
79 void unregister_timer_hook(int (*hook)(struct pt_regs *));
81 struct pt_regs;
83 #else
85 #define prof_on 0
87 static inline void profile_init(void)
89 return;
92 static inline void profile_tick(int type)
94 return;
97 static inline void profile_hits(int type, void *ip, unsigned int nr_hits)
99 return;
102 static inline void profile_hit(int type, void *ip)
104 return;
107 static inline int task_handoff_register(struct notifier_block * n)
109 return -ENOSYS;
112 static inline int task_handoff_unregister(struct notifier_block * n)
114 return -ENOSYS;
117 static inline int profile_event_register(enum profile_type t, struct notifier_block * n)
119 return -ENOSYS;
122 static inline int profile_event_unregister(enum profile_type t, struct notifier_block * n)
124 return -ENOSYS;
127 #define profile_task_exit(a) do { } while (0)
128 #define profile_handoff_task(a) (0)
129 #define profile_munmap(a) do { } while (0)
131 static inline int register_timer_hook(int (*hook)(struct pt_regs *))
133 return -ENOSYS;
136 static inline void unregister_timer_hook(int (*hook)(struct pt_regs *))
138 return;
141 #endif /* CONFIG_PROFILING */
143 #endif /* _LINUX_PROFILE_H */