2 * ring buffer based function tracer
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
7 * Originally taken from the RT patch by:
8 * Arnaldo Carvalho de Melo <acme@redhat.com>
10 * Based on code from the latency_tracer, that is:
11 * Copyright (C) 2004-2006 Ingo Molnar
12 * Copyright (C) 2004 William Lee Irwin III
14 #include <linux/utsrelease.h>
15 #include <linux/kallsyms.h>
16 #include <linux/seq_file.h>
17 #include <linux/notifier.h>
18 #include <linux/debugfs.h>
19 #include <linux/pagemap.h>
20 #include <linux/hardirq.h>
21 #include <linux/linkage.h>
22 #include <linux/uaccess.h>
23 #include <linux/ftrace.h>
24 #include <linux/module.h>
25 #include <linux/percpu.h>
26 #include <linux/kdebug.h>
27 #include <linux/ctype.h>
28 #include <linux/init.h>
29 #include <linux/poll.h>
30 #include <linux/gfp.h>
32 #include <linux/kprobes.h>
33 #include <linux/writeback.h>
35 #include <linux/stacktrace.h>
36 #include <linux/ring_buffer.h>
37 #include <linux/irqflags.h>
40 #include "trace_output.h"
42 #define TRACE_BUFFER_FLAGS (RB_FL_OVERWRITE)
44 unsigned long __read_mostly tracing_max_latency;
45 unsigned long __read_mostly tracing_thresh;
48 * We need to change this state when a selftest is running.
49 * A selftest will lurk into the ring-buffer to count the
50 * entries inserted during the selftest although some concurrent
51 * insertions into the ring-buffer such as ftrace_printk could occurred
52 * at the same time, giving false positive or negative results.
54 static bool __read_mostly tracing_selftest_running;
56 /* For tracers that don't implement custom flags */
57 static struct tracer_opt dummy_tracer_opt[] = {
61 static struct tracer_flags dummy_tracer_flags = {
63 .opts = dummy_tracer_opt
66 static int dummy_set_flag(u32 old_flags, u32 bit, int set)
72 * Kill all tracing for good (never come back).
73 * It is initialized to 1 but will turn to zero if the initialization
74 * of the tracer is successful. But that is the only place that sets
77 int tracing_disabled = 1;
79 static DEFINE_PER_CPU(local_t, ftrace_cpu_disabled);
81 static inline void ftrace_disable_cpu(void)
84 local_inc(&__get_cpu_var(ftrace_cpu_disabled));
87 static inline void ftrace_enable_cpu(void)
89 local_dec(&__get_cpu_var(ftrace_cpu_disabled));
93 static cpumask_var_t __read_mostly tracing_buffer_mask;
95 #define for_each_tracing_cpu(cpu) \
96 for_each_cpu(cpu, tracing_buffer_mask)
99 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
101 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
102 * is set, then ftrace_dump is called. This will output the contents
103 * of the ftrace buffers to the console. This is very useful for
104 * capturing traces that lead to crashes and outputing it to a
107 * It is default off, but you can enable it with either specifying
108 * "ftrace_dump_on_oops" in the kernel command line, or setting
109 * /proc/sys/kernel/ftrace_dump_on_oops to true.
111 int ftrace_dump_on_oops;
113 static int tracing_set_tracer(char *buf);
115 static int __init set_ftrace(char *str)
117 tracing_set_tracer(str);
120 __setup("ftrace", set_ftrace);
122 static int __init set_ftrace_dump_on_oops(char *str)
124 ftrace_dump_on_oops = 1;
127 __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
130 ns2usecs(cycle_t nsec)
137 cycle_t ftrace_now(int cpu)
139 u64 ts = ring_buffer_time_stamp(cpu);
140 ring_buffer_normalize_time_stamp(cpu, &ts);
145 * The global_trace is the descriptor that holds the tracing
146 * buffers for the live tracing. For each CPU, it contains
147 * a link list of pages that will store trace entries. The
148 * page descriptor of the pages in the memory is used to hold
149 * the link list by linking the lru item in the page descriptor
150 * to each of the pages in the buffer per CPU.
152 * For each active CPU there is a data field that holds the
153 * pages for the buffer for that CPU. Each CPU has the same number
154 * of pages allocated for its buffer.
156 static struct trace_array global_trace;
158 static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
161 * The max_tr is used to snapshot the global_trace when a maximum
162 * latency is reached. Some tracers will use this to store a maximum
163 * trace while it continues examining live traces.
165 * The buffers for the max_tr are set up the same as the global_trace.
166 * When a snapshot is taken, the link list of the max_tr is swapped
167 * with the link list of the global_trace and the buffers are reset for
168 * the global_trace so the tracing can continue.
170 static struct trace_array max_tr;
172 static DEFINE_PER_CPU(struct trace_array_cpu, max_data);
174 /* tracer_enabled is used to toggle activation of a tracer */
175 static int tracer_enabled = 1;
178 * tracing_is_enabled - return tracer_enabled status
180 * This function is used by other tracers to know the status
181 * of the tracer_enabled flag. Tracers may use this function
182 * to know if it should enable their features when starting
183 * up. See irqsoff tracer for an example (start_irqsoff_tracer).
185 int tracing_is_enabled(void)
187 return tracer_enabled;
191 * trace_buf_size is the size in bytes that is allocated
192 * for a buffer. Note, the number of bytes is always rounded
195 * This number is purposely set to a low number of 16384.
196 * If the dump on oops happens, it will be much appreciated
197 * to not have to wait for all that output. Anyway this can be
198 * boot time and run time configurable.
200 #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
202 static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
204 /* trace_types holds a link list of available tracers. */
205 static struct tracer *trace_types __read_mostly;
207 /* current_trace points to the tracer that is currently active */
208 static struct tracer *current_trace __read_mostly;
211 * max_tracer_type_len is used to simplify the allocating of
212 * buffers to read userspace tracer names. We keep track of
213 * the longest tracer name registered.
215 static int max_tracer_type_len;
218 * trace_types_lock is used to protect the trace_types list.
219 * This lock is also used to keep user access serialized.
220 * Accesses from userspace will grab this lock while userspace
221 * activities happen inside the kernel.
223 static DEFINE_MUTEX(trace_types_lock);
225 /* trace_wait is a waitqueue for tasks blocked on trace_poll */
226 static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
228 /* trace_flags holds trace_options default values */
229 unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK |
233 * trace_wake_up - wake up tasks waiting for trace input
235 * Simply wakes up any task that is blocked on the trace_wait
236 * queue. These is used with trace_poll for tasks polling the trace.
238 void trace_wake_up(void)
241 * The runqueue_is_locked() can fail, but this is the best we
244 if (!(trace_flags & TRACE_ITER_BLOCK) && !runqueue_is_locked())
245 wake_up(&trace_wait);
248 static int __init set_buf_size(char *str)
250 unsigned long buf_size;
255 ret = strict_strtoul(str, 0, &buf_size);
256 /* nr_entries can not be zero */
257 if (ret < 0 || buf_size == 0)
259 trace_buf_size = buf_size;
262 __setup("trace_buf_size=", set_buf_size);
264 unsigned long nsecs_to_usecs(unsigned long nsecs)
269 /* These must match the bit postions in trace_iterator_flags */
270 static const char *trace_options[] = {
292 * ftrace_max_lock is used to protect the swapping of buffers
293 * when taking a max snapshot. The buffers themselves are
294 * protected by per_cpu spinlocks. But the action of the swap
295 * needs its own lock.
297 * This is defined as a raw_spinlock_t in order to help
298 * with performance when lockdep debugging is enabled.
300 static raw_spinlock_t ftrace_max_lock =
301 (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
304 * Copy the new maximum trace into the separate maximum-trace
305 * structure. (this way the maximum trace is permanently saved,
306 * for later retrieval via /debugfs/tracing/latency_trace)
309 __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
311 struct trace_array_cpu *data = tr->data[cpu];
314 max_tr.time_start = data->preempt_timestamp;
316 data = max_tr.data[cpu];
317 data->saved_latency = tracing_max_latency;
319 memcpy(data->comm, tsk->comm, TASK_COMM_LEN);
320 data->pid = tsk->pid;
321 data->uid = task_uid(tsk);
322 data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
323 data->policy = tsk->policy;
324 data->rt_priority = tsk->rt_priority;
326 /* record this tasks comm */
327 tracing_record_cmdline(current);
331 trace_seq_reset(struct trace_seq *s)
337 ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
342 if (s->len <= s->readpos)
345 len = s->len - s->readpos;
348 ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
357 trace_print_seq(struct seq_file *m, struct trace_seq *s)
359 int len = s->len >= PAGE_SIZE ? PAGE_SIZE - 1 : s->len;
362 seq_puts(m, s->buffer);
368 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
370 * @tsk: the task with the latency
371 * @cpu: The cpu that initiated the trace.
373 * Flip the buffers between the @tr and the max_tr and record information
374 * about which task was the cause of this latency.
377 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
379 struct ring_buffer *buf = tr->buffer;
381 WARN_ON_ONCE(!irqs_disabled());
382 __raw_spin_lock(&ftrace_max_lock);
384 tr->buffer = max_tr.buffer;
387 ftrace_disable_cpu();
388 ring_buffer_reset(tr->buffer);
391 __update_max_tr(tr, tsk, cpu);
392 __raw_spin_unlock(&ftrace_max_lock);
396 * update_max_tr_single - only copy one trace over, and reset the rest
398 * @tsk - task with the latency
399 * @cpu - the cpu of the buffer to copy.
401 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
404 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
408 WARN_ON_ONCE(!irqs_disabled());
409 __raw_spin_lock(&ftrace_max_lock);
411 ftrace_disable_cpu();
413 ring_buffer_reset(max_tr.buffer);
414 ret = ring_buffer_swap_cpu(max_tr.buffer, tr->buffer, cpu);
420 __update_max_tr(tr, tsk, cpu);
421 __raw_spin_unlock(&ftrace_max_lock);
425 * register_tracer - register a tracer with the ftrace system.
426 * @type - the plugin for the tracer
428 * Register a new plugin tracer.
430 int register_tracer(struct tracer *type)
437 pr_info("Tracer must have a name\n");
442 * When this gets called we hold the BKL which means that
443 * preemption is disabled. Various trace selftests however
444 * need to disable and enable preemption for successful tests.
445 * So we drop the BKL here and grab it after the tests again.
448 mutex_lock(&trace_types_lock);
450 tracing_selftest_running = true;
452 for (t = trace_types; t; t = t->next) {
453 if (strcmp(type->name, t->name) == 0) {
455 pr_info("Trace %s already registered\n",
463 type->set_flag = &dummy_set_flag;
465 type->flags = &dummy_tracer_flags;
467 if (!type->flags->opts)
468 type->flags->opts = dummy_tracer_opt;
470 #ifdef CONFIG_FTRACE_STARTUP_TEST
471 if (type->selftest) {
472 struct tracer *saved_tracer = current_trace;
473 struct trace_array *tr = &global_trace;
477 * Run a selftest on this tracer.
478 * Here we reset the trace buffer, and set the current
479 * tracer to be this tracer. The tracer can then run some
480 * internal tracing to verify that everything is in order.
481 * If we fail, we do not register this tracer.
483 for_each_tracing_cpu(i)
484 tracing_reset(tr, i);
486 current_trace = type;
487 /* the test is responsible for initializing and enabling */
488 pr_info("Testing tracer %s: ", type->name);
489 ret = type->selftest(type, tr);
490 /* the test is responsible for resetting too */
491 current_trace = saved_tracer;
493 printk(KERN_CONT "FAILED!\n");
496 /* Only reset on passing, to avoid touching corrupted buffers */
497 for_each_tracing_cpu(i)
498 tracing_reset(tr, i);
500 printk(KERN_CONT "PASSED\n");
504 type->next = trace_types;
506 len = strlen(type->name);
507 if (len > max_tracer_type_len)
508 max_tracer_type_len = len;
511 tracing_selftest_running = false;
512 mutex_unlock(&trace_types_lock);
518 void unregister_tracer(struct tracer *type)
523 mutex_lock(&trace_types_lock);
524 for (t = &trace_types; *t; t = &(*t)->next) {
528 pr_info("Trace %s not registered\n", type->name);
533 if (strlen(type->name) != max_tracer_type_len)
536 max_tracer_type_len = 0;
537 for (t = &trace_types; *t; t = &(*t)->next) {
538 len = strlen((*t)->name);
539 if (len > max_tracer_type_len)
540 max_tracer_type_len = len;
543 mutex_unlock(&trace_types_lock);
546 void tracing_reset(struct trace_array *tr, int cpu)
548 ftrace_disable_cpu();
549 ring_buffer_reset_cpu(tr->buffer, cpu);
553 void tracing_reset_online_cpus(struct trace_array *tr)
557 tr->time_start = ftrace_now(tr->cpu);
559 for_each_online_cpu(cpu)
560 tracing_reset(tr, cpu);
563 #define SAVED_CMDLINES 128
564 static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
565 static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
566 static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
567 static int cmdline_idx;
568 static DEFINE_SPINLOCK(trace_cmdline_lock);
570 /* temporary disable recording */
571 atomic_t trace_record_cmdline_disabled __read_mostly;
573 static void trace_init_cmdlines(void)
575 memset(&map_pid_to_cmdline, -1, sizeof(map_pid_to_cmdline));
576 memset(&map_cmdline_to_pid, -1, sizeof(map_cmdline_to_pid));
580 static int trace_stop_count;
581 static DEFINE_SPINLOCK(tracing_start_lock);
584 * ftrace_off_permanent - disable all ftrace code permanently
586 * This should only be called when a serious anomally has
587 * been detected. This will turn off the function tracing,
588 * ring buffers, and other tracing utilites. It takes no
589 * locks and can be called from any context.
591 void ftrace_off_permanent(void)
593 tracing_disabled = 1;
595 tracing_off_permanent();
599 * tracing_start - quick start of the tracer
601 * If tracing is enabled but was stopped by tracing_stop,
602 * this will start the tracer back up.
604 void tracing_start(void)
606 struct ring_buffer *buffer;
609 if (tracing_disabled)
612 spin_lock_irqsave(&tracing_start_lock, flags);
613 if (--trace_stop_count)
616 if (trace_stop_count < 0) {
617 /* Someone screwed up their debugging */
619 trace_stop_count = 0;
624 buffer = global_trace.buffer;
626 ring_buffer_record_enable(buffer);
628 buffer = max_tr.buffer;
630 ring_buffer_record_enable(buffer);
634 spin_unlock_irqrestore(&tracing_start_lock, flags);
638 * tracing_stop - quick stop of the tracer
640 * Light weight way to stop tracing. Use in conjunction with
643 void tracing_stop(void)
645 struct ring_buffer *buffer;
649 spin_lock_irqsave(&tracing_start_lock, flags);
650 if (trace_stop_count++)
653 buffer = global_trace.buffer;
655 ring_buffer_record_disable(buffer);
657 buffer = max_tr.buffer;
659 ring_buffer_record_disable(buffer);
662 spin_unlock_irqrestore(&tracing_start_lock, flags);
665 void trace_stop_cmdline_recording(void);
667 static void trace_save_cmdline(struct task_struct *tsk)
672 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
676 * It's not the end of the world if we don't get
677 * the lock, but we also don't want to spin
678 * nor do we want to disable interrupts,
679 * so if we miss here, then better luck next time.
681 if (!spin_trylock(&trace_cmdline_lock))
684 idx = map_pid_to_cmdline[tsk->pid];
685 if (idx >= SAVED_CMDLINES) {
686 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
688 map = map_cmdline_to_pid[idx];
689 if (map <= PID_MAX_DEFAULT)
690 map_pid_to_cmdline[map] = (unsigned)-1;
692 map_pid_to_cmdline[tsk->pid] = idx;
697 memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
699 spin_unlock(&trace_cmdline_lock);
702 char *trace_find_cmdline(int pid)
704 char *cmdline = "<...>";
710 if (pid > PID_MAX_DEFAULT)
713 map = map_pid_to_cmdline[pid];
714 if (map >= SAVED_CMDLINES)
717 cmdline = saved_cmdlines[map];
723 void tracing_record_cmdline(struct task_struct *tsk)
725 if (atomic_read(&trace_record_cmdline_disabled))
728 trace_save_cmdline(tsk);
732 tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags,
735 struct task_struct *tsk = current;
737 entry->preempt_count = pc & 0xff;
738 entry->pid = (tsk) ? tsk->pid : 0;
739 entry->tgid = (tsk) ? tsk->tgid : 0;
741 #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
742 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
744 TRACE_FLAG_IRQS_NOSUPPORT |
746 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
747 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
748 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
752 trace_function(struct trace_array *tr, struct trace_array_cpu *data,
753 unsigned long ip, unsigned long parent_ip, unsigned long flags,
756 struct ring_buffer_event *event;
757 struct ftrace_entry *entry;
758 unsigned long irq_flags;
760 /* If we are reading the ring buffer, don't trace */
761 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
764 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
768 entry = ring_buffer_event_data(event);
769 tracing_generic_entry_update(&entry->ent, flags, pc);
770 entry->ent.type = TRACE_FN;
772 entry->parent_ip = parent_ip;
773 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
776 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
777 static void __trace_graph_entry(struct trace_array *tr,
778 struct trace_array_cpu *data,
779 struct ftrace_graph_ent *trace,
783 struct ring_buffer_event *event;
784 struct ftrace_graph_ent_entry *entry;
785 unsigned long irq_flags;
787 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
790 event = ring_buffer_lock_reserve(global_trace.buffer, sizeof(*entry),
794 entry = ring_buffer_event_data(event);
795 tracing_generic_entry_update(&entry->ent, flags, pc);
796 entry->ent.type = TRACE_GRAPH_ENT;
797 entry->graph_ent = *trace;
798 ring_buffer_unlock_commit(global_trace.buffer, event, irq_flags);
801 static void __trace_graph_return(struct trace_array *tr,
802 struct trace_array_cpu *data,
803 struct ftrace_graph_ret *trace,
807 struct ring_buffer_event *event;
808 struct ftrace_graph_ret_entry *entry;
809 unsigned long irq_flags;
811 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
814 event = ring_buffer_lock_reserve(global_trace.buffer, sizeof(*entry),
818 entry = ring_buffer_event_data(event);
819 tracing_generic_entry_update(&entry->ent, flags, pc);
820 entry->ent.type = TRACE_GRAPH_RET;
822 ring_buffer_unlock_commit(global_trace.buffer, event, irq_flags);
827 ftrace(struct trace_array *tr, struct trace_array_cpu *data,
828 unsigned long ip, unsigned long parent_ip, unsigned long flags,
831 if (likely(!atomic_read(&data->disabled)))
832 trace_function(tr, data, ip, parent_ip, flags, pc);
835 static void __ftrace_trace_stack(struct trace_array *tr,
836 struct trace_array_cpu *data,
840 #ifdef CONFIG_STACKTRACE
841 struct ring_buffer_event *event;
842 struct stack_entry *entry;
843 struct stack_trace trace;
844 unsigned long irq_flags;
846 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
850 entry = ring_buffer_event_data(event);
851 tracing_generic_entry_update(&entry->ent, flags, pc);
852 entry->ent.type = TRACE_STACK;
854 memset(&entry->caller, 0, sizeof(entry->caller));
856 trace.nr_entries = 0;
857 trace.max_entries = FTRACE_STACK_ENTRIES;
859 trace.entries = entry->caller;
861 save_stack_trace(&trace);
862 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
866 static void ftrace_trace_stack(struct trace_array *tr,
867 struct trace_array_cpu *data,
871 if (!(trace_flags & TRACE_ITER_STACKTRACE))
874 __ftrace_trace_stack(tr, data, flags, skip, pc);
877 void __trace_stack(struct trace_array *tr,
878 struct trace_array_cpu *data,
882 __ftrace_trace_stack(tr, data, flags, skip, pc);
885 static void ftrace_trace_userstack(struct trace_array *tr,
886 struct trace_array_cpu *data,
887 unsigned long flags, int pc)
889 #ifdef CONFIG_STACKTRACE
890 struct ring_buffer_event *event;
891 struct userstack_entry *entry;
892 struct stack_trace trace;
893 unsigned long irq_flags;
895 if (!(trace_flags & TRACE_ITER_USERSTACKTRACE))
898 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
902 entry = ring_buffer_event_data(event);
903 tracing_generic_entry_update(&entry->ent, flags, pc);
904 entry->ent.type = TRACE_USER_STACK;
906 memset(&entry->caller, 0, sizeof(entry->caller));
908 trace.nr_entries = 0;
909 trace.max_entries = FTRACE_STACK_ENTRIES;
911 trace.entries = entry->caller;
913 save_stack_trace_user(&trace);
914 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
918 void __trace_userstack(struct trace_array *tr,
919 struct trace_array_cpu *data,
922 ftrace_trace_userstack(tr, data, flags, preempt_count());
926 ftrace_trace_special(void *__tr, void *__data,
927 unsigned long arg1, unsigned long arg2, unsigned long arg3,
930 struct ring_buffer_event *event;
931 struct trace_array_cpu *data = __data;
932 struct trace_array *tr = __tr;
933 struct special_entry *entry;
934 unsigned long irq_flags;
936 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
940 entry = ring_buffer_event_data(event);
941 tracing_generic_entry_update(&entry->ent, 0, pc);
942 entry->ent.type = TRACE_SPECIAL;
946 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
947 ftrace_trace_stack(tr, data, irq_flags, 4, pc);
948 ftrace_trace_userstack(tr, data, irq_flags, pc);
954 __trace_special(void *__tr, void *__data,
955 unsigned long arg1, unsigned long arg2, unsigned long arg3)
957 ftrace_trace_special(__tr, __data, arg1, arg2, arg3, preempt_count());
961 tracing_sched_switch_trace(struct trace_array *tr,
962 struct trace_array_cpu *data,
963 struct task_struct *prev,
964 struct task_struct *next,
965 unsigned long flags, int pc)
967 struct ring_buffer_event *event;
968 struct ctx_switch_entry *entry;
969 unsigned long irq_flags;
971 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
975 entry = ring_buffer_event_data(event);
976 tracing_generic_entry_update(&entry->ent, flags, pc);
977 entry->ent.type = TRACE_CTX;
978 entry->prev_pid = prev->pid;
979 entry->prev_prio = prev->prio;
980 entry->prev_state = prev->state;
981 entry->next_pid = next->pid;
982 entry->next_prio = next->prio;
983 entry->next_state = next->state;
984 entry->next_cpu = task_cpu(next);
985 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
986 ftrace_trace_stack(tr, data, flags, 5, pc);
987 ftrace_trace_userstack(tr, data, flags, pc);
991 tracing_sched_wakeup_trace(struct trace_array *tr,
992 struct trace_array_cpu *data,
993 struct task_struct *wakee,
994 struct task_struct *curr,
995 unsigned long flags, int pc)
997 struct ring_buffer_event *event;
998 struct ctx_switch_entry *entry;
999 unsigned long irq_flags;
1001 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
1005 entry = ring_buffer_event_data(event);
1006 tracing_generic_entry_update(&entry->ent, flags, pc);
1007 entry->ent.type = TRACE_WAKE;
1008 entry->prev_pid = curr->pid;
1009 entry->prev_prio = curr->prio;
1010 entry->prev_state = curr->state;
1011 entry->next_pid = wakee->pid;
1012 entry->next_prio = wakee->prio;
1013 entry->next_state = wakee->state;
1014 entry->next_cpu = task_cpu(wakee);
1015 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
1016 ftrace_trace_stack(tr, data, flags, 6, pc);
1017 ftrace_trace_userstack(tr, data, flags, pc);
1023 ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3)
1025 struct trace_array *tr = &global_trace;
1026 struct trace_array_cpu *data;
1027 unsigned long flags;
1031 if (tracing_disabled)
1034 pc = preempt_count();
1035 local_irq_save(flags);
1036 cpu = raw_smp_processor_id();
1037 data = tr->data[cpu];
1039 if (likely(atomic_inc_return(&data->disabled) == 1))
1040 ftrace_trace_special(tr, data, arg1, arg2, arg3, pc);
1042 atomic_dec(&data->disabled);
1043 local_irq_restore(flags);
1046 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
1047 int trace_graph_entry(struct ftrace_graph_ent *trace)
1049 struct trace_array *tr = &global_trace;
1050 struct trace_array_cpu *data;
1051 unsigned long flags;
1056 if (!ftrace_trace_task(current))
1059 if (!ftrace_graph_addr(trace->func))
1062 local_irq_save(flags);
1063 cpu = raw_smp_processor_id();
1064 data = tr->data[cpu];
1065 disabled = atomic_inc_return(&data->disabled);
1066 if (likely(disabled == 1)) {
1067 pc = preempt_count();
1068 __trace_graph_entry(tr, data, trace, flags, pc);
1070 /* Only do the atomic if it is not already set */
1071 if (!test_tsk_trace_graph(current))
1072 set_tsk_trace_graph(current);
1073 atomic_dec(&data->disabled);
1074 local_irq_restore(flags);
1079 void trace_graph_return(struct ftrace_graph_ret *trace)
1081 struct trace_array *tr = &global_trace;
1082 struct trace_array_cpu *data;
1083 unsigned long flags;
1088 local_irq_save(flags);
1089 cpu = raw_smp_processor_id();
1090 data = tr->data[cpu];
1091 disabled = atomic_inc_return(&data->disabled);
1092 if (likely(disabled == 1)) {
1093 pc = preempt_count();
1094 __trace_graph_return(tr, data, trace, flags, pc);
1097 clear_tsk_trace_graph(current);
1098 atomic_dec(&data->disabled);
1099 local_irq_restore(flags);
1101 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
1103 enum trace_file_type {
1104 TRACE_FILE_LAT_FMT = 1,
1105 TRACE_FILE_ANNOTATE = 2,
1108 static void trace_iterator_increment(struct trace_iterator *iter)
1110 /* Don't allow ftrace to trace into the ring buffers */
1111 ftrace_disable_cpu();
1114 if (iter->buffer_iter[iter->cpu])
1115 ring_buffer_read(iter->buffer_iter[iter->cpu], NULL);
1117 ftrace_enable_cpu();
1120 static struct trace_entry *
1121 peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts)
1123 struct ring_buffer_event *event;
1124 struct ring_buffer_iter *buf_iter = iter->buffer_iter[cpu];
1126 /* Don't allow ftrace to trace into the ring buffers */
1127 ftrace_disable_cpu();
1130 event = ring_buffer_iter_peek(buf_iter, ts);
1132 event = ring_buffer_peek(iter->tr->buffer, cpu, ts);
1134 ftrace_enable_cpu();
1136 return event ? ring_buffer_event_data(event) : NULL;
1139 static struct trace_entry *
1140 __find_next_entry(struct trace_iterator *iter, int *ent_cpu, u64 *ent_ts)
1142 struct ring_buffer *buffer = iter->tr->buffer;
1143 struct trace_entry *ent, *next = NULL;
1144 u64 next_ts = 0, ts;
1148 for_each_tracing_cpu(cpu) {
1150 if (ring_buffer_empty_cpu(buffer, cpu))
1153 ent = peek_next_entry(iter, cpu, &ts);
1156 * Pick the entry with the smallest timestamp:
1158 if (ent && (!next || ts < next_ts)) {
1166 *ent_cpu = next_cpu;
1174 /* Find the next real entry, without updating the iterator itself */
1175 static struct trace_entry *
1176 find_next_entry(struct trace_iterator *iter, int *ent_cpu, u64 *ent_ts)
1178 return __find_next_entry(iter, ent_cpu, ent_ts);
1181 /* Find the next real entry, and increment the iterator to the next entry */
1182 static void *find_next_entry_inc(struct trace_iterator *iter)
1184 iter->ent = __find_next_entry(iter, &iter->cpu, &iter->ts);
1187 trace_iterator_increment(iter);
1189 return iter->ent ? iter : NULL;
1192 static void trace_consume(struct trace_iterator *iter)
1194 /* Don't allow ftrace to trace into the ring buffers */
1195 ftrace_disable_cpu();
1196 ring_buffer_consume(iter->tr->buffer, iter->cpu, &iter->ts);
1197 ftrace_enable_cpu();
1200 static void *s_next(struct seq_file *m, void *v, loff_t *pos)
1202 struct trace_iterator *iter = m->private;
1208 /* can't go backwards */
1213 ent = find_next_entry_inc(iter);
1217 while (ent && iter->idx < i)
1218 ent = find_next_entry_inc(iter);
1225 static void *s_start(struct seq_file *m, loff_t *pos)
1227 struct trace_iterator *iter = m->private;
1232 mutex_lock(&trace_types_lock);
1234 if (!current_trace || current_trace != iter->trace) {
1235 mutex_unlock(&trace_types_lock);
1239 atomic_inc(&trace_record_cmdline_disabled);
1241 if (*pos != iter->pos) {
1246 ftrace_disable_cpu();
1248 for_each_tracing_cpu(cpu) {
1249 ring_buffer_iter_reset(iter->buffer_iter[cpu]);
1252 ftrace_enable_cpu();
1254 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1259 p = s_next(m, p, &l);
1265 static void s_stop(struct seq_file *m, void *p)
1267 atomic_dec(&trace_record_cmdline_disabled);
1268 mutex_unlock(&trace_types_lock);
1271 static void print_lat_help_header(struct seq_file *m)
1273 seq_puts(m, "# _------=> CPU# \n");
1274 seq_puts(m, "# / _-----=> irqs-off \n");
1275 seq_puts(m, "# | / _----=> need-resched \n");
1276 seq_puts(m, "# || / _---=> hardirq/softirq \n");
1277 seq_puts(m, "# ||| / _--=> preempt-depth \n");
1278 seq_puts(m, "# |||| / \n");
1279 seq_puts(m, "# ||||| delay \n");
1280 seq_puts(m, "# cmd pid ||||| time | caller \n");
1281 seq_puts(m, "# \\ / ||||| \\ | / \n");
1284 static void print_func_help_header(struct seq_file *m)
1286 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1287 seq_puts(m, "# | | | | |\n");
1292 print_trace_header(struct seq_file *m, struct trace_iterator *iter)
1294 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1295 struct trace_array *tr = iter->tr;
1296 struct trace_array_cpu *data = tr->data[tr->cpu];
1297 struct tracer *type = current_trace;
1298 unsigned long total;
1299 unsigned long entries;
1300 const char *name = "preemption";
1305 entries = ring_buffer_entries(iter->tr->buffer);
1307 ring_buffer_overruns(iter->tr->buffer);
1309 seq_printf(m, "%s latency trace v1.1.5 on %s\n",
1311 seq_puts(m, "-----------------------------------"
1312 "---------------------------------\n");
1313 seq_printf(m, " latency: %lu us, #%lu/%lu, CPU#%d |"
1314 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
1315 nsecs_to_usecs(data->saved_latency),
1319 #if defined(CONFIG_PREEMPT_NONE)
1321 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
1323 #elif defined(CONFIG_PREEMPT)
1328 /* These are reserved for later use */
1331 seq_printf(m, " #P:%d)\n", num_online_cpus());
1335 seq_puts(m, " -----------------\n");
1336 seq_printf(m, " | task: %.16s-%d "
1337 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1338 data->comm, data->pid, data->uid, data->nice,
1339 data->policy, data->rt_priority);
1340 seq_puts(m, " -----------------\n");
1342 if (data->critical_start) {
1343 seq_puts(m, " => started at: ");
1344 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
1345 trace_print_seq(m, &iter->seq);
1346 seq_puts(m, "\n => ended at: ");
1347 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
1348 trace_print_seq(m, &iter->seq);
1356 lat_print_generic(struct trace_seq *s, struct trace_entry *entry, int cpu)
1358 int hardirq, softirq;
1361 comm = trace_find_cmdline(entry->pid);
1363 trace_seq_printf(s, "%8.8s-%-5d ", comm, entry->pid);
1364 trace_seq_printf(s, "%3d", cpu);
1365 trace_seq_printf(s, "%c%c",
1366 (entry->flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
1367 (entry->flags & TRACE_FLAG_IRQS_NOSUPPORT) ? 'X' : '.',
1368 ((entry->flags & TRACE_FLAG_NEED_RESCHED) ? 'N' : '.'));
1370 hardirq = entry->flags & TRACE_FLAG_HARDIRQ;
1371 softirq = entry->flags & TRACE_FLAG_SOFTIRQ;
1372 if (hardirq && softirq) {
1373 trace_seq_putc(s, 'H');
1376 trace_seq_putc(s, 'h');
1379 trace_seq_putc(s, 's');
1381 trace_seq_putc(s, '.');
1385 if (entry->preempt_count)
1386 trace_seq_printf(s, "%x", entry->preempt_count);
1388 trace_seq_puts(s, ".");
1391 unsigned long preempt_mark_thresh = 100;
1394 lat_print_timestamp(struct trace_seq *s, u64 abs_usecs,
1395 unsigned long rel_usecs)
1397 trace_seq_printf(s, " %4lldus", abs_usecs);
1398 if (rel_usecs > preempt_mark_thresh)
1399 trace_seq_puts(s, "!: ");
1400 else if (rel_usecs > 1)
1401 trace_seq_puts(s, "+: ");
1403 trace_seq_puts(s, " : ");
1406 static void test_cpu_buff_start(struct trace_iterator *iter)
1408 struct trace_seq *s = &iter->seq;
1410 if (!(trace_flags & TRACE_ITER_ANNOTATE))
1413 if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
1416 if (cpumask_test_cpu(iter->cpu, iter->started))
1419 cpumask_set_cpu(iter->cpu, iter->started);
1420 trace_seq_printf(s, "##### CPU %u buffer started ####\n", iter->cpu);
1423 static enum print_line_t
1424 print_lat_fmt(struct trace_iterator *iter, unsigned int trace_idx, int cpu)
1426 struct trace_seq *s = &iter->seq;
1427 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1428 struct trace_entry *next_entry;
1429 struct trace_event *event;
1430 unsigned long verbose = (trace_flags & TRACE_ITER_VERBOSE);
1431 struct trace_entry *entry = iter->ent;
1432 unsigned long abs_usecs;
1433 unsigned long rel_usecs;
1438 test_cpu_buff_start(iter);
1440 next_entry = find_next_entry(iter, NULL, &next_ts);
1443 rel_usecs = ns2usecs(next_ts - iter->ts);
1444 abs_usecs = ns2usecs(iter->ts - iter->tr->time_start);
1447 comm = trace_find_cmdline(entry->pid);
1448 trace_seq_printf(s, "%16s %5d %3d %d %08x %08x [%08lx]"
1449 " %ld.%03ldms (+%ld.%03ldms): ",
1451 entry->pid, cpu, entry->flags,
1452 entry->preempt_count, trace_idx,
1455 abs_usecs % 1000, rel_usecs/1000,
1458 lat_print_generic(s, entry, cpu);
1459 lat_print_timestamp(s, abs_usecs, rel_usecs);
1462 event = ftrace_find_event(entry->type);
1463 if (event && event->latency_trace) {
1464 ret = event->latency_trace(s, entry, sym_flags);
1467 return TRACE_TYPE_HANDLED;
1470 trace_seq_printf(s, "Unknown type %d\n", entry->type);
1471 return TRACE_TYPE_HANDLED;
1474 static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
1476 struct trace_seq *s = &iter->seq;
1477 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1478 struct trace_entry *entry;
1479 struct trace_event *event;
1480 unsigned long usec_rem;
1481 unsigned long long t;
1488 test_cpu_buff_start(iter);
1490 comm = trace_find_cmdline(iter->ent->pid);
1492 t = ns2usecs(iter->ts);
1493 usec_rem = do_div(t, 1000000ULL);
1494 secs = (unsigned long)t;
1496 ret = trace_seq_printf(s, "%16s-%-5d ", comm, entry->pid);
1498 return TRACE_TYPE_PARTIAL_LINE;
1499 ret = trace_seq_printf(s, "[%03d] ", iter->cpu);
1501 return TRACE_TYPE_PARTIAL_LINE;
1502 ret = trace_seq_printf(s, "%5lu.%06lu: ", secs, usec_rem);
1504 return TRACE_TYPE_PARTIAL_LINE;
1506 event = ftrace_find_event(entry->type);
1507 if (event && event->trace) {
1508 ret = event->trace(s, entry, sym_flags);
1511 return TRACE_TYPE_HANDLED;
1513 ret = trace_seq_printf(s, "Unknown type %d\n", entry->type);
1515 return TRACE_TYPE_PARTIAL_LINE;
1517 return TRACE_TYPE_HANDLED;
1520 static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
1522 struct trace_seq *s = &iter->seq;
1523 struct trace_entry *entry;
1524 struct trace_event *event;
1529 ret = trace_seq_printf(s, "%d %d %llu ",
1530 entry->pid, iter->cpu, iter->ts);
1532 return TRACE_TYPE_PARTIAL_LINE;
1534 event = ftrace_find_event(entry->type);
1535 if (event && event->raw) {
1536 ret = event->raw(s, entry, 0);
1539 return TRACE_TYPE_HANDLED;
1541 ret = trace_seq_printf(s, "%d ?\n", entry->type);
1543 return TRACE_TYPE_PARTIAL_LINE;
1545 return TRACE_TYPE_HANDLED;
1548 static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
1550 struct trace_seq *s = &iter->seq;
1551 unsigned char newline = '\n';
1552 struct trace_entry *entry;
1553 struct trace_event *event;
1557 SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
1558 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
1559 SEQ_PUT_HEX_FIELD_RET(s, iter->ts);
1561 event = ftrace_find_event(entry->type);
1562 if (event && event->hex)
1563 event->hex(s, entry, 0);
1565 SEQ_PUT_FIELD_RET(s, newline);
1567 return TRACE_TYPE_HANDLED;
1570 static enum print_line_t print_printk_msg_only(struct trace_iterator *iter)
1572 struct trace_seq *s = &iter->seq;
1573 struct trace_entry *entry = iter->ent;
1574 struct print_entry *field;
1577 trace_assign_type(field, entry);
1579 ret = trace_seq_printf(s, field->buf);
1581 return TRACE_TYPE_PARTIAL_LINE;
1583 return TRACE_TYPE_HANDLED;
1586 static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
1588 struct trace_seq *s = &iter->seq;
1589 struct trace_entry *entry;
1590 struct trace_event *event;
1594 SEQ_PUT_FIELD_RET(s, entry->pid);
1595 SEQ_PUT_FIELD_RET(s, entry->cpu);
1596 SEQ_PUT_FIELD_RET(s, iter->ts);
1598 event = ftrace_find_event(entry->type);
1599 if (event && event->binary)
1600 event->binary(s, entry, 0);
1602 return TRACE_TYPE_HANDLED;
1605 static int trace_empty(struct trace_iterator *iter)
1609 for_each_tracing_cpu(cpu) {
1610 if (iter->buffer_iter[cpu]) {
1611 if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
1614 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
1622 static enum print_line_t print_trace_line(struct trace_iterator *iter)
1624 enum print_line_t ret;
1626 if (iter->trace && iter->trace->print_line) {
1627 ret = iter->trace->print_line(iter);
1628 if (ret != TRACE_TYPE_UNHANDLED)
1632 if (iter->ent->type == TRACE_PRINT &&
1633 trace_flags & TRACE_ITER_PRINTK &&
1634 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
1635 return print_printk_msg_only(iter);
1637 if (trace_flags & TRACE_ITER_BIN)
1638 return print_bin_fmt(iter);
1640 if (trace_flags & TRACE_ITER_HEX)
1641 return print_hex_fmt(iter);
1643 if (trace_flags & TRACE_ITER_RAW)
1644 return print_raw_fmt(iter);
1646 if (iter->iter_flags & TRACE_FILE_LAT_FMT)
1647 return print_lat_fmt(iter, iter->idx, iter->cpu);
1649 return print_trace_fmt(iter);
1652 static int s_show(struct seq_file *m, void *v)
1654 struct trace_iterator *iter = v;
1656 if (iter->ent == NULL) {
1658 seq_printf(m, "# tracer: %s\n", iter->trace->name);
1661 if (iter->trace && iter->trace->print_header)
1662 iter->trace->print_header(m);
1663 else if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
1664 /* print nothing if the buffers are empty */
1665 if (trace_empty(iter))
1667 print_trace_header(m, iter);
1668 if (!(trace_flags & TRACE_ITER_VERBOSE))
1669 print_lat_help_header(m);
1671 if (!(trace_flags & TRACE_ITER_VERBOSE))
1672 print_func_help_header(m);
1675 print_trace_line(iter);
1676 trace_print_seq(m, &iter->seq);
1682 static struct seq_operations tracer_seq_ops = {
1689 static struct trace_iterator *
1690 __tracing_open(struct inode *inode, struct file *file, int *ret)
1692 struct trace_iterator *iter;
1696 if (tracing_disabled) {
1701 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1707 mutex_lock(&trace_types_lock);
1708 if (current_trace && current_trace->print_max)
1711 iter->tr = inode->i_private;
1712 iter->trace = current_trace;
1715 /* Notify the tracer early; before we stop tracing. */
1716 if (iter->trace && iter->trace->open)
1717 iter->trace->open(iter);
1719 /* Annotate start of buffers if we had overruns */
1720 if (ring_buffer_overruns(iter->tr->buffer))
1721 iter->iter_flags |= TRACE_FILE_ANNOTATE;
1724 for_each_tracing_cpu(cpu) {
1726 iter->buffer_iter[cpu] =
1727 ring_buffer_read_start(iter->tr->buffer, cpu);
1729 if (!iter->buffer_iter[cpu])
1733 /* TODO stop tracer */
1734 *ret = seq_open(file, &tracer_seq_ops);
1738 m = file->private_data;
1741 /* stop the trace while dumping */
1744 mutex_unlock(&trace_types_lock);
1750 for_each_tracing_cpu(cpu) {
1751 if (iter->buffer_iter[cpu])
1752 ring_buffer_read_finish(iter->buffer_iter[cpu]);
1754 mutex_unlock(&trace_types_lock);
1757 return ERR_PTR(-ENOMEM);
1760 int tracing_open_generic(struct inode *inode, struct file *filp)
1762 if (tracing_disabled)
1765 filp->private_data = inode->i_private;
1769 int tracing_release(struct inode *inode, struct file *file)
1771 struct seq_file *m = (struct seq_file *)file->private_data;
1772 struct trace_iterator *iter = m->private;
1775 mutex_lock(&trace_types_lock);
1776 for_each_tracing_cpu(cpu) {
1777 if (iter->buffer_iter[cpu])
1778 ring_buffer_read_finish(iter->buffer_iter[cpu]);
1781 if (iter->trace && iter->trace->close)
1782 iter->trace->close(iter);
1784 /* reenable tracing if it was previously enabled */
1786 mutex_unlock(&trace_types_lock);
1788 seq_release(inode, file);
1793 static int tracing_open(struct inode *inode, struct file *file)
1797 __tracing_open(inode, file, &ret);
1802 static int tracing_lt_open(struct inode *inode, struct file *file)
1804 struct trace_iterator *iter;
1807 iter = __tracing_open(inode, file, &ret);
1810 iter->iter_flags |= TRACE_FILE_LAT_FMT;
1817 t_next(struct seq_file *m, void *v, loff_t *pos)
1819 struct tracer *t = m->private;
1831 static void *t_start(struct seq_file *m, loff_t *pos)
1833 struct tracer *t = m->private;
1836 mutex_lock(&trace_types_lock);
1837 for (; t && l < *pos; t = t_next(m, t, &l))
1843 static void t_stop(struct seq_file *m, void *p)
1845 mutex_unlock(&trace_types_lock);
1848 static int t_show(struct seq_file *m, void *v)
1850 struct tracer *t = v;
1855 seq_printf(m, "%s", t->name);
1864 static struct seq_operations show_traces_seq_ops = {
1871 static int show_traces_open(struct inode *inode, struct file *file)
1875 if (tracing_disabled)
1878 ret = seq_open(file, &show_traces_seq_ops);
1880 struct seq_file *m = file->private_data;
1881 m->private = trace_types;
1887 static struct file_operations tracing_fops = {
1888 .open = tracing_open,
1890 .llseek = seq_lseek,
1891 .release = tracing_release,
1894 static struct file_operations tracing_lt_fops = {
1895 .open = tracing_lt_open,
1897 .llseek = seq_lseek,
1898 .release = tracing_release,
1901 static struct file_operations show_traces_fops = {
1902 .open = show_traces_open,
1904 .release = seq_release,
1908 * Only trace on a CPU if the bitmask is set:
1910 static cpumask_var_t tracing_cpumask;
1913 * The tracer itself will not take this lock, but still we want
1914 * to provide a consistent cpumask to user-space:
1916 static DEFINE_MUTEX(tracing_cpumask_update_lock);
1919 * Temporary storage for the character representation of the
1920 * CPU bitmask (and one more byte for the newline):
1922 static char mask_str[NR_CPUS + 1];
1925 tracing_cpumask_read(struct file *filp, char __user *ubuf,
1926 size_t count, loff_t *ppos)
1930 mutex_lock(&tracing_cpumask_update_lock);
1932 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
1933 if (count - len < 2) {
1937 len += sprintf(mask_str + len, "\n");
1938 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
1941 mutex_unlock(&tracing_cpumask_update_lock);
1947 tracing_cpumask_write(struct file *filp, const char __user *ubuf,
1948 size_t count, loff_t *ppos)
1951 cpumask_var_t tracing_cpumask_new;
1953 if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
1956 mutex_lock(&tracing_cpumask_update_lock);
1957 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
1961 local_irq_disable();
1962 __raw_spin_lock(&ftrace_max_lock);
1963 for_each_tracing_cpu(cpu) {
1965 * Increase/decrease the disabled counter if we are
1966 * about to flip a bit in the cpumask:
1968 if (cpumask_test_cpu(cpu, tracing_cpumask) &&
1969 !cpumask_test_cpu(cpu, tracing_cpumask_new)) {
1970 atomic_inc(&global_trace.data[cpu]->disabled);
1972 if (!cpumask_test_cpu(cpu, tracing_cpumask) &&
1973 cpumask_test_cpu(cpu, tracing_cpumask_new)) {
1974 atomic_dec(&global_trace.data[cpu]->disabled);
1977 __raw_spin_unlock(&ftrace_max_lock);
1980 cpumask_copy(tracing_cpumask, tracing_cpumask_new);
1982 mutex_unlock(&tracing_cpumask_update_lock);
1983 free_cpumask_var(tracing_cpumask_new);
1988 mutex_unlock(&tracing_cpumask_update_lock);
1989 free_cpumask_var(tracing_cpumask);
1994 static struct file_operations tracing_cpumask_fops = {
1995 .open = tracing_open_generic,
1996 .read = tracing_cpumask_read,
1997 .write = tracing_cpumask_write,
2001 tracing_trace_options_read(struct file *filp, char __user *ubuf,
2002 size_t cnt, loff_t *ppos)
2008 u32 tracer_flags = current_trace->flags->val;
2009 struct tracer_opt *trace_opts = current_trace->flags->opts;
2012 /* calulate max size */
2013 for (i = 0; trace_options[i]; i++) {
2014 len += strlen(trace_options[i]);
2015 len += 3; /* "no" and space */
2019 * Increase the size with names of options specific
2020 * of the current tracer.
2022 for (i = 0; trace_opts[i].name; i++) {
2023 len += strlen(trace_opts[i].name);
2024 len += 3; /* "no" and space */
2027 /* +2 for \n and \0 */
2028 buf = kmalloc(len + 2, GFP_KERNEL);
2032 for (i = 0; trace_options[i]; i++) {
2033 if (trace_flags & (1 << i))
2034 r += sprintf(buf + r, "%s ", trace_options[i]);
2036 r += sprintf(buf + r, "no%s ", trace_options[i]);
2039 for (i = 0; trace_opts[i].name; i++) {
2040 if (tracer_flags & trace_opts[i].bit)
2041 r += sprintf(buf + r, "%s ",
2042 trace_opts[i].name);
2044 r += sprintf(buf + r, "no%s ",
2045 trace_opts[i].name);
2048 r += sprintf(buf + r, "\n");
2049 WARN_ON(r >= len + 2);
2051 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2058 /* Try to assign a tracer specific option */
2059 static int set_tracer_option(struct tracer *trace, char *cmp, int neg)
2061 struct tracer_flags *trace_flags = trace->flags;
2062 struct tracer_opt *opts = NULL;
2066 for (i = 0; trace_flags->opts[i].name; i++) {
2067 opts = &trace_flags->opts[i];
2068 len = strlen(opts->name);
2070 if (strncmp(cmp, opts->name, len) == 0) {
2071 ret = trace->set_flag(trace_flags->val,
2077 if (!trace_flags->opts[i].name)
2080 /* Refused to handle */
2085 trace_flags->val &= ~opts->bit;
2087 trace_flags->val |= opts->bit;
2093 tracing_trace_options_write(struct file *filp, const char __user *ubuf,
2094 size_t cnt, loff_t *ppos)
2102 if (cnt >= sizeof(buf))
2105 if (copy_from_user(&buf, ubuf, cnt))
2110 if (strncmp(buf, "no", 2) == 0) {
2115 for (i = 0; trace_options[i]; i++) {
2116 int len = strlen(trace_options[i]);
2118 if (strncmp(cmp, trace_options[i], len) == 0) {
2120 trace_flags &= ~(1 << i);
2122 trace_flags |= (1 << i);
2127 /* If no option could be set, test the specific tracer options */
2128 if (!trace_options[i]) {
2129 ret = set_tracer_option(current_trace, cmp, neg);
2139 static struct file_operations tracing_iter_fops = {
2140 .open = tracing_open_generic,
2141 .read = tracing_trace_options_read,
2142 .write = tracing_trace_options_write,
2145 static const char readme_msg[] =
2146 "tracing mini-HOWTO:\n\n"
2148 "# mount -t debugfs nodev /debug\n\n"
2149 "# cat /debug/tracing/available_tracers\n"
2150 "wakeup preemptirqsoff preemptoff irqsoff ftrace sched_switch none\n\n"
2151 "# cat /debug/tracing/current_tracer\n"
2153 "# echo sched_switch > /debug/tracing/current_tracer\n"
2154 "# cat /debug/tracing/current_tracer\n"
2156 "# cat /debug/tracing/trace_options\n"
2157 "noprint-parent nosym-offset nosym-addr noverbose\n"
2158 "# echo print-parent > /debug/tracing/trace_options\n"
2159 "# echo 1 > /debug/tracing/tracing_enabled\n"
2160 "# cat /debug/tracing/trace > /tmp/trace.txt\n"
2161 "echo 0 > /debug/tracing/tracing_enabled\n"
2165 tracing_readme_read(struct file *filp, char __user *ubuf,
2166 size_t cnt, loff_t *ppos)
2168 return simple_read_from_buffer(ubuf, cnt, ppos,
2169 readme_msg, strlen(readme_msg));
2172 static struct file_operations tracing_readme_fops = {
2173 .open = tracing_open_generic,
2174 .read = tracing_readme_read,
2178 tracing_ctrl_read(struct file *filp, char __user *ubuf,
2179 size_t cnt, loff_t *ppos)
2184 r = sprintf(buf, "%u\n", tracer_enabled);
2185 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2189 tracing_ctrl_write(struct file *filp, const char __user *ubuf,
2190 size_t cnt, loff_t *ppos)
2192 struct trace_array *tr = filp->private_data;
2197 if (cnt >= sizeof(buf))
2200 if (copy_from_user(&buf, ubuf, cnt))
2205 ret = strict_strtoul(buf, 10, &val);
2211 mutex_lock(&trace_types_lock);
2212 if (tracer_enabled ^ val) {
2215 if (current_trace->start)
2216 current_trace->start(tr);
2221 if (current_trace->stop)
2222 current_trace->stop(tr);
2225 mutex_unlock(&trace_types_lock);
2233 tracing_set_trace_read(struct file *filp, char __user *ubuf,
2234 size_t cnt, loff_t *ppos)
2236 char buf[max_tracer_type_len+2];
2239 mutex_lock(&trace_types_lock);
2241 r = sprintf(buf, "%s\n", current_trace->name);
2243 r = sprintf(buf, "\n");
2244 mutex_unlock(&trace_types_lock);
2246 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2249 static int tracing_set_tracer(char *buf)
2251 struct trace_array *tr = &global_trace;
2255 mutex_lock(&trace_types_lock);
2256 for (t = trace_types; t; t = t->next) {
2257 if (strcmp(t->name, buf) == 0)
2264 if (t == current_trace)
2267 trace_branch_disable();
2268 if (current_trace && current_trace->reset)
2269 current_trace->reset(tr);
2278 trace_branch_enable(tr);
2280 mutex_unlock(&trace_types_lock);
2286 tracing_set_trace_write(struct file *filp, const char __user *ubuf,
2287 size_t cnt, loff_t *ppos)
2289 char buf[max_tracer_type_len+1];
2296 if (cnt > max_tracer_type_len)
2297 cnt = max_tracer_type_len;
2299 if (copy_from_user(&buf, ubuf, cnt))
2304 /* strip ending whitespace. */
2305 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
2308 err = tracing_set_tracer(buf);
2318 tracing_max_lat_read(struct file *filp, char __user *ubuf,
2319 size_t cnt, loff_t *ppos)
2321 unsigned long *ptr = filp->private_data;
2325 r = snprintf(buf, sizeof(buf), "%ld\n",
2326 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
2327 if (r > sizeof(buf))
2329 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2333 tracing_max_lat_write(struct file *filp, const char __user *ubuf,
2334 size_t cnt, loff_t *ppos)
2336 long *ptr = filp->private_data;
2341 if (cnt >= sizeof(buf))
2344 if (copy_from_user(&buf, ubuf, cnt))
2349 ret = strict_strtoul(buf, 10, &val);
2358 static atomic_t tracing_reader;
2360 static int tracing_open_pipe(struct inode *inode, struct file *filp)
2362 struct trace_iterator *iter;
2364 if (tracing_disabled)
2367 /* We only allow for reader of the pipe */
2368 if (atomic_inc_return(&tracing_reader) != 1) {
2369 atomic_dec(&tracing_reader);
2373 /* create a buffer to store the information to pass to userspace */
2374 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2378 if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
2383 mutex_lock(&trace_types_lock);
2385 /* trace pipe does not show start of buffer */
2386 cpumask_setall(iter->started);
2388 iter->tr = &global_trace;
2389 iter->trace = current_trace;
2390 filp->private_data = iter;
2392 if (iter->trace->pipe_open)
2393 iter->trace->pipe_open(iter);
2394 mutex_unlock(&trace_types_lock);
2399 static int tracing_release_pipe(struct inode *inode, struct file *file)
2401 struct trace_iterator *iter = file->private_data;
2403 free_cpumask_var(iter->started);
2405 atomic_dec(&tracing_reader);
2411 tracing_poll_pipe(struct file *filp, poll_table *poll_table)
2413 struct trace_iterator *iter = filp->private_data;
2415 if (trace_flags & TRACE_ITER_BLOCK) {
2417 * Always select as readable when in blocking mode
2419 return POLLIN | POLLRDNORM;
2421 if (!trace_empty(iter))
2422 return POLLIN | POLLRDNORM;
2423 poll_wait(filp, &trace_wait, poll_table);
2424 if (!trace_empty(iter))
2425 return POLLIN | POLLRDNORM;
2435 tracing_read_pipe(struct file *filp, char __user *ubuf,
2436 size_t cnt, loff_t *ppos)
2438 struct trace_iterator *iter = filp->private_data;
2441 /* return any leftover data */
2442 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2446 trace_seq_reset(&iter->seq);
2448 mutex_lock(&trace_types_lock);
2449 if (iter->trace->read) {
2450 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
2457 while (trace_empty(iter)) {
2459 if ((filp->f_flags & O_NONBLOCK)) {
2465 * This is a make-shift waitqueue. The reason we don't use
2466 * an actual wait queue is because:
2467 * 1) we only ever have one waiter
2468 * 2) the tracing, traces all functions, we don't want
2469 * the overhead of calling wake_up and friends
2470 * (and tracing them too)
2471 * Anyway, this is really very primitive wakeup.
2473 set_current_state(TASK_INTERRUPTIBLE);
2474 iter->tr->waiter = current;
2476 mutex_unlock(&trace_types_lock);
2478 /* sleep for 100 msecs, and try again. */
2479 schedule_timeout(HZ/10);
2481 mutex_lock(&trace_types_lock);
2483 iter->tr->waiter = NULL;
2485 if (signal_pending(current)) {
2490 if (iter->trace != current_trace)
2494 * We block until we read something and tracing is disabled.
2495 * We still block if tracing is disabled, but we have never
2496 * read anything. This allows a user to cat this file, and
2497 * then enable tracing. But after we have read something,
2498 * we give an EOF when tracing is again disabled.
2500 * iter->pos will be 0 if we haven't read anything.
2502 if (!tracer_enabled && iter->pos)
2508 /* stop when tracing is finished */
2509 if (trace_empty(iter))
2512 if (cnt >= PAGE_SIZE)
2513 cnt = PAGE_SIZE - 1;
2515 /* reset all but tr, trace, and overruns */
2516 memset(&iter->seq, 0,
2517 sizeof(struct trace_iterator) -
2518 offsetof(struct trace_iterator, seq));
2521 while (find_next_entry_inc(iter) != NULL) {
2522 enum print_line_t ret;
2523 int len = iter->seq.len;
2525 ret = print_trace_line(iter);
2526 if (ret == TRACE_TYPE_PARTIAL_LINE) {
2527 /* don't print partial lines */
2528 iter->seq.len = len;
2532 trace_consume(iter);
2534 if (iter->seq.len >= cnt)
2538 /* Now copy what we have to the user */
2539 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2540 if (iter->seq.readpos >= iter->seq.len)
2541 trace_seq_reset(&iter->seq);
2544 * If there was nothing to send to user, inspite of consuming trace
2545 * entries, go back to wait for more entries.
2551 mutex_unlock(&trace_types_lock);
2557 tracing_entries_read(struct file *filp, char __user *ubuf,
2558 size_t cnt, loff_t *ppos)
2560 struct trace_array *tr = filp->private_data;
2564 r = sprintf(buf, "%lu\n", tr->entries >> 10);
2565 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2569 tracing_entries_write(struct file *filp, const char __user *ubuf,
2570 size_t cnt, loff_t *ppos)
2576 if (cnt >= sizeof(buf))
2579 if (copy_from_user(&buf, ubuf, cnt))
2584 ret = strict_strtoul(buf, 10, &val);
2588 /* must have at least 1 entry */
2592 mutex_lock(&trace_types_lock);
2596 /* disable all cpu buffers */
2597 for_each_tracing_cpu(cpu) {
2598 if (global_trace.data[cpu])
2599 atomic_inc(&global_trace.data[cpu]->disabled);
2600 if (max_tr.data[cpu])
2601 atomic_inc(&max_tr.data[cpu]->disabled);
2604 /* value is in KB */
2607 if (val != global_trace.entries) {
2608 ret = ring_buffer_resize(global_trace.buffer, val);
2614 ret = ring_buffer_resize(max_tr.buffer, val);
2618 r = ring_buffer_resize(global_trace.buffer,
2619 global_trace.entries);
2621 /* AARGH! We are left with different
2622 * size max buffer!!!! */
2624 tracing_disabled = 1;
2629 global_trace.entries = val;
2634 /* If check pages failed, return ENOMEM */
2635 if (tracing_disabled)
2638 for_each_tracing_cpu(cpu) {
2639 if (global_trace.data[cpu])
2640 atomic_dec(&global_trace.data[cpu]->disabled);
2641 if (max_tr.data[cpu])
2642 atomic_dec(&max_tr.data[cpu]->disabled);
2646 max_tr.entries = global_trace.entries;
2647 mutex_unlock(&trace_types_lock);
2652 static int mark_printk(const char *fmt, ...)
2656 va_start(args, fmt);
2657 ret = trace_vprintk(0, -1, fmt, args);
2663 tracing_mark_write(struct file *filp, const char __user *ubuf,
2664 size_t cnt, loff_t *fpos)
2669 if (tracing_disabled)
2672 if (cnt > TRACE_BUF_SIZE)
2673 cnt = TRACE_BUF_SIZE;
2675 buf = kmalloc(cnt + 1, GFP_KERNEL);
2679 if (copy_from_user(buf, ubuf, cnt)) {
2684 /* Cut from the first nil or newline. */
2686 end = strchr(buf, '\n');
2690 cnt = mark_printk("%s\n", buf);
2697 static struct file_operations tracing_max_lat_fops = {
2698 .open = tracing_open_generic,
2699 .read = tracing_max_lat_read,
2700 .write = tracing_max_lat_write,
2703 static struct file_operations tracing_ctrl_fops = {
2704 .open = tracing_open_generic,
2705 .read = tracing_ctrl_read,
2706 .write = tracing_ctrl_write,
2709 static struct file_operations set_tracer_fops = {
2710 .open = tracing_open_generic,
2711 .read = tracing_set_trace_read,
2712 .write = tracing_set_trace_write,
2715 static struct file_operations tracing_pipe_fops = {
2716 .open = tracing_open_pipe,
2717 .poll = tracing_poll_pipe,
2718 .read = tracing_read_pipe,
2719 .release = tracing_release_pipe,
2722 static struct file_operations tracing_entries_fops = {
2723 .open = tracing_open_generic,
2724 .read = tracing_entries_read,
2725 .write = tracing_entries_write,
2728 static struct file_operations tracing_mark_fops = {
2729 .open = tracing_open_generic,
2730 .write = tracing_mark_write,
2733 #ifdef CONFIG_DYNAMIC_FTRACE
2735 int __weak ftrace_arch_read_dyn_info(char *buf, int size)
2741 tracing_read_dyn_info(struct file *filp, char __user *ubuf,
2742 size_t cnt, loff_t *ppos)
2744 static char ftrace_dyn_info_buffer[1024];
2745 static DEFINE_MUTEX(dyn_info_mutex);
2746 unsigned long *p = filp->private_data;
2747 char *buf = ftrace_dyn_info_buffer;
2748 int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
2751 mutex_lock(&dyn_info_mutex);
2752 r = sprintf(buf, "%ld ", *p);
2754 r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
2757 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2759 mutex_unlock(&dyn_info_mutex);
2764 static struct file_operations tracing_dyn_info_fops = {
2765 .open = tracing_open_generic,
2766 .read = tracing_read_dyn_info,
2770 static struct dentry *d_tracer;
2772 struct dentry *tracing_init_dentry(void)
2779 d_tracer = debugfs_create_dir("tracing", NULL);
2781 if (!d_tracer && !once) {
2783 pr_warning("Could not create debugfs directory 'tracing'\n");
2790 #ifdef CONFIG_FTRACE_SELFTEST
2791 /* Let selftest have access to static functions in this file */
2792 #include "trace_selftest.c"
2795 static __init int tracer_init_debugfs(void)
2797 struct dentry *d_tracer;
2798 struct dentry *entry;
2800 d_tracer = tracing_init_dentry();
2802 entry = debugfs_create_file("tracing_enabled", 0644, d_tracer,
2803 &global_trace, &tracing_ctrl_fops);
2805 pr_warning("Could not create debugfs 'tracing_enabled' entry\n");
2807 entry = debugfs_create_file("trace_options", 0644, d_tracer,
2808 NULL, &tracing_iter_fops);
2810 pr_warning("Could not create debugfs 'trace_options' entry\n");
2812 entry = debugfs_create_file("tracing_cpumask", 0644, d_tracer,
2813 NULL, &tracing_cpumask_fops);
2815 pr_warning("Could not create debugfs 'tracing_cpumask' entry\n");
2817 entry = debugfs_create_file("latency_trace", 0444, d_tracer,
2818 &global_trace, &tracing_lt_fops);
2820 pr_warning("Could not create debugfs 'latency_trace' entry\n");
2822 entry = debugfs_create_file("trace", 0444, d_tracer,
2823 &global_trace, &tracing_fops);
2825 pr_warning("Could not create debugfs 'trace' entry\n");
2827 entry = debugfs_create_file("available_tracers", 0444, d_tracer,
2828 &global_trace, &show_traces_fops);
2830 pr_warning("Could not create debugfs 'available_tracers' entry\n");
2832 entry = debugfs_create_file("current_tracer", 0444, d_tracer,
2833 &global_trace, &set_tracer_fops);
2835 pr_warning("Could not create debugfs 'current_tracer' entry\n");
2837 entry = debugfs_create_file("tracing_max_latency", 0644, d_tracer,
2838 &tracing_max_latency,
2839 &tracing_max_lat_fops);
2841 pr_warning("Could not create debugfs "
2842 "'tracing_max_latency' entry\n");
2844 entry = debugfs_create_file("tracing_thresh", 0644, d_tracer,
2845 &tracing_thresh, &tracing_max_lat_fops);
2847 pr_warning("Could not create debugfs "
2848 "'tracing_thresh' entry\n");
2849 entry = debugfs_create_file("README", 0644, d_tracer,
2850 NULL, &tracing_readme_fops);
2852 pr_warning("Could not create debugfs 'README' entry\n");
2854 entry = debugfs_create_file("trace_pipe", 0644, d_tracer,
2855 NULL, &tracing_pipe_fops);
2857 pr_warning("Could not create debugfs "
2858 "'trace_pipe' entry\n");
2860 entry = debugfs_create_file("buffer_size_kb", 0644, d_tracer,
2861 &global_trace, &tracing_entries_fops);
2863 pr_warning("Could not create debugfs "
2864 "'buffer_size_kb' entry\n");
2866 entry = debugfs_create_file("trace_marker", 0220, d_tracer,
2867 NULL, &tracing_mark_fops);
2869 pr_warning("Could not create debugfs "
2870 "'trace_marker' entry\n");
2872 #ifdef CONFIG_DYNAMIC_FTRACE
2873 entry = debugfs_create_file("dyn_ftrace_total_info", 0444, d_tracer,
2874 &ftrace_update_tot_cnt,
2875 &tracing_dyn_info_fops);
2877 pr_warning("Could not create debugfs "
2878 "'dyn_ftrace_total_info' entry\n");
2880 #ifdef CONFIG_SYSPROF_TRACER
2881 init_tracer_sysprof_debugfs(d_tracer);
2886 int trace_vprintk(unsigned long ip, int depth, const char *fmt, va_list args)
2888 static DEFINE_SPINLOCK(trace_buf_lock);
2889 static char trace_buf[TRACE_BUF_SIZE];
2891 struct ring_buffer_event *event;
2892 struct trace_array *tr = &global_trace;
2893 struct trace_array_cpu *data;
2894 int cpu, len = 0, size, pc;
2895 struct print_entry *entry;
2896 unsigned long irq_flags;
2898 if (tracing_disabled || tracing_selftest_running)
2901 pc = preempt_count();
2902 preempt_disable_notrace();
2903 cpu = raw_smp_processor_id();
2904 data = tr->data[cpu];
2906 if (unlikely(atomic_read(&data->disabled)))
2909 pause_graph_tracing();
2910 spin_lock_irqsave(&trace_buf_lock, irq_flags);
2911 len = vsnprintf(trace_buf, TRACE_BUF_SIZE, fmt, args);
2913 len = min(len, TRACE_BUF_SIZE-1);
2916 size = sizeof(*entry) + len + 1;
2917 event = ring_buffer_lock_reserve(tr->buffer, size, &irq_flags);
2920 entry = ring_buffer_event_data(event);
2921 tracing_generic_entry_update(&entry->ent, irq_flags, pc);
2922 entry->ent.type = TRACE_PRINT;
2924 entry->depth = depth;
2926 memcpy(&entry->buf, trace_buf, len);
2927 entry->buf[len] = 0;
2928 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
2931 spin_unlock_irqrestore(&trace_buf_lock, irq_flags);
2932 unpause_graph_tracing();
2934 preempt_enable_notrace();
2938 EXPORT_SYMBOL_GPL(trace_vprintk);
2940 int __ftrace_printk(unsigned long ip, const char *fmt, ...)
2945 if (!(trace_flags & TRACE_ITER_PRINTK))
2949 ret = trace_vprintk(ip, task_curr_ret_stack(current), fmt, ap);
2953 EXPORT_SYMBOL_GPL(__ftrace_printk);
2955 static int trace_panic_handler(struct notifier_block *this,
2956 unsigned long event, void *unused)
2958 if (ftrace_dump_on_oops)
2963 static struct notifier_block trace_panic_notifier = {
2964 .notifier_call = trace_panic_handler,
2966 .priority = 150 /* priority: INT_MAX >= x >= 0 */
2969 static int trace_die_handler(struct notifier_block *self,
2975 if (ftrace_dump_on_oops)
2984 static struct notifier_block trace_die_notifier = {
2985 .notifier_call = trace_die_handler,
2990 * printk is set to max of 1024, we really don't need it that big.
2991 * Nothing should be printing 1000 characters anyway.
2993 #define TRACE_MAX_PRINT 1000
2996 * Define here KERN_TRACE so that we have one place to modify
2997 * it if we decide to change what log level the ftrace dump
3000 #define KERN_TRACE KERN_EMERG
3003 trace_printk_seq(struct trace_seq *s)
3005 /* Probably should print a warning here. */
3009 /* should be zero ended, but we are paranoid. */
3010 s->buffer[s->len] = 0;
3012 printk(KERN_TRACE "%s", s->buffer);
3017 void ftrace_dump(void)
3019 static DEFINE_SPINLOCK(ftrace_dump_lock);
3020 /* use static because iter can be a bit big for the stack */
3021 static struct trace_iterator iter;
3022 static int dump_ran;
3023 unsigned long flags;
3027 spin_lock_irqsave(&ftrace_dump_lock, flags);
3033 /* No turning back! */
3037 for_each_tracing_cpu(cpu) {
3038 atomic_inc(&global_trace.data[cpu]->disabled);
3041 /* don't look at user memory in panic mode */
3042 trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
3044 printk(KERN_TRACE "Dumping ftrace buffer:\n");
3046 iter.tr = &global_trace;
3047 iter.trace = current_trace;
3050 * We need to stop all tracing on all CPUS to read the
3051 * the next buffer. This is a bit expensive, but is
3052 * not done often. We fill all what we can read,
3053 * and then release the locks again.
3056 while (!trace_empty(&iter)) {
3059 printk(KERN_TRACE "---------------------------------\n");
3063 /* reset all but tr, trace, and overruns */
3064 memset(&iter.seq, 0,
3065 sizeof(struct trace_iterator) -
3066 offsetof(struct trace_iterator, seq));
3067 iter.iter_flags |= TRACE_FILE_LAT_FMT;
3070 if (find_next_entry_inc(&iter) != NULL) {
3071 print_trace_line(&iter);
3072 trace_consume(&iter);
3075 trace_printk_seq(&iter.seq);
3079 printk(KERN_TRACE " (ftrace buffer empty)\n");
3081 printk(KERN_TRACE "---------------------------------\n");
3084 spin_unlock_irqrestore(&ftrace_dump_lock, flags);
3087 __init static int tracer_alloc_buffers(void)
3089 struct trace_array_cpu *data;
3093 if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL))
3096 if (!alloc_cpumask_var(&tracing_cpumask, GFP_KERNEL))
3097 goto out_free_buffer_mask;
3099 cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
3100 cpumask_copy(tracing_cpumask, cpu_all_mask);
3102 /* TODO: make the number of buffers hot pluggable with CPUS */
3103 global_trace.buffer = ring_buffer_alloc(trace_buf_size,
3104 TRACE_BUFFER_FLAGS);
3105 if (!global_trace.buffer) {
3106 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
3108 goto out_free_cpumask;
3110 global_trace.entries = ring_buffer_size(global_trace.buffer);
3113 #ifdef CONFIG_TRACER_MAX_TRACE
3114 max_tr.buffer = ring_buffer_alloc(trace_buf_size,
3115 TRACE_BUFFER_FLAGS);
3116 if (!max_tr.buffer) {
3117 printk(KERN_ERR "tracer: failed to allocate max ring buffer!\n");
3119 ring_buffer_free(global_trace.buffer);
3120 goto out_free_cpumask;
3122 max_tr.entries = ring_buffer_size(max_tr.buffer);
3123 WARN_ON(max_tr.entries != global_trace.entries);
3126 /* Allocate the first page for all buffers */
3127 for_each_tracing_cpu(i) {
3128 data = global_trace.data[i] = &per_cpu(global_trace_cpu, i);
3129 max_tr.data[i] = &per_cpu(max_data, i);
3132 trace_init_cmdlines();
3134 register_tracer(&nop_trace);
3135 #ifdef CONFIG_BOOT_TRACER
3136 register_tracer(&boot_tracer);
3137 current_trace = &boot_tracer;
3138 current_trace->init(&global_trace);
3140 current_trace = &nop_trace;
3142 /* All seems OK, enable tracing */
3143 tracing_disabled = 0;
3145 atomic_notifier_chain_register(&panic_notifier_list,
3146 &trace_panic_notifier);
3148 register_die_notifier(&trace_die_notifier);
3152 free_cpumask_var(tracing_cpumask);
3153 out_free_buffer_mask:
3154 free_cpumask_var(tracing_buffer_mask);
3158 early_initcall(tracer_alloc_buffers);
3159 fs_initcall(tracer_init_debugfs);