diff options
| author | Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> | 2008-11-14 17:47:47 -0500 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2008-11-16 03:01:36 -0500 |
| commit | 7e066fb870fcd1025ec3ba7bbde5d541094f4ce1 (patch) | |
| tree | 52acda06de25c029b9834110d7bf6b4abc50353b | |
| parent | 32f85742778dfc2c74975cf0b9f5bdb13470cb32 (diff) | |
tracepoints: add DECLARE_TRACE() and DEFINE_TRACE()
Impact: API *CHANGE*. Must update all tracepoint users.
Add DEFINE_TRACE() to tracepoints to let them declare the tracepoint
structure in a single spot for all the kernel. It helps reducing memory
consumption, especially when declaring a lot of tracepoints, e.g. for
kmalloc tracing.
*API CHANGE WARNING*: now, DECLARE_TRACE() must be used in headers for
tracepoint declarations rather than DEFINE_TRACE(). This is the sane way
to do it. The name previously used was misleading.
Updates scheduler instrumentation to follow this API change.
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
| -rw-r--r-- | Documentation/tracepoints.txt | 7 | ||||
| -rw-r--r-- | include/asm-generic/vmlinux.lds.h | 1 | ||||
| -rw-r--r-- | include/linux/tracepoint.h | 35 | ||||
| -rw-r--r-- | include/trace/sched.h | 24 | ||||
| -rw-r--r-- | kernel/exit.c | 4 | ||||
| -rw-r--r-- | kernel/fork.c | 2 | ||||
| -rw-r--r-- | kernel/kthread.c | 3 | ||||
| -rw-r--r-- | kernel/sched.c | 6 | ||||
| -rw-r--r-- | kernel/signal.c | 2 | ||||
| -rw-r--r-- | samples/tracepoints/tp-samples-trace.h | 4 | ||||
| -rw-r--r-- | samples/tracepoints/tracepoint-sample.c | 3 |
11 files changed, 66 insertions, 25 deletions
diff --git a/Documentation/tracepoints.txt b/Documentation/tracepoints.txt index 5d354e167494..e8ad47b437f3 100644 --- a/Documentation/tracepoints.txt +++ b/Documentation/tracepoints.txt | |||
| @@ -42,7 +42,7 @@ In include/trace/subsys.h : | |||
| 42 | 42 | ||
| 43 | #include <linux/tracepoint.h> | 43 | #include <linux/tracepoint.h> |
| 44 | 44 | ||
| 45 | DEFINE_TRACE(subsys_eventname, | 45 | DECLARE_TRACE(subsys_eventname, |
| 46 | TPPTOTO(int firstarg, struct task_struct *p), | 46 | TPPTOTO(int firstarg, struct task_struct *p), |
| 47 | TPARGS(firstarg, p)); | 47 | TPARGS(firstarg, p)); |
| 48 | 48 | ||
| @@ -50,6 +50,8 @@ In subsys/file.c (where the tracing statement must be added) : | |||
| 50 | 50 | ||
| 51 | #include <trace/subsys.h> | 51 | #include <trace/subsys.h> |
| 52 | 52 | ||
| 53 | DEFINE_TRACE(subsys_eventname); | ||
| 54 | |||
| 53 | void somefct(void) | 55 | void somefct(void) |
| 54 | { | 56 | { |
| 55 | ... | 57 | ... |
| @@ -86,6 +88,9 @@ to limit collisions. Tracepoint names are global to the kernel: they are | |||
| 86 | considered as being the same whether they are in the core kernel image or in | 88 | considered as being the same whether they are in the core kernel image or in |
| 87 | modules. | 89 | modules. |
| 88 | 90 | ||
| 91 | If the tracepoint has to be used in kernel modules, an | ||
| 92 | EXPORT_TRACEPOINT_SYMBOL_GPL() or EXPORT_TRACEPOINT_SYMBOL() can be used to | ||
| 93 | export the defined tracepoints. | ||
| 89 | 94 | ||
| 90 | * Probe / tracepoint example | 95 | * Probe / tracepoint example |
| 91 | 96 | ||
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h index a5e4ed9baec8..3b46ae464933 100644 --- a/include/asm-generic/vmlinux.lds.h +++ b/include/asm-generic/vmlinux.lds.h | |||
| @@ -71,6 +71,7 @@ | |||
| 71 | VMLINUX_SYMBOL(__start___markers) = .; \ | 71 | VMLINUX_SYMBOL(__start___markers) = .; \ |
| 72 | *(__markers) \ | 72 | *(__markers) \ |
| 73 | VMLINUX_SYMBOL(__stop___markers) = .; \ | 73 | VMLINUX_SYMBOL(__stop___markers) = .; \ |
| 74 | . = ALIGN(32); \ | ||
| 74 | VMLINUX_SYMBOL(__start___tracepoints) = .; \ | 75 | VMLINUX_SYMBOL(__start___tracepoints) = .; \ |
| 75 | *(__tracepoints) \ | 76 | *(__tracepoints) \ |
| 76 | VMLINUX_SYMBOL(__stop___tracepoints) = .; \ | 77 | VMLINUX_SYMBOL(__stop___tracepoints) = .; \ |
diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h index 7e9b42aeae0e..757005458366 100644 --- a/include/linux/tracepoint.h +++ b/include/linux/tracepoint.h | |||
| @@ -24,8 +24,12 @@ struct tracepoint { | |||
| 24 | const char *name; /* Tracepoint name */ | 24 | const char *name; /* Tracepoint name */ |
| 25 | int state; /* State. */ | 25 | int state; /* State. */ |
| 26 | void **funcs; | 26 | void **funcs; |
| 27 | } __attribute__((aligned(8))); | 27 | } __attribute__((aligned(32))); /* |
| 28 | 28 | * Aligned on 32 bytes because it is | |
| 29 | * globally visible and gcc happily | ||
| 30 | * align these on the structure size. | ||
| 31 | * Keep in sync with vmlinux.lds.h. | ||
| 32 | */ | ||
| 29 | 33 | ||
| 30 | #define TPPROTO(args...) args | 34 | #define TPPROTO(args...) args |
| 31 | #define TPARGS(args...) args | 35 | #define TPARGS(args...) args |
| @@ -55,15 +59,10 @@ struct tracepoint { | |||
| 55 | * not add unwanted padding between the beginning of the section and the | 59 | * not add unwanted padding between the beginning of the section and the |
| 56 | * structure. Force alignment to the same alignment as the section start. | 60 | * structure. Force alignment to the same alignment as the section start. |
| 57 | */ | 61 | */ |
| 58 | #define DEFINE_TRACE(name, proto, args) \ | 62 | #define DECLARE_TRACE(name, proto, args) \ |
| 63 | extern struct tracepoint __tracepoint_##name; \ | ||
| 59 | static inline void trace_##name(proto) \ | 64 | static inline void trace_##name(proto) \ |
| 60 | { \ | 65 | { \ |
| 61 | static const char __tpstrtab_##name[] \ | ||
| 62 | __attribute__((section("__tracepoints_strings"))) \ | ||
| 63 | = #name; \ | ||
| 64 | static struct tracepoint __tracepoint_##name \ | ||
| 65 | __attribute__((section("__tracepoints"), aligned(8))) = \ | ||
| 66 | { __tpstrtab_##name, 0, NULL }; \ | ||
| 67 | if (unlikely(__tracepoint_##name.state)) \ | 66 | if (unlikely(__tracepoint_##name.state)) \ |
| 68 | __DO_TRACE(&__tracepoint_##name, \ | 67 | __DO_TRACE(&__tracepoint_##name, \ |
| 69 | TPPROTO(proto), TPARGS(args)); \ | 68 | TPPROTO(proto), TPARGS(args)); \ |
| @@ -77,11 +76,23 @@ struct tracepoint { | |||
| 77 | return tracepoint_probe_unregister(#name, (void *)probe);\ | 76 | return tracepoint_probe_unregister(#name, (void *)probe);\ |
| 78 | } | 77 | } |
| 79 | 78 | ||
| 79 | #define DEFINE_TRACE(name) \ | ||
| 80 | static const char __tpstrtab_##name[] \ | ||
| 81 | __attribute__((section("__tracepoints_strings"))) = #name; \ | ||
| 82 | struct tracepoint __tracepoint_##name \ | ||
| 83 | __attribute__((section("__tracepoints"), aligned(32))) = \ | ||
| 84 | { __tpstrtab_##name, 0, NULL } | ||
| 85 | |||
| 86 | #define EXPORT_TRACEPOINT_SYMBOL_GPL(name) \ | ||
| 87 | EXPORT_SYMBOL_GPL(__tracepoint_##name) | ||
| 88 | #define EXPORT_TRACEPOINT_SYMBOL(name) \ | ||
| 89 | EXPORT_SYMBOL(__tracepoint_##name) | ||
| 90 | |||
| 80 | extern void tracepoint_update_probe_range(struct tracepoint *begin, | 91 | extern void tracepoint_update_probe_range(struct tracepoint *begin, |
| 81 | struct tracepoint *end); | 92 | struct tracepoint *end); |
| 82 | 93 | ||
| 83 | #else /* !CONFIG_TRACEPOINTS */ | 94 | #else /* !CONFIG_TRACEPOINTS */ |
| 84 | #define DEFINE_TRACE(name, proto, args) \ | 95 | #define DECLARE_TRACE(name, proto, args) \ |
| 85 | static inline void _do_trace_##name(struct tracepoint *tp, proto) \ | 96 | static inline void _do_trace_##name(struct tracepoint *tp, proto) \ |
| 86 | { } \ | 97 | { } \ |
| 87 | static inline void trace_##name(proto) \ | 98 | static inline void trace_##name(proto) \ |
| @@ -95,6 +106,10 @@ extern void tracepoint_update_probe_range(struct tracepoint *begin, | |||
| 95 | return -ENOSYS; \ | 106 | return -ENOSYS; \ |
| 96 | } | 107 | } |
| 97 | 108 | ||
| 109 | #define DEFINE_TRACE(name) | ||
| 110 | #define EXPORT_TRACEPOINT_SYMBOL_GPL(name) | ||
| 111 | #define EXPORT_TRACEPOINT_SYMBOL(name) | ||
| 112 | |||
| 98 | static inline void tracepoint_update_probe_range(struct tracepoint *begin, | 113 | static inline void tracepoint_update_probe_range(struct tracepoint *begin, |
| 99 | struct tracepoint *end) | 114 | struct tracepoint *end) |
| 100 | { } | 115 | { } |
diff --git a/include/trace/sched.h b/include/trace/sched.h index ad47369d01b5..9b2854abf7e2 100644 --- a/include/trace/sched.h +++ b/include/trace/sched.h | |||
| @@ -4,52 +4,52 @@ | |||
| 4 | #include <linux/sched.h> | 4 | #include <linux/sched.h> |
| 5 | #include <linux/tracepoint.h> | 5 | #include <linux/tracepoint.h> |
| 6 | 6 | ||
| 7 | DEFINE_TRACE(sched_kthread_stop, | 7 | DECLARE_TRACE(sched_kthread_stop, |
| 8 | TPPROTO(struct task_struct *t), | 8 | TPPROTO(struct task_struct *t), |
| 9 | TPARGS(t)); | 9 | TPARGS(t)); |
| 10 | 10 | ||
| 11 | DEFINE_TRACE(sched_kthread_stop_ret, | 11 | DECLARE_TRACE(sched_kthread_stop_ret, |
| 12 | TPPROTO(int ret), | 12 | TPPROTO(int ret), |
| 13 | TPARGS(ret)); | 13 | TPARGS(ret)); |
| 14 | 14 | ||
| 15 | DEFINE_TRACE(sched_wait_task, | 15 | DECLARE_TRACE(sched_wait_task, |
| 16 | TPPROTO(struct rq *rq, struct task_struct *p), | 16 | TPPROTO(struct rq *rq, struct task_struct *p), |
| 17 | TPARGS(rq, p)); | 17 | TPARGS(rq, p)); |
| 18 | 18 | ||
| 19 | DEFINE_TRACE(sched_wakeup, | 19 | DECLARE_TRACE(sched_wakeup, |
| 20 | TPPROTO(struct rq *rq, struct task_struct *p), | 20 | TPPROTO(struct rq *rq, struct task_struct *p), |
| 21 | TPARGS(rq, p)); | 21 | TPARGS(rq, p)); |
| 22 | 22 | ||
| 23 | DEFINE_TRACE(sched_wakeup_new, | 23 | DECLARE_TRACE(sched_wakeup_new, |
| 24 | TPPROTO(struct rq *rq, struct task_struct *p), | 24 | TPPROTO(struct rq *rq, struct task_struct *p), |
| 25 | TPARGS(rq, p)); | 25 | TPARGS(rq, p)); |
| 26 | 26 | ||
| 27 | DEFINE_TRACE(sched_switch, | 27 | DECLARE_TRACE(sched_switch, |
| 28 | TPPROTO(struct rq *rq, struct task_struct *prev, | 28 | TPPROTO(struct rq *rq, struct task_struct *prev, |
| 29 | struct task_struct *next), | 29 | struct task_struct *next), |
| 30 | TPARGS(rq, prev, next)); | 30 | TPARGS(rq, prev, next)); |
| 31 | 31 | ||
| 32 | DEFINE_TRACE(sched_migrate_task, | 32 | DECLARE_TRACE(sched_migrate_task, |
| 33 | TPPROTO(struct rq *rq, struct task_struct *p, int dest_cpu), | 33 | TPPROTO(struct rq *rq, struct task_struct *p, int dest_cpu), |
| 34 | TPARGS(rq, p, dest_cpu)); | 34 | TPARGS(rq, p, dest_cpu)); |
| 35 | 35 | ||
| 36 | DEFINE_TRACE(sched_process_free, | 36 | DECLARE_TRACE(sched_process_free, |
| 37 | TPPROTO(struct task_struct *p), | 37 | TPPROTO(struct task_struct *p), |
| 38 | TPARGS(p)); | 38 | TPARGS(p)); |
| 39 | 39 | ||
| 40 | DEFINE_TRACE(sched_process_exit, | 40 | DECLARE_TRACE(sched_process_exit, |
| 41 | TPPROTO(struct task_struct *p), | 41 | TPPROTO(struct task_struct *p), |
| 42 | TPARGS(p)); | 42 | TPARGS(p)); |
| 43 | 43 | ||
| 44 | DEFINE_TRACE(sched_process_wait, | 44 | DECLARE_TRACE(sched_process_wait, |
| 45 | TPPROTO(struct pid *pid), | 45 | TPPROTO(struct pid *pid), |
| 46 | TPARGS(pid)); | 46 | TPARGS(pid)); |
| 47 | 47 | ||
| 48 | DEFINE_TRACE(sched_process_fork, | 48 | DECLARE_TRACE(sched_process_fork, |
| 49 | TPPROTO(struct task_struct *parent, struct task_struct *child), | 49 | TPPROTO(struct task_struct *parent, struct task_struct *child), |
| 50 | TPARGS(parent, child)); | 50 | TPARGS(parent, child)); |
| 51 | 51 | ||
| 52 | DEFINE_TRACE(sched_signal_send, | 52 | DECLARE_TRACE(sched_signal_send, |
| 53 | TPPROTO(int sig, struct task_struct *p), | 53 | TPPROTO(int sig, struct task_struct *p), |
| 54 | TPARGS(sig, p)); | 54 | TPARGS(sig, p)); |
| 55 | 55 | ||
diff --git a/kernel/exit.c b/kernel/exit.c index ae2b92be5fae..f995d2418668 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
| @@ -54,6 +54,10 @@ | |||
| 54 | #include <asm/pgtable.h> | 54 | #include <asm/pgtable.h> |
| 55 | #include <asm/mmu_context.h> | 55 | #include <asm/mmu_context.h> |
| 56 | 56 | ||
| 57 | DEFINE_TRACE(sched_process_free); | ||
| 58 | DEFINE_TRACE(sched_process_exit); | ||
| 59 | DEFINE_TRACE(sched_process_wait); | ||
| 60 | |||
| 57 | static void exit_mm(struct task_struct * tsk); | 61 | static void exit_mm(struct task_struct * tsk); |
| 58 | 62 | ||
| 59 | static inline int task_detached(struct task_struct *p) | 63 | static inline int task_detached(struct task_struct *p) |
diff --git a/kernel/fork.c b/kernel/fork.c index f6083561dfe0..0837d0deee5f 100644 --- a/kernel/fork.c +++ b/kernel/fork.c | |||
| @@ -79,6 +79,8 @@ DEFINE_PER_CPU(unsigned long, process_counts) = 0; | |||
| 79 | 79 | ||
| 80 | __cacheline_aligned DEFINE_RWLOCK(tasklist_lock); /* outer */ | 80 | __cacheline_aligned DEFINE_RWLOCK(tasklist_lock); /* outer */ |
| 81 | 81 | ||
| 82 | DEFINE_TRACE(sched_process_fork); | ||
| 83 | |||
| 82 | int nr_processes(void) | 84 | int nr_processes(void) |
| 83 | { | 85 | { |
| 84 | int cpu; | 86 | int cpu; |
diff --git a/kernel/kthread.c b/kernel/kthread.c index 8e7a7ce3ed0a..4fbc456f393d 100644 --- a/kernel/kthread.c +++ b/kernel/kthread.c | |||
| @@ -21,6 +21,9 @@ static DEFINE_SPINLOCK(kthread_create_lock); | |||
| 21 | static LIST_HEAD(kthread_create_list); | 21 | static LIST_HEAD(kthread_create_list); |
| 22 | struct task_struct *kthreadd_task; | 22 | struct task_struct *kthreadd_task; |
| 23 | 23 | ||
| 24 | DEFINE_TRACE(sched_kthread_stop); | ||
| 25 | DEFINE_TRACE(sched_kthread_stop_ret); | ||
| 26 | |||
| 24 | struct kthread_create_info | 27 | struct kthread_create_info |
| 25 | { | 28 | { |
| 26 | /* Information passed to kthread() from kthreadd. */ | 29 | /* Information passed to kthread() from kthreadd. */ |
diff --git a/kernel/sched.c b/kernel/sched.c index 50a21f964679..327f91c63c99 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
| @@ -118,6 +118,12 @@ | |||
| 118 | */ | 118 | */ |
| 119 | #define RUNTIME_INF ((u64)~0ULL) | 119 | #define RUNTIME_INF ((u64)~0ULL) |
| 120 | 120 | ||
| 121 | DEFINE_TRACE(sched_wait_task); | ||
| 122 | DEFINE_TRACE(sched_wakeup); | ||
| 123 | DEFINE_TRACE(sched_wakeup_new); | ||
| 124 | DEFINE_TRACE(sched_switch); | ||
| 125 | DEFINE_TRACE(sched_migrate_task); | ||
| 126 | |||
| 121 | #ifdef CONFIG_SMP | 127 | #ifdef CONFIG_SMP |
| 122 | /* | 128 | /* |
| 123 | * Divide a load by a sched group cpu_power : (load / sg->__cpu_power) | 129 | * Divide a load by a sched group cpu_power : (load / sg->__cpu_power) |
diff --git a/kernel/signal.c b/kernel/signal.c index 4530fc654455..e9afe63da24b 100644 --- a/kernel/signal.c +++ b/kernel/signal.c | |||
| @@ -41,6 +41,8 @@ | |||
| 41 | 41 | ||
| 42 | static struct kmem_cache *sigqueue_cachep; | 42 | static struct kmem_cache *sigqueue_cachep; |
| 43 | 43 | ||
| 44 | DEFINE_TRACE(sched_signal_send); | ||
| 45 | |||
| 44 | static void __user *sig_handler(struct task_struct *t, int sig) | 46 | static void __user *sig_handler(struct task_struct *t, int sig) |
| 45 | { | 47 | { |
| 46 | return t->sighand->action[sig - 1].sa.sa_handler; | 48 | return t->sighand->action[sig - 1].sa.sa_handler; |
diff --git a/samples/tracepoints/tp-samples-trace.h b/samples/tracepoints/tp-samples-trace.h index 0216b55bd640..01724e04c556 100644 --- a/samples/tracepoints/tp-samples-trace.h +++ b/samples/tracepoints/tp-samples-trace.h | |||
| @@ -4,10 +4,10 @@ | |||
| 4 | #include <linux/proc_fs.h> /* for struct inode and struct file */ | 4 | #include <linux/proc_fs.h> /* for struct inode and struct file */ |
| 5 | #include <linux/tracepoint.h> | 5 | #include <linux/tracepoint.h> |
| 6 | 6 | ||
| 7 | DEFINE_TRACE(subsys_event, | 7 | DECLARE_TRACE(subsys_event, |
| 8 | TPPROTO(struct inode *inode, struct file *file), | 8 | TPPROTO(struct inode *inode, struct file *file), |
| 9 | TPARGS(inode, file)); | 9 | TPARGS(inode, file)); |
| 10 | DEFINE_TRACE(subsys_eventb, | 10 | DECLARE_TRACE(subsys_eventb, |
| 11 | TPPROTO(void), | 11 | TPPROTO(void), |
| 12 | TPARGS()); | 12 | TPARGS()); |
| 13 | #endif | 13 | #endif |
diff --git a/samples/tracepoints/tracepoint-sample.c b/samples/tracepoints/tracepoint-sample.c index 4ae4b7fcc043..00d169792a3e 100644 --- a/samples/tracepoints/tracepoint-sample.c +++ b/samples/tracepoints/tracepoint-sample.c | |||
| @@ -13,6 +13,9 @@ | |||
| 13 | #include <linux/proc_fs.h> | 13 | #include <linux/proc_fs.h> |
| 14 | #include "tp-samples-trace.h" | 14 | #include "tp-samples-trace.h" |
| 15 | 15 | ||
| 16 | DEFINE_TRACE(subsys_event); | ||
| 17 | DEFINE_TRACE(subsys_eventb); | ||
| 18 | |||
| 16 | struct proc_dir_entry *pentry_example; | 19 | struct proc_dir_entry *pentry_example; |
| 17 | 20 | ||
| 18 | static int my_open(struct inode *inode, struct file *file) | 21 | static int my_open(struct inode *inode, struct file *file) |
