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>
41 #define TRACE_BUFFER_FLAGS (RB_FL_OVERWRITE)
43 unsigned long __read_mostly tracing_max_latency
= (cycle_t
)ULONG_MAX
;
44 unsigned long __read_mostly tracing_thresh
;
46 static DEFINE_PER_CPU(local_t
, ftrace_cpu_disabled
);
48 static inline void ftrace_disable_cpu(void)
51 local_inc(&__get_cpu_var(ftrace_cpu_disabled
));
54 static inline void ftrace_enable_cpu(void)
56 local_dec(&__get_cpu_var(ftrace_cpu_disabled
));
60 static cpumask_t __read_mostly tracing_buffer_mask
;
62 #define for_each_tracing_cpu(cpu) \
63 for_each_cpu_mask(cpu, tracing_buffer_mask)
65 static int tracing_disabled
= 1;
68 ns2usecs(cycle_t nsec
)
75 cycle_t
ftrace_now(int cpu
)
77 u64 ts
= ring_buffer_time_stamp(cpu
);
78 ring_buffer_normalize_time_stamp(cpu
, &ts
);
83 * The global_trace is the descriptor that holds the tracing
84 * buffers for the live tracing. For each CPU, it contains
85 * a link list of pages that will store trace entries. The
86 * page descriptor of the pages in the memory is used to hold
87 * the link list by linking the lru item in the page descriptor
88 * to each of the pages in the buffer per CPU.
90 * For each active CPU there is a data field that holds the
91 * pages for the buffer for that CPU. Each CPU has the same number
92 * of pages allocated for its buffer.
94 static struct trace_array global_trace
;
96 static DEFINE_PER_CPU(struct trace_array_cpu
, global_trace_cpu
);
99 * The max_tr is used to snapshot the global_trace when a maximum
100 * latency is reached. Some tracers will use this to store a maximum
101 * trace while it continues examining live traces.
103 * The buffers for the max_tr are set up the same as the global_trace.
104 * When a snapshot is taken, the link list of the max_tr is swapped
105 * with the link list of the global_trace and the buffers are reset for
106 * the global_trace so the tracing can continue.
108 static struct trace_array max_tr
;
110 static DEFINE_PER_CPU(struct trace_array_cpu
, max_data
);
112 /* tracer_enabled is used to toggle activation of a tracer */
113 static int tracer_enabled
= 1;
115 /* function tracing enabled */
116 int ftrace_function_enabled
;
119 * trace_buf_size is the size in bytes that is allocated
120 * for a buffer. Note, the number of bytes is always rounded
123 * This number is purposely set to a low number of 16384.
124 * If the dump on oops happens, it will be much appreciated
125 * to not have to wait for all that output. Anyway this can be
126 * boot time and run time configurable.
128 #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
130 static unsigned long trace_buf_size
= TRACE_BUF_SIZE_DEFAULT
;
132 /* trace_types holds a link list of available tracers. */
133 static struct tracer
*trace_types __read_mostly
;
135 /* current_trace points to the tracer that is currently active */
136 static struct tracer
*current_trace __read_mostly
;
139 * max_tracer_type_len is used to simplify the allocating of
140 * buffers to read userspace tracer names. We keep track of
141 * the longest tracer name registered.
143 static int max_tracer_type_len
;
146 * trace_types_lock is used to protect the trace_types list.
147 * This lock is also used to keep user access serialized.
148 * Accesses from userspace will grab this lock while userspace
149 * activities happen inside the kernel.
151 static DEFINE_MUTEX(trace_types_lock
);
153 /* trace_wait is a waitqueue for tasks blocked on trace_poll */
154 static DECLARE_WAIT_QUEUE_HEAD(trace_wait
);
156 /* trace_flags holds iter_ctrl options */
157 unsigned long trace_flags
= TRACE_ITER_PRINT_PARENT
;
160 * trace_wake_up - wake up tasks waiting for trace input
162 * Simply wakes up any task that is blocked on the trace_wait
163 * queue. These is used with trace_poll for tasks polling the trace.
165 void trace_wake_up(void)
168 * The runqueue_is_locked() can fail, but this is the best we
171 if (!(trace_flags
& TRACE_ITER_BLOCK
) && !runqueue_is_locked())
172 wake_up(&trace_wait
);
175 static int __init
set_buf_size(char *str
)
177 unsigned long buf_size
;
182 ret
= strict_strtoul(str
, 0, &buf_size
);
183 /* nr_entries can not be zero */
184 if (ret
< 0 || buf_size
== 0)
186 trace_buf_size
= buf_size
;
189 __setup("trace_buf_size=", set_buf_size
);
191 unsigned long nsecs_to_usecs(unsigned long nsecs
)
197 * TRACE_ITER_SYM_MASK masks the options in trace_flags that
198 * control the output of kernel symbols.
200 #define TRACE_ITER_SYM_MASK \
201 (TRACE_ITER_PRINT_PARENT|TRACE_ITER_SYM_OFFSET|TRACE_ITER_SYM_ADDR)
203 /* These must match the bit postions in trace_iterator_flags */
204 static const char *trace_options
[] = {
220 * ftrace_max_lock is used to protect the swapping of buffers
221 * when taking a max snapshot. The buffers themselves are
222 * protected by per_cpu spinlocks. But the action of the swap
223 * needs its own lock.
225 * This is defined as a raw_spinlock_t in order to help
226 * with performance when lockdep debugging is enabled.
228 static raw_spinlock_t ftrace_max_lock
=
229 (raw_spinlock_t
)__RAW_SPIN_LOCK_UNLOCKED
;
232 * Copy the new maximum trace into the separate maximum-trace
233 * structure. (this way the maximum trace is permanently saved,
234 * for later retrieval via /debugfs/tracing/latency_trace)
237 __update_max_tr(struct trace_array
*tr
, struct task_struct
*tsk
, int cpu
)
239 struct trace_array_cpu
*data
= tr
->data
[cpu
];
242 max_tr
.time_start
= data
->preempt_timestamp
;
244 data
= max_tr
.data
[cpu
];
245 data
->saved_latency
= tracing_max_latency
;
247 memcpy(data
->comm
, tsk
->comm
, TASK_COMM_LEN
);
248 data
->pid
= tsk
->pid
;
249 data
->uid
= tsk
->uid
;
250 data
->nice
= tsk
->static_prio
- 20 - MAX_RT_PRIO
;
251 data
->policy
= tsk
->policy
;
252 data
->rt_priority
= tsk
->rt_priority
;
254 /* record this tasks comm */
255 tracing_record_cmdline(current
);
259 * trace_seq_printf - sequence printing of trace information
260 * @s: trace sequence descriptor
261 * @fmt: printf format string
263 * The tracer may use either sequence operations or its own
264 * copy to user routines. To simplify formating of a trace
265 * trace_seq_printf is used to store strings into a special
266 * buffer (@s). Then the output may be either used by
267 * the sequencer or pulled into another buffer.
270 trace_seq_printf(struct trace_seq
*s
, const char *fmt
, ...)
272 int len
= (PAGE_SIZE
- 1) - s
->len
;
280 ret
= vsnprintf(s
->buffer
+ s
->len
, len
, fmt
, ap
);
283 /* If we can't write it all, don't bother writing anything */
293 * trace_seq_puts - trace sequence printing of simple string
294 * @s: trace sequence descriptor
295 * @str: simple string to record
297 * The tracer may use either the sequence operations or its own
298 * copy to user routines. This function records a simple string
299 * into a special buffer (@s) for later retrieval by a sequencer
300 * or other mechanism.
303 trace_seq_puts(struct trace_seq
*s
, const char *str
)
305 int len
= strlen(str
);
307 if (len
> ((PAGE_SIZE
- 1) - s
->len
))
310 memcpy(s
->buffer
+ s
->len
, str
, len
);
317 trace_seq_putc(struct trace_seq
*s
, unsigned char c
)
319 if (s
->len
>= (PAGE_SIZE
- 1))
322 s
->buffer
[s
->len
++] = c
;
328 trace_seq_putmem(struct trace_seq
*s
, void *mem
, size_t len
)
330 if (len
> ((PAGE_SIZE
- 1) - s
->len
))
333 memcpy(s
->buffer
+ s
->len
, mem
, len
);
339 #define MAX_MEMHEX_BYTES 8
340 #define HEX_CHARS (MAX_MEMHEX_BYTES*2 + 1)
343 trace_seq_putmem_hex(struct trace_seq
*s
, void *mem
, size_t len
)
345 unsigned char hex
[HEX_CHARS
];
346 unsigned char *data
= mem
;
350 for (i
= 0, j
= 0; i
< len
; i
++) {
352 for (i
= len
-1, j
= 0; i
>= 0; i
--) {
354 hex
[j
++] = hex_asc_hi(data
[i
]);
355 hex
[j
++] = hex_asc_lo(data
[i
]);
359 return trace_seq_putmem(s
, hex
, j
);
363 trace_seq_reset(struct trace_seq
*s
)
369 ssize_t
trace_seq_to_user(struct trace_seq
*s
, char __user
*ubuf
, size_t cnt
)
374 if (s
->len
<= s
->readpos
)
377 len
= s
->len
- s
->readpos
;
380 ret
= copy_to_user(ubuf
, s
->buffer
+ s
->readpos
, cnt
);
389 trace_print_seq(struct seq_file
*m
, struct trace_seq
*s
)
391 int len
= s
->len
>= PAGE_SIZE
? PAGE_SIZE
- 1 : s
->len
;
394 seq_puts(m
, s
->buffer
);
400 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
402 * @tsk: the task with the latency
403 * @cpu: The cpu that initiated the trace.
405 * Flip the buffers between the @tr and the max_tr and record information
406 * about which task was the cause of this latency.
409 update_max_tr(struct trace_array
*tr
, struct task_struct
*tsk
, int cpu
)
411 struct ring_buffer
*buf
= tr
->buffer
;
413 WARN_ON_ONCE(!irqs_disabled());
414 __raw_spin_lock(&ftrace_max_lock
);
416 tr
->buffer
= max_tr
.buffer
;
419 ftrace_disable_cpu();
420 ring_buffer_reset(tr
->buffer
);
423 __update_max_tr(tr
, tsk
, cpu
);
424 __raw_spin_unlock(&ftrace_max_lock
);
428 * update_max_tr_single - only copy one trace over, and reset the rest
430 * @tsk - task with the latency
431 * @cpu - the cpu of the buffer to copy.
433 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
436 update_max_tr_single(struct trace_array
*tr
, struct task_struct
*tsk
, int cpu
)
440 WARN_ON_ONCE(!irqs_disabled());
441 __raw_spin_lock(&ftrace_max_lock
);
443 ftrace_disable_cpu();
445 ring_buffer_reset(max_tr
.buffer
);
446 ret
= ring_buffer_swap_cpu(max_tr
.buffer
, tr
->buffer
, cpu
);
452 __update_max_tr(tr
, tsk
, cpu
);
453 __raw_spin_unlock(&ftrace_max_lock
);
457 * register_tracer - register a tracer with the ftrace system.
458 * @type - the plugin for the tracer
460 * Register a new plugin tracer.
462 int register_tracer(struct tracer
*type
)
469 pr_info("Tracer must have a name\n");
473 mutex_lock(&trace_types_lock
);
474 for (t
= trace_types
; t
; t
= t
->next
) {
475 if (strcmp(type
->name
, t
->name
) == 0) {
477 pr_info("Trace %s already registered\n",
484 #ifdef CONFIG_FTRACE_STARTUP_TEST
485 if (type
->selftest
) {
486 struct tracer
*saved_tracer
= current_trace
;
487 struct trace_array
*tr
= &global_trace
;
488 int saved_ctrl
= tr
->ctrl
;
491 * Run a selftest on this tracer.
492 * Here we reset the trace buffer, and set the current
493 * tracer to be this tracer. The tracer can then run some
494 * internal tracing to verify that everything is in order.
495 * If we fail, we do not register this tracer.
497 for_each_tracing_cpu(i
) {
498 tracing_reset(tr
, i
);
500 current_trace
= type
;
502 /* the test is responsible for initializing and enabling */
503 pr_info("Testing tracer %s: ", type
->name
);
504 ret
= type
->selftest(type
, tr
);
505 /* the test is responsible for resetting too */
506 current_trace
= saved_tracer
;
507 tr
->ctrl
= saved_ctrl
;
509 printk(KERN_CONT
"FAILED!\n");
512 /* Only reset on passing, to avoid touching corrupted buffers */
513 for_each_tracing_cpu(i
) {
514 tracing_reset(tr
, i
);
516 printk(KERN_CONT
"PASSED\n");
520 type
->next
= trace_types
;
522 len
= strlen(type
->name
);
523 if (len
> max_tracer_type_len
)
524 max_tracer_type_len
= len
;
527 mutex_unlock(&trace_types_lock
);
532 void unregister_tracer(struct tracer
*type
)
537 mutex_lock(&trace_types_lock
);
538 for (t
= &trace_types
; *t
; t
= &(*t
)->next
) {
542 pr_info("Trace %s not registered\n", type
->name
);
547 if (strlen(type
->name
) != max_tracer_type_len
)
550 max_tracer_type_len
= 0;
551 for (t
= &trace_types
; *t
; t
= &(*t
)->next
) {
552 len
= strlen((*t
)->name
);
553 if (len
> max_tracer_type_len
)
554 max_tracer_type_len
= len
;
557 mutex_unlock(&trace_types_lock
);
560 void tracing_reset(struct trace_array
*tr
, int cpu
)
562 ftrace_disable_cpu();
563 ring_buffer_reset_cpu(tr
->buffer
, cpu
);
567 #define SAVED_CMDLINES 128
568 static unsigned map_pid_to_cmdline
[PID_MAX_DEFAULT
+1];
569 static unsigned map_cmdline_to_pid
[SAVED_CMDLINES
];
570 static char saved_cmdlines
[SAVED_CMDLINES
][TASK_COMM_LEN
];
571 static int cmdline_idx
;
572 static DEFINE_SPINLOCK(trace_cmdline_lock
);
574 /* temporary disable recording */
575 atomic_t trace_record_cmdline_disabled __read_mostly
;
577 static void trace_init_cmdlines(void)
579 memset(&map_pid_to_cmdline
, -1, sizeof(map_pid_to_cmdline
));
580 memset(&map_cmdline_to_pid
, -1, sizeof(map_cmdline_to_pid
));
584 void trace_stop_cmdline_recording(void);
586 static void trace_save_cmdline(struct task_struct
*tsk
)
591 if (!tsk
->pid
|| unlikely(tsk
->pid
> PID_MAX_DEFAULT
))
595 * It's not the end of the world if we don't get
596 * the lock, but we also don't want to spin
597 * nor do we want to disable interrupts,
598 * so if we miss here, then better luck next time.
600 if (!spin_trylock(&trace_cmdline_lock
))
603 idx
= map_pid_to_cmdline
[tsk
->pid
];
604 if (idx
>= SAVED_CMDLINES
) {
605 idx
= (cmdline_idx
+ 1) % SAVED_CMDLINES
;
607 map
= map_cmdline_to_pid
[idx
];
608 if (map
<= PID_MAX_DEFAULT
)
609 map_pid_to_cmdline
[map
] = (unsigned)-1;
611 map_pid_to_cmdline
[tsk
->pid
] = idx
;
616 memcpy(&saved_cmdlines
[idx
], tsk
->comm
, TASK_COMM_LEN
);
618 spin_unlock(&trace_cmdline_lock
);
621 static char *trace_find_cmdline(int pid
)
623 char *cmdline
= "<...>";
629 if (pid
> PID_MAX_DEFAULT
)
632 map
= map_pid_to_cmdline
[pid
];
633 if (map
>= SAVED_CMDLINES
)
636 cmdline
= saved_cmdlines
[map
];
642 void tracing_record_cmdline(struct task_struct
*tsk
)
644 if (atomic_read(&trace_record_cmdline_disabled
))
647 trace_save_cmdline(tsk
);
651 tracing_generic_entry_update(struct trace_entry
*entry
, unsigned long flags
,
654 struct task_struct
*tsk
= current
;
656 entry
->preempt_count
= pc
& 0xff;
657 entry
->pid
= (tsk
) ? tsk
->pid
: 0;
659 #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
660 (irqs_disabled_flags(flags
) ? TRACE_FLAG_IRQS_OFF
: 0) |
662 TRACE_FLAG_IRQS_NOSUPPORT
|
664 ((pc
& HARDIRQ_MASK
) ? TRACE_FLAG_HARDIRQ
: 0) |
665 ((pc
& SOFTIRQ_MASK
) ? TRACE_FLAG_SOFTIRQ
: 0) |
666 (need_resched() ? TRACE_FLAG_NEED_RESCHED
: 0);
670 trace_function(struct trace_array
*tr
, struct trace_array_cpu
*data
,
671 unsigned long ip
, unsigned long parent_ip
, unsigned long flags
,
674 struct ring_buffer_event
*event
;
675 struct ftrace_entry
*entry
;
676 unsigned long irq_flags
;
678 /* If we are reading the ring buffer, don't trace */
679 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled
))))
682 event
= ring_buffer_lock_reserve(tr
->buffer
, sizeof(*entry
),
686 entry
= ring_buffer_event_data(event
);
687 tracing_generic_entry_update(&entry
->ent
, flags
, pc
);
688 entry
->ent
.type
= TRACE_FN
;
690 entry
->parent_ip
= parent_ip
;
691 ring_buffer_unlock_commit(tr
->buffer
, event
, irq_flags
);
695 ftrace(struct trace_array
*tr
, struct trace_array_cpu
*data
,
696 unsigned long ip
, unsigned long parent_ip
, unsigned long flags
,
699 if (likely(!atomic_read(&data
->disabled
)))
700 trace_function(tr
, data
, ip
, parent_ip
, flags
, pc
);
703 static void ftrace_trace_stack(struct trace_array
*tr
,
704 struct trace_array_cpu
*data
,
708 #ifdef CONFIG_STACKTRACE
709 struct ring_buffer_event
*event
;
710 struct stack_entry
*entry
;
711 struct stack_trace trace
;
712 unsigned long irq_flags
;
714 if (!(trace_flags
& TRACE_ITER_STACKTRACE
))
717 event
= ring_buffer_lock_reserve(tr
->buffer
, sizeof(*entry
),
721 entry
= ring_buffer_event_data(event
);
722 tracing_generic_entry_update(&entry
->ent
, flags
, pc
);
723 entry
->ent
.type
= TRACE_STACK
;
725 memset(&entry
->caller
, 0, sizeof(entry
->caller
));
727 trace
.nr_entries
= 0;
728 trace
.max_entries
= FTRACE_STACK_ENTRIES
;
730 trace
.entries
= entry
->caller
;
732 save_stack_trace(&trace
);
733 ring_buffer_unlock_commit(tr
->buffer
, event
, irq_flags
);
737 void __trace_stack(struct trace_array
*tr
,
738 struct trace_array_cpu
*data
,
742 ftrace_trace_stack(tr
, data
, flags
, skip
, preempt_count());
746 ftrace_trace_special(void *__tr
, void *__data
,
747 unsigned long arg1
, unsigned long arg2
, unsigned long arg3
,
750 struct ring_buffer_event
*event
;
751 struct trace_array_cpu
*data
= __data
;
752 struct trace_array
*tr
= __tr
;
753 struct special_entry
*entry
;
754 unsigned long irq_flags
;
756 event
= ring_buffer_lock_reserve(tr
->buffer
, sizeof(*entry
),
760 entry
= ring_buffer_event_data(event
);
761 tracing_generic_entry_update(&entry
->ent
, 0, pc
);
762 entry
->ent
.type
= TRACE_SPECIAL
;
766 ring_buffer_unlock_commit(tr
->buffer
, event
, irq_flags
);
767 ftrace_trace_stack(tr
, data
, irq_flags
, 4, pc
);
773 __trace_special(void *__tr
, void *__data
,
774 unsigned long arg1
, unsigned long arg2
, unsigned long arg3
)
776 ftrace_trace_special(__tr
, __data
, arg1
, arg2
, arg3
, preempt_count());
780 tracing_sched_switch_trace(struct trace_array
*tr
,
781 struct trace_array_cpu
*data
,
782 struct task_struct
*prev
,
783 struct task_struct
*next
,
784 unsigned long flags
, int pc
)
786 struct ring_buffer_event
*event
;
787 struct ctx_switch_entry
*entry
;
788 unsigned long irq_flags
;
790 event
= ring_buffer_lock_reserve(tr
->buffer
, sizeof(*entry
),
794 entry
= ring_buffer_event_data(event
);
795 tracing_generic_entry_update(&entry
->ent
, flags
, pc
);
796 entry
->ent
.type
= TRACE_CTX
;
797 entry
->prev_pid
= prev
->pid
;
798 entry
->prev_prio
= prev
->prio
;
799 entry
->prev_state
= prev
->state
;
800 entry
->next_pid
= next
->pid
;
801 entry
->next_prio
= next
->prio
;
802 entry
->next_state
= next
->state
;
803 entry
->next_cpu
= task_cpu(next
);
804 ring_buffer_unlock_commit(tr
->buffer
, event
, irq_flags
);
805 ftrace_trace_stack(tr
, data
, flags
, 5, pc
);
809 tracing_sched_wakeup_trace(struct trace_array
*tr
,
810 struct trace_array_cpu
*data
,
811 struct task_struct
*wakee
,
812 struct task_struct
*curr
,
813 unsigned long flags
, int pc
)
815 struct ring_buffer_event
*event
;
816 struct ctx_switch_entry
*entry
;
817 unsigned long irq_flags
;
819 event
= ring_buffer_lock_reserve(tr
->buffer
, sizeof(*entry
),
823 entry
= ring_buffer_event_data(event
);
824 tracing_generic_entry_update(&entry
->ent
, flags
, pc
);
825 entry
->ent
.type
= TRACE_WAKE
;
826 entry
->prev_pid
= curr
->pid
;
827 entry
->prev_prio
= curr
->prio
;
828 entry
->prev_state
= curr
->state
;
829 entry
->next_pid
= wakee
->pid
;
830 entry
->next_prio
= wakee
->prio
;
831 entry
->next_state
= wakee
->state
;
832 entry
->next_cpu
= task_cpu(wakee
);
833 ring_buffer_unlock_commit(tr
->buffer
, event
, irq_flags
);
834 ftrace_trace_stack(tr
, data
, flags
, 6, pc
);
840 ftrace_special(unsigned long arg1
, unsigned long arg2
, unsigned long arg3
)
842 struct trace_array
*tr
= &global_trace
;
843 struct trace_array_cpu
*data
;
847 if (tracing_disabled
|| !tr
->ctrl
)
850 pc
= preempt_count();
851 preempt_disable_notrace();
852 cpu
= raw_smp_processor_id();
853 data
= tr
->data
[cpu
];
855 if (likely(!atomic_read(&data
->disabled
)))
856 ftrace_trace_special(tr
, data
, arg1
, arg2
, arg3
, pc
);
858 preempt_enable_notrace();
861 #ifdef CONFIG_FUNCTION_TRACER
863 function_trace_call(unsigned long ip
, unsigned long parent_ip
)
865 struct trace_array
*tr
= &global_trace
;
866 struct trace_array_cpu
*data
;
872 if (unlikely(!ftrace_function_enabled
))
875 pc
= preempt_count();
876 resched
= need_resched();
877 preempt_disable_notrace();
878 local_save_flags(flags
);
879 cpu
= raw_smp_processor_id();
880 data
= tr
->data
[cpu
];
881 disabled
= atomic_inc_return(&data
->disabled
);
883 if (likely(disabled
== 1))
884 trace_function(tr
, data
, ip
, parent_ip
, flags
, pc
);
886 atomic_dec(&data
->disabled
);
888 preempt_enable_no_resched_notrace();
890 preempt_enable_notrace();
893 static struct ftrace_ops trace_ops __read_mostly
=
895 .func
= function_trace_call
,
898 void tracing_start_function_trace(void)
900 ftrace_function_enabled
= 0;
901 register_ftrace_function(&trace_ops
);
903 ftrace_function_enabled
= 1;
906 void tracing_stop_function_trace(void)
908 ftrace_function_enabled
= 0;
909 unregister_ftrace_function(&trace_ops
);
913 enum trace_file_type
{
914 TRACE_FILE_LAT_FMT
= 1,
917 static void trace_iterator_increment(struct trace_iterator
*iter
, int cpu
)
919 /* Don't allow ftrace to trace into the ring buffers */
920 ftrace_disable_cpu();
923 if (iter
->buffer_iter
[iter
->cpu
])
924 ring_buffer_read(iter
->buffer_iter
[iter
->cpu
], NULL
);
929 static struct trace_entry
*
930 peek_next_entry(struct trace_iterator
*iter
, int cpu
, u64
*ts
)
932 struct ring_buffer_event
*event
;
933 struct ring_buffer_iter
*buf_iter
= iter
->buffer_iter
[cpu
];
935 /* Don't allow ftrace to trace into the ring buffers */
936 ftrace_disable_cpu();
939 event
= ring_buffer_iter_peek(buf_iter
, ts
);
941 event
= ring_buffer_peek(iter
->tr
->buffer
, cpu
, ts
);
945 return event
? ring_buffer_event_data(event
) : NULL
;
948 static struct trace_entry
*
949 __find_next_entry(struct trace_iterator
*iter
, int *ent_cpu
, u64
*ent_ts
)
951 struct ring_buffer
*buffer
= iter
->tr
->buffer
;
952 struct trace_entry
*ent
, *next
= NULL
;
957 for_each_tracing_cpu(cpu
) {
959 if (ring_buffer_empty_cpu(buffer
, cpu
))
962 ent
= peek_next_entry(iter
, cpu
, &ts
);
965 * Pick the entry with the smallest timestamp:
967 if (ent
&& (!next
|| ts
< next_ts
)) {
983 /* Find the next real entry, without updating the iterator itself */
984 static struct trace_entry
*
985 find_next_entry(struct trace_iterator
*iter
, int *ent_cpu
, u64
*ent_ts
)
987 return __find_next_entry(iter
, ent_cpu
, ent_ts
);
990 /* Find the next real entry, and increment the iterator to the next entry */
991 static void *find_next_entry_inc(struct trace_iterator
*iter
)
993 iter
->ent
= __find_next_entry(iter
, &iter
->cpu
, &iter
->ts
);
996 trace_iterator_increment(iter
, iter
->cpu
);
998 return iter
->ent
? iter
: NULL
;
1001 static void trace_consume(struct trace_iterator
*iter
)
1003 /* Don't allow ftrace to trace into the ring buffers */
1004 ftrace_disable_cpu();
1005 ring_buffer_consume(iter
->tr
->buffer
, iter
->cpu
, &iter
->ts
);
1006 ftrace_enable_cpu();
1009 static void *s_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
1011 struct trace_iterator
*iter
= m
->private;
1017 /* can't go backwards */
1022 ent
= find_next_entry_inc(iter
);
1026 while (ent
&& iter
->idx
< i
)
1027 ent
= find_next_entry_inc(iter
);
1034 static void *s_start(struct seq_file
*m
, loff_t
*pos
)
1036 struct trace_iterator
*iter
= m
->private;
1041 mutex_lock(&trace_types_lock
);
1043 if (!current_trace
|| current_trace
!= iter
->trace
) {
1044 mutex_unlock(&trace_types_lock
);
1048 atomic_inc(&trace_record_cmdline_disabled
);
1050 /* let the tracer grab locks here if needed */
1051 if (current_trace
->start
)
1052 current_trace
->start(iter
);
1054 if (*pos
!= iter
->pos
) {
1059 ftrace_disable_cpu();
1061 for_each_tracing_cpu(cpu
) {
1062 ring_buffer_iter_reset(iter
->buffer_iter
[cpu
]);
1065 ftrace_enable_cpu();
1067 for (p
= iter
; p
&& l
< *pos
; p
= s_next(m
, p
, &l
))
1072 p
= s_next(m
, p
, &l
);
1078 static void s_stop(struct seq_file
*m
, void *p
)
1080 struct trace_iterator
*iter
= m
->private;
1082 atomic_dec(&trace_record_cmdline_disabled
);
1084 /* let the tracer release locks here if needed */
1085 if (current_trace
&& current_trace
== iter
->trace
&& iter
->trace
->stop
)
1086 iter
->trace
->stop(iter
);
1088 mutex_unlock(&trace_types_lock
);
1091 #ifdef CONFIG_KRETPROBES
1092 static inline const char *kretprobed(const char *name
)
1094 static const char tramp_name
[] = "kretprobe_trampoline";
1095 int size
= sizeof(tramp_name
);
1097 if (strncmp(tramp_name
, name
, size
) == 0)
1098 return "[unknown/kretprobe'd]";
1102 static inline const char *kretprobed(const char *name
)
1106 #endif /* CONFIG_KRETPROBES */
1109 seq_print_sym_short(struct trace_seq
*s
, const char *fmt
, unsigned long address
)
1111 #ifdef CONFIG_KALLSYMS
1112 char str
[KSYM_SYMBOL_LEN
];
1115 kallsyms_lookup(address
, NULL
, NULL
, NULL
, str
);
1117 name
= kretprobed(str
);
1119 return trace_seq_printf(s
, fmt
, name
);
1125 seq_print_sym_offset(struct trace_seq
*s
, const char *fmt
,
1126 unsigned long address
)
1128 #ifdef CONFIG_KALLSYMS
1129 char str
[KSYM_SYMBOL_LEN
];
1132 sprint_symbol(str
, address
);
1133 name
= kretprobed(str
);
1135 return trace_seq_printf(s
, fmt
, name
);
1140 #ifndef CONFIG_64BIT
1141 # define IP_FMT "%08lx"
1143 # define IP_FMT "%016lx"
1147 seq_print_ip_sym(struct trace_seq
*s
, unsigned long ip
, unsigned long sym_flags
)
1152 return trace_seq_printf(s
, "0");
1154 if (sym_flags
& TRACE_ITER_SYM_OFFSET
)
1155 ret
= seq_print_sym_offset(s
, "%s", ip
);
1157 ret
= seq_print_sym_short(s
, "%s", ip
);
1162 if (sym_flags
& TRACE_ITER_SYM_ADDR
)
1163 ret
= trace_seq_printf(s
, " <" IP_FMT
">", ip
);
1167 static void print_lat_help_header(struct seq_file
*m
)
1169 seq_puts(m
, "# _------=> CPU# \n");
1170 seq_puts(m
, "# / _-----=> irqs-off \n");
1171 seq_puts(m
, "# | / _----=> need-resched \n");
1172 seq_puts(m
, "# || / _---=> hardirq/softirq \n");
1173 seq_puts(m
, "# ||| / _--=> preempt-depth \n");
1174 seq_puts(m
, "# |||| / \n");
1175 seq_puts(m
, "# ||||| delay \n");
1176 seq_puts(m
, "# cmd pid ||||| time | caller \n");
1177 seq_puts(m
, "# \\ / ||||| \\ | / \n");
1180 static void print_func_help_header(struct seq_file
*m
)
1182 seq_puts(m
, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1183 seq_puts(m
, "# | | | | |\n");
1188 print_trace_header(struct seq_file
*m
, struct trace_iterator
*iter
)
1190 unsigned long sym_flags
= (trace_flags
& TRACE_ITER_SYM_MASK
);
1191 struct trace_array
*tr
= iter
->tr
;
1192 struct trace_array_cpu
*data
= tr
->data
[tr
->cpu
];
1193 struct tracer
*type
= current_trace
;
1194 unsigned long total
;
1195 unsigned long entries
;
1196 const char *name
= "preemption";
1201 entries
= ring_buffer_entries(iter
->tr
->buffer
);
1203 ring_buffer_overruns(iter
->tr
->buffer
);
1205 seq_printf(m
, "%s latency trace v1.1.5 on %s\n",
1207 seq_puts(m
, "-----------------------------------"
1208 "---------------------------------\n");
1209 seq_printf(m
, " latency: %lu us, #%lu/%lu, CPU#%d |"
1210 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
1211 nsecs_to_usecs(data
->saved_latency
),
1215 #if defined(CONFIG_PREEMPT_NONE)
1217 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
1219 #elif defined(CONFIG_PREEMPT)
1224 /* These are reserved for later use */
1227 seq_printf(m
, " #P:%d)\n", num_online_cpus());
1231 seq_puts(m
, " -----------------\n");
1232 seq_printf(m
, " | task: %.16s-%d "
1233 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1234 data
->comm
, data
->pid
, data
->uid
, data
->nice
,
1235 data
->policy
, data
->rt_priority
);
1236 seq_puts(m
, " -----------------\n");
1238 if (data
->critical_start
) {
1239 seq_puts(m
, " => started at: ");
1240 seq_print_ip_sym(&iter
->seq
, data
->critical_start
, sym_flags
);
1241 trace_print_seq(m
, &iter
->seq
);
1242 seq_puts(m
, "\n => ended at: ");
1243 seq_print_ip_sym(&iter
->seq
, data
->critical_end
, sym_flags
);
1244 trace_print_seq(m
, &iter
->seq
);
1252 lat_print_generic(struct trace_seq
*s
, struct trace_entry
*entry
, int cpu
)
1254 int hardirq
, softirq
;
1257 comm
= trace_find_cmdline(entry
->pid
);
1259 trace_seq_printf(s
, "%8.8s-%-5d ", comm
, entry
->pid
);
1260 trace_seq_printf(s
, "%3d", cpu
);
1261 trace_seq_printf(s
, "%c%c",
1262 (entry
->flags
& TRACE_FLAG_IRQS_OFF
) ? 'd' :
1263 (entry
->flags
& TRACE_FLAG_IRQS_NOSUPPORT
) ? 'X' : '.',
1264 ((entry
->flags
& TRACE_FLAG_NEED_RESCHED
) ? 'N' : '.'));
1266 hardirq
= entry
->flags
& TRACE_FLAG_HARDIRQ
;
1267 softirq
= entry
->flags
& TRACE_FLAG_SOFTIRQ
;
1268 if (hardirq
&& softirq
) {
1269 trace_seq_putc(s
, 'H');
1272 trace_seq_putc(s
, 'h');
1275 trace_seq_putc(s
, 's');
1277 trace_seq_putc(s
, '.');
1281 if (entry
->preempt_count
)
1282 trace_seq_printf(s
, "%x", entry
->preempt_count
);
1284 trace_seq_puts(s
, ".");
1287 unsigned long preempt_mark_thresh
= 100;
1290 lat_print_timestamp(struct trace_seq
*s
, u64 abs_usecs
,
1291 unsigned long rel_usecs
)
1293 trace_seq_printf(s
, " %4lldus", abs_usecs
);
1294 if (rel_usecs
> preempt_mark_thresh
)
1295 trace_seq_puts(s
, "!: ");
1296 else if (rel_usecs
> 1)
1297 trace_seq_puts(s
, "+: ");
1299 trace_seq_puts(s
, " : ");
1302 static const char state_to_char
[] = TASK_STATE_TO_CHAR_STR
;
1305 * The message is supposed to contain an ending newline.
1306 * If the printing stops prematurely, try to add a newline of our own.
1308 void trace_seq_print_cont(struct trace_seq
*s
, struct trace_iterator
*iter
)
1310 struct trace_entry
*ent
;
1311 struct trace_field_cont
*cont
;
1314 ent
= peek_next_entry(iter
, iter
->cpu
, NULL
);
1315 if (!ent
|| ent
->type
!= TRACE_CONT
) {
1316 trace_seq_putc(s
, '\n');
1321 cont
= (struct trace_field_cont
*)ent
;
1323 ok
= (trace_seq_printf(s
, "%s", cont
->buf
) > 0);
1325 ftrace_disable_cpu();
1327 if (iter
->buffer_iter
[iter
->cpu
])
1328 ring_buffer_read(iter
->buffer_iter
[iter
->cpu
], NULL
);
1330 ring_buffer_consume(iter
->tr
->buffer
, iter
->cpu
, NULL
);
1332 ftrace_enable_cpu();
1334 ent
= peek_next_entry(iter
, iter
->cpu
, NULL
);
1335 } while (ent
&& ent
->type
== TRACE_CONT
);
1338 trace_seq_putc(s
, '\n');
1341 static enum print_line_t
1342 print_lat_fmt(struct trace_iterator
*iter
, unsigned int trace_idx
, int cpu
)
1344 struct trace_seq
*s
= &iter
->seq
;
1345 unsigned long sym_flags
= (trace_flags
& TRACE_ITER_SYM_MASK
);
1346 struct trace_entry
*next_entry
;
1347 unsigned long verbose
= (trace_flags
& TRACE_ITER_VERBOSE
);
1348 struct trace_entry
*entry
= iter
->ent
;
1349 unsigned long abs_usecs
;
1350 unsigned long rel_usecs
;
1357 if (entry
->type
== TRACE_CONT
)
1358 return TRACE_TYPE_HANDLED
;
1360 next_entry
= find_next_entry(iter
, NULL
, &next_ts
);
1363 rel_usecs
= ns2usecs(next_ts
- iter
->ts
);
1364 abs_usecs
= ns2usecs(iter
->ts
- iter
->tr
->time_start
);
1367 comm
= trace_find_cmdline(entry
->pid
);
1368 trace_seq_printf(s
, "%16s %5d %3d %d %08x %08x [%08lx]"
1369 " %ld.%03ldms (+%ld.%03ldms): ",
1371 entry
->pid
, cpu
, entry
->flags
,
1372 entry
->preempt_count
, trace_idx
,
1375 abs_usecs
% 1000, rel_usecs
/1000,
1378 lat_print_generic(s
, entry
, cpu
);
1379 lat_print_timestamp(s
, abs_usecs
, rel_usecs
);
1381 switch (entry
->type
) {
1383 struct ftrace_entry
*field
;
1385 trace_assign_type(field
, entry
);
1387 seq_print_ip_sym(s
, field
->ip
, sym_flags
);
1388 trace_seq_puts(s
, " (");
1389 seq_print_ip_sym(s
, field
->parent_ip
, sym_flags
);
1390 trace_seq_puts(s
, ")\n");
1395 struct ctx_switch_entry
*field
;
1397 trace_assign_type(field
, entry
);
1399 T
= field
->next_state
< sizeof(state_to_char
) ?
1400 state_to_char
[field
->next_state
] : 'X';
1402 state
= field
->prev_state
?
1403 __ffs(field
->prev_state
) + 1 : 0;
1404 S
= state
< sizeof(state_to_char
) - 1 ? state_to_char
[state
] : 'X';
1405 comm
= trace_find_cmdline(field
->next_pid
);
1406 trace_seq_printf(s
, " %5d:%3d:%c %s [%03d] %5d:%3d:%c %s\n",
1409 S
, entry
->type
== TRACE_CTX
? "==>" : " +",
1416 case TRACE_SPECIAL
: {
1417 struct special_entry
*field
;
1419 trace_assign_type(field
, entry
);
1421 trace_seq_printf(s
, "# %ld %ld %ld\n",
1428 struct stack_entry
*field
;
1430 trace_assign_type(field
, entry
);
1432 for (i
= 0; i
< FTRACE_STACK_ENTRIES
; i
++) {
1434 trace_seq_puts(s
, " <= ");
1435 seq_print_ip_sym(s
, field
->caller
[i
], sym_flags
);
1437 trace_seq_puts(s
, "\n");
1441 struct print_entry
*field
;
1443 trace_assign_type(field
, entry
);
1445 seq_print_ip_sym(s
, field
->ip
, sym_flags
);
1446 trace_seq_printf(s
, ": %s", field
->buf
);
1447 if (entry
->flags
& TRACE_FLAG_CONT
)
1448 trace_seq_print_cont(s
, iter
);
1452 trace_seq_printf(s
, "Unknown type %d\n", entry
->type
);
1454 return TRACE_TYPE_HANDLED
;
1457 static enum print_line_t
print_trace_fmt(struct trace_iterator
*iter
)
1459 struct trace_seq
*s
= &iter
->seq
;
1460 unsigned long sym_flags
= (trace_flags
& TRACE_ITER_SYM_MASK
);
1461 struct trace_entry
*entry
;
1462 unsigned long usec_rem
;
1463 unsigned long long t
;
1472 if (entry
->type
== TRACE_CONT
)
1473 return TRACE_TYPE_HANDLED
;
1475 comm
= trace_find_cmdline(iter
->ent
->pid
);
1477 t
= ns2usecs(iter
->ts
);
1478 usec_rem
= do_div(t
, 1000000ULL);
1479 secs
= (unsigned long)t
;
1481 ret
= trace_seq_printf(s
, "%16s-%-5d ", comm
, entry
->pid
);
1483 return TRACE_TYPE_PARTIAL_LINE
;
1484 ret
= trace_seq_printf(s
, "[%03d] ", iter
->cpu
);
1486 return TRACE_TYPE_PARTIAL_LINE
;
1487 ret
= trace_seq_printf(s
, "%5lu.%06lu: ", secs
, usec_rem
);
1489 return TRACE_TYPE_PARTIAL_LINE
;
1491 switch (entry
->type
) {
1493 struct ftrace_entry
*field
;
1495 trace_assign_type(field
, entry
);
1497 ret
= seq_print_ip_sym(s
, field
->ip
, sym_flags
);
1499 return TRACE_TYPE_PARTIAL_LINE
;
1500 if ((sym_flags
& TRACE_ITER_PRINT_PARENT
) &&
1502 ret
= trace_seq_printf(s
, " <-");
1504 return TRACE_TYPE_PARTIAL_LINE
;
1505 ret
= seq_print_ip_sym(s
,
1509 return TRACE_TYPE_PARTIAL_LINE
;
1511 ret
= trace_seq_printf(s
, "\n");
1513 return TRACE_TYPE_PARTIAL_LINE
;
1518 struct ctx_switch_entry
*field
;
1520 trace_assign_type(field
, entry
);
1522 S
= field
->prev_state
< sizeof(state_to_char
) ?
1523 state_to_char
[field
->prev_state
] : 'X';
1524 T
= field
->next_state
< sizeof(state_to_char
) ?
1525 state_to_char
[field
->next_state
] : 'X';
1526 ret
= trace_seq_printf(s
, " %5d:%3d:%c %s [%03d] %5d:%3d:%c\n",
1530 entry
->type
== TRACE_CTX
? "==>" : " +",
1536 return TRACE_TYPE_PARTIAL_LINE
;
1539 case TRACE_SPECIAL
: {
1540 struct special_entry
*field
;
1542 trace_assign_type(field
, entry
);
1544 ret
= trace_seq_printf(s
, "# %ld %ld %ld\n",
1549 return TRACE_TYPE_PARTIAL_LINE
;
1553 struct stack_entry
*field
;
1555 trace_assign_type(field
, entry
);
1557 for (i
= 0; i
< FTRACE_STACK_ENTRIES
; i
++) {
1559 ret
= trace_seq_puts(s
, " <= ");
1561 return TRACE_TYPE_PARTIAL_LINE
;
1563 ret
= seq_print_ip_sym(s
, field
->caller
[i
],
1566 return TRACE_TYPE_PARTIAL_LINE
;
1568 ret
= trace_seq_puts(s
, "\n");
1570 return TRACE_TYPE_PARTIAL_LINE
;
1574 struct print_entry
*field
;
1576 trace_assign_type(field
, entry
);
1578 seq_print_ip_sym(s
, field
->ip
, sym_flags
);
1579 trace_seq_printf(s
, ": %s", field
->buf
);
1580 if (entry
->flags
& TRACE_FLAG_CONT
)
1581 trace_seq_print_cont(s
, iter
);
1585 return TRACE_TYPE_HANDLED
;
1588 static enum print_line_t
print_raw_fmt(struct trace_iterator
*iter
)
1590 struct trace_seq
*s
= &iter
->seq
;
1591 struct trace_entry
*entry
;
1597 if (entry
->type
== TRACE_CONT
)
1598 return TRACE_TYPE_HANDLED
;
1600 ret
= trace_seq_printf(s
, "%d %d %llu ",
1601 entry
->pid
, iter
->cpu
, iter
->ts
);
1603 return TRACE_TYPE_PARTIAL_LINE
;
1605 switch (entry
->type
) {
1607 struct ftrace_entry
*field
;
1609 trace_assign_type(field
, entry
);
1611 ret
= trace_seq_printf(s
, "%x %x\n",
1615 return TRACE_TYPE_PARTIAL_LINE
;
1620 struct ctx_switch_entry
*field
;
1622 trace_assign_type(field
, entry
);
1624 S
= field
->prev_state
< sizeof(state_to_char
) ?
1625 state_to_char
[field
->prev_state
] : 'X';
1626 T
= field
->next_state
< sizeof(state_to_char
) ?
1627 state_to_char
[field
->next_state
] : 'X';
1628 if (entry
->type
== TRACE_WAKE
)
1630 ret
= trace_seq_printf(s
, "%d %d %c %d %d %d %c\n",
1639 return TRACE_TYPE_PARTIAL_LINE
;
1644 struct special_entry
*field
;
1646 trace_assign_type(field
, entry
);
1648 ret
= trace_seq_printf(s
, "# %ld %ld %ld\n",
1653 return TRACE_TYPE_PARTIAL_LINE
;
1657 struct print_entry
*field
;
1659 trace_assign_type(field
, entry
);
1661 trace_seq_printf(s
, "# %lx %s", field
->ip
, field
->buf
);
1662 if (entry
->flags
& TRACE_FLAG_CONT
)
1663 trace_seq_print_cont(s
, iter
);
1667 return TRACE_TYPE_HANDLED
;
1670 #define SEQ_PUT_FIELD_RET(s, x) \
1672 if (!trace_seq_putmem(s, &(x), sizeof(x))) \
1676 #define SEQ_PUT_HEX_FIELD_RET(s, x) \
1678 BUILD_BUG_ON(sizeof(x) > MAX_MEMHEX_BYTES); \
1679 if (!trace_seq_putmem_hex(s, &(x), sizeof(x))) \
1683 static enum print_line_t
print_hex_fmt(struct trace_iterator
*iter
)
1685 struct trace_seq
*s
= &iter
->seq
;
1686 unsigned char newline
= '\n';
1687 struct trace_entry
*entry
;
1692 if (entry
->type
== TRACE_CONT
)
1693 return TRACE_TYPE_HANDLED
;
1695 SEQ_PUT_HEX_FIELD_RET(s
, entry
->pid
);
1696 SEQ_PUT_HEX_FIELD_RET(s
, iter
->cpu
);
1697 SEQ_PUT_HEX_FIELD_RET(s
, iter
->ts
);
1699 switch (entry
->type
) {
1701 struct ftrace_entry
*field
;
1703 trace_assign_type(field
, entry
);
1705 SEQ_PUT_HEX_FIELD_RET(s
, field
->ip
);
1706 SEQ_PUT_HEX_FIELD_RET(s
, field
->parent_ip
);
1711 struct ctx_switch_entry
*field
;
1713 trace_assign_type(field
, entry
);
1715 S
= field
->prev_state
< sizeof(state_to_char
) ?
1716 state_to_char
[field
->prev_state
] : 'X';
1717 T
= field
->next_state
< sizeof(state_to_char
) ?
1718 state_to_char
[field
->next_state
] : 'X';
1719 if (entry
->type
== TRACE_WAKE
)
1721 SEQ_PUT_HEX_FIELD_RET(s
, field
->prev_pid
);
1722 SEQ_PUT_HEX_FIELD_RET(s
, field
->prev_prio
);
1723 SEQ_PUT_HEX_FIELD_RET(s
, S
);
1724 SEQ_PUT_HEX_FIELD_RET(s
, field
->next_cpu
);
1725 SEQ_PUT_HEX_FIELD_RET(s
, field
->next_pid
);
1726 SEQ_PUT_HEX_FIELD_RET(s
, field
->next_prio
);
1727 SEQ_PUT_HEX_FIELD_RET(s
, T
);
1732 struct special_entry
*field
;
1734 trace_assign_type(field
, entry
);
1736 SEQ_PUT_HEX_FIELD_RET(s
, field
->arg1
);
1737 SEQ_PUT_HEX_FIELD_RET(s
, field
->arg2
);
1738 SEQ_PUT_HEX_FIELD_RET(s
, field
->arg3
);
1742 SEQ_PUT_FIELD_RET(s
, newline
);
1744 return TRACE_TYPE_HANDLED
;
1747 static enum print_line_t
print_bin_fmt(struct trace_iterator
*iter
)
1749 struct trace_seq
*s
= &iter
->seq
;
1750 struct trace_entry
*entry
;
1754 if (entry
->type
== TRACE_CONT
)
1755 return TRACE_TYPE_HANDLED
;
1757 SEQ_PUT_FIELD_RET(s
, entry
->pid
);
1758 SEQ_PUT_FIELD_RET(s
, entry
->cpu
);
1759 SEQ_PUT_FIELD_RET(s
, iter
->ts
);
1761 switch (entry
->type
) {
1763 struct ftrace_entry
*field
;
1765 trace_assign_type(field
, entry
);
1767 SEQ_PUT_FIELD_RET(s
, field
->ip
);
1768 SEQ_PUT_FIELD_RET(s
, field
->parent_ip
);
1772 struct ctx_switch_entry
*field
;
1774 trace_assign_type(field
, entry
);
1776 SEQ_PUT_FIELD_RET(s
, field
->prev_pid
);
1777 SEQ_PUT_FIELD_RET(s
, field
->prev_prio
);
1778 SEQ_PUT_FIELD_RET(s
, field
->prev_state
);
1779 SEQ_PUT_FIELD_RET(s
, field
->next_pid
);
1780 SEQ_PUT_FIELD_RET(s
, field
->next_prio
);
1781 SEQ_PUT_FIELD_RET(s
, field
->next_state
);
1786 struct special_entry
*field
;
1788 trace_assign_type(field
, entry
);
1790 SEQ_PUT_FIELD_RET(s
, field
->arg1
);
1791 SEQ_PUT_FIELD_RET(s
, field
->arg2
);
1792 SEQ_PUT_FIELD_RET(s
, field
->arg3
);
1799 static int trace_empty(struct trace_iterator
*iter
)
1803 for_each_tracing_cpu(cpu
) {
1804 if (iter
->buffer_iter
[cpu
]) {
1805 if (!ring_buffer_iter_empty(iter
->buffer_iter
[cpu
]))
1808 if (!ring_buffer_empty_cpu(iter
->tr
->buffer
, cpu
))
1816 static enum print_line_t
print_trace_line(struct trace_iterator
*iter
)
1818 enum print_line_t ret
;
1820 if (iter
->trace
&& iter
->trace
->print_line
) {
1821 ret
= iter
->trace
->print_line(iter
);
1822 if (ret
!= TRACE_TYPE_UNHANDLED
)
1826 if (trace_flags
& TRACE_ITER_BIN
)
1827 return print_bin_fmt(iter
);
1829 if (trace_flags
& TRACE_ITER_HEX
)
1830 return print_hex_fmt(iter
);
1832 if (trace_flags
& TRACE_ITER_RAW
)
1833 return print_raw_fmt(iter
);
1835 if (iter
->iter_flags
& TRACE_FILE_LAT_FMT
)
1836 return print_lat_fmt(iter
, iter
->idx
, iter
->cpu
);
1838 return print_trace_fmt(iter
);
1841 static int s_show(struct seq_file
*m
, void *v
)
1843 struct trace_iterator
*iter
= v
;
1845 if (iter
->ent
== NULL
) {
1847 seq_printf(m
, "# tracer: %s\n", iter
->trace
->name
);
1850 if (iter
->iter_flags
& TRACE_FILE_LAT_FMT
) {
1851 /* print nothing if the buffers are empty */
1852 if (trace_empty(iter
))
1854 print_trace_header(m
, iter
);
1855 if (!(trace_flags
& TRACE_ITER_VERBOSE
))
1856 print_lat_help_header(m
);
1858 if (!(trace_flags
& TRACE_ITER_VERBOSE
))
1859 print_func_help_header(m
);
1862 print_trace_line(iter
);
1863 trace_print_seq(m
, &iter
->seq
);
1869 static struct seq_operations tracer_seq_ops
= {
1876 static struct trace_iterator
*
1877 __tracing_open(struct inode
*inode
, struct file
*file
, int *ret
)
1879 struct trace_iterator
*iter
;
1883 if (tracing_disabled
) {
1888 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
1894 mutex_lock(&trace_types_lock
);
1895 if (current_trace
&& current_trace
->print_max
)
1898 iter
->tr
= inode
->i_private
;
1899 iter
->trace
= current_trace
;
1902 for_each_tracing_cpu(cpu
) {
1904 iter
->buffer_iter
[cpu
] =
1905 ring_buffer_read_start(iter
->tr
->buffer
, cpu
);
1907 if (!iter
->buffer_iter
[cpu
])
1911 /* TODO stop tracer */
1912 *ret
= seq_open(file
, &tracer_seq_ops
);
1916 m
= file
->private_data
;
1919 /* stop the trace while dumping */
1920 if (iter
->tr
->ctrl
) {
1922 ftrace_function_enabled
= 0;
1925 if (iter
->trace
&& iter
->trace
->open
)
1926 iter
->trace
->open(iter
);
1928 mutex_unlock(&trace_types_lock
);
1934 for_each_tracing_cpu(cpu
) {
1935 if (iter
->buffer_iter
[cpu
])
1936 ring_buffer_read_finish(iter
->buffer_iter
[cpu
]);
1938 mutex_unlock(&trace_types_lock
);
1941 return ERR_PTR(-ENOMEM
);
1944 int tracing_open_generic(struct inode
*inode
, struct file
*filp
)
1946 if (tracing_disabled
)
1949 filp
->private_data
= inode
->i_private
;
1953 int tracing_release(struct inode
*inode
, struct file
*file
)
1955 struct seq_file
*m
= (struct seq_file
*)file
->private_data
;
1956 struct trace_iterator
*iter
= m
->private;
1959 mutex_lock(&trace_types_lock
);
1960 for_each_tracing_cpu(cpu
) {
1961 if (iter
->buffer_iter
[cpu
])
1962 ring_buffer_read_finish(iter
->buffer_iter
[cpu
]);
1965 if (iter
->trace
&& iter
->trace
->close
)
1966 iter
->trace
->close(iter
);
1968 /* reenable tracing if it was previously enabled */
1969 if (iter
->tr
->ctrl
) {
1972 * It is safe to enable function tracing even if it
1975 ftrace_function_enabled
= 1;
1977 mutex_unlock(&trace_types_lock
);
1979 seq_release(inode
, file
);
1984 static int tracing_open(struct inode
*inode
, struct file
*file
)
1988 __tracing_open(inode
, file
, &ret
);
1993 static int tracing_lt_open(struct inode
*inode
, struct file
*file
)
1995 struct trace_iterator
*iter
;
1998 iter
= __tracing_open(inode
, file
, &ret
);
2001 iter
->iter_flags
|= TRACE_FILE_LAT_FMT
;
2008 t_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
2010 struct tracer
*t
= m
->private;
2022 static void *t_start(struct seq_file
*m
, loff_t
*pos
)
2024 struct tracer
*t
= m
->private;
2027 mutex_lock(&trace_types_lock
);
2028 for (; t
&& l
< *pos
; t
= t_next(m
, t
, &l
))
2034 static void t_stop(struct seq_file
*m
, void *p
)
2036 mutex_unlock(&trace_types_lock
);
2039 static int t_show(struct seq_file
*m
, void *v
)
2041 struct tracer
*t
= v
;
2046 seq_printf(m
, "%s", t
->name
);
2055 static struct seq_operations show_traces_seq_ops
= {
2062 static int show_traces_open(struct inode
*inode
, struct file
*file
)
2066 if (tracing_disabled
)
2069 ret
= seq_open(file
, &show_traces_seq_ops
);
2071 struct seq_file
*m
= file
->private_data
;
2072 m
->private = trace_types
;
2078 static struct file_operations tracing_fops
= {
2079 .open
= tracing_open
,
2081 .llseek
= seq_lseek
,
2082 .release
= tracing_release
,
2085 static struct file_operations tracing_lt_fops
= {
2086 .open
= tracing_lt_open
,
2088 .llseek
= seq_lseek
,
2089 .release
= tracing_release
,
2092 static struct file_operations show_traces_fops
= {
2093 .open
= show_traces_open
,
2095 .release
= seq_release
,
2099 * Only trace on a CPU if the bitmask is set:
2101 static cpumask_t tracing_cpumask
= CPU_MASK_ALL
;
2104 * When tracing/tracing_cpu_mask is modified then this holds
2105 * the new bitmask we are about to install:
2107 static cpumask_t tracing_cpumask_new
;
2110 * The tracer itself will not take this lock, but still we want
2111 * to provide a consistent cpumask to user-space:
2113 static DEFINE_MUTEX(tracing_cpumask_update_lock
);
2116 * Temporary storage for the character representation of the
2117 * CPU bitmask (and one more byte for the newline):
2119 static char mask_str
[NR_CPUS
+ 1];
2122 tracing_cpumask_read(struct file
*filp
, char __user
*ubuf
,
2123 size_t count
, loff_t
*ppos
)
2127 mutex_lock(&tracing_cpumask_update_lock
);
2129 len
= cpumask_scnprintf(mask_str
, count
, tracing_cpumask
);
2130 if (count
- len
< 2) {
2134 len
+= sprintf(mask_str
+ len
, "\n");
2135 count
= simple_read_from_buffer(ubuf
, count
, ppos
, mask_str
, NR_CPUS
+1);
2138 mutex_unlock(&tracing_cpumask_update_lock
);
2144 tracing_cpumask_write(struct file
*filp
, const char __user
*ubuf
,
2145 size_t count
, loff_t
*ppos
)
2149 mutex_lock(&tracing_cpumask_update_lock
);
2150 err
= cpumask_parse_user(ubuf
, count
, tracing_cpumask_new
);
2154 raw_local_irq_disable();
2155 __raw_spin_lock(&ftrace_max_lock
);
2156 for_each_tracing_cpu(cpu
) {
2158 * Increase/decrease the disabled counter if we are
2159 * about to flip a bit in the cpumask:
2161 if (cpu_isset(cpu
, tracing_cpumask
) &&
2162 !cpu_isset(cpu
, tracing_cpumask_new
)) {
2163 atomic_inc(&global_trace
.data
[cpu
]->disabled
);
2165 if (!cpu_isset(cpu
, tracing_cpumask
) &&
2166 cpu_isset(cpu
, tracing_cpumask_new
)) {
2167 atomic_dec(&global_trace
.data
[cpu
]->disabled
);
2170 __raw_spin_unlock(&ftrace_max_lock
);
2171 raw_local_irq_enable();
2173 tracing_cpumask
= tracing_cpumask_new
;
2175 mutex_unlock(&tracing_cpumask_update_lock
);
2180 mutex_unlock(&tracing_cpumask_update_lock
);
2185 static struct file_operations tracing_cpumask_fops
= {
2186 .open
= tracing_open_generic
,
2187 .read
= tracing_cpumask_read
,
2188 .write
= tracing_cpumask_write
,
2192 tracing_iter_ctrl_read(struct file
*filp
, char __user
*ubuf
,
2193 size_t cnt
, loff_t
*ppos
)
2200 /* calulate max size */
2201 for (i
= 0; trace_options
[i
]; i
++) {
2202 len
+= strlen(trace_options
[i
]);
2203 len
+= 3; /* "no" and space */
2206 /* +2 for \n and \0 */
2207 buf
= kmalloc(len
+ 2, GFP_KERNEL
);
2211 for (i
= 0; trace_options
[i
]; i
++) {
2212 if (trace_flags
& (1 << i
))
2213 r
+= sprintf(buf
+ r
, "%s ", trace_options
[i
]);
2215 r
+= sprintf(buf
+ r
, "no%s ", trace_options
[i
]);
2218 r
+= sprintf(buf
+ r
, "\n");
2219 WARN_ON(r
>= len
+ 2);
2221 r
= simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
2229 tracing_iter_ctrl_write(struct file
*filp
, const char __user
*ubuf
,
2230 size_t cnt
, loff_t
*ppos
)
2237 if (cnt
>= sizeof(buf
))
2240 if (copy_from_user(&buf
, ubuf
, cnt
))
2245 if (strncmp(buf
, "no", 2) == 0) {
2250 for (i
= 0; trace_options
[i
]; i
++) {
2251 int len
= strlen(trace_options
[i
]);
2253 if (strncmp(cmp
, trace_options
[i
], len
) == 0) {
2255 trace_flags
&= ~(1 << i
);
2257 trace_flags
|= (1 << i
);
2262 * If no option could be set, return an error:
2264 if (!trace_options
[i
])
2272 static struct file_operations tracing_iter_fops
= {
2273 .open
= tracing_open_generic
,
2274 .read
= tracing_iter_ctrl_read
,
2275 .write
= tracing_iter_ctrl_write
,
2278 static const char readme_msg
[] =
2279 "tracing mini-HOWTO:\n\n"
2281 "# mount -t debugfs nodev /debug\n\n"
2282 "# cat /debug/tracing/available_tracers\n"
2283 "wakeup preemptirqsoff preemptoff irqsoff ftrace sched_switch none\n\n"
2284 "# cat /debug/tracing/current_tracer\n"
2286 "# echo sched_switch > /debug/tracing/current_tracer\n"
2287 "# cat /debug/tracing/current_tracer\n"
2289 "# cat /debug/tracing/iter_ctrl\n"
2290 "noprint-parent nosym-offset nosym-addr noverbose\n"
2291 "# echo print-parent > /debug/tracing/iter_ctrl\n"
2292 "# echo 1 > /debug/tracing/tracing_enabled\n"
2293 "# cat /debug/tracing/trace > /tmp/trace.txt\n"
2294 "echo 0 > /debug/tracing/tracing_enabled\n"
2298 tracing_readme_read(struct file
*filp
, char __user
*ubuf
,
2299 size_t cnt
, loff_t
*ppos
)
2301 return simple_read_from_buffer(ubuf
, cnt
, ppos
,
2302 readme_msg
, strlen(readme_msg
));
2305 static struct file_operations tracing_readme_fops
= {
2306 .open
= tracing_open_generic
,
2307 .read
= tracing_readme_read
,
2311 tracing_ctrl_read(struct file
*filp
, char __user
*ubuf
,
2312 size_t cnt
, loff_t
*ppos
)
2314 struct trace_array
*tr
= filp
->private_data
;
2318 r
= sprintf(buf
, "%ld\n", tr
->ctrl
);
2319 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
2323 tracing_ctrl_write(struct file
*filp
, const char __user
*ubuf
,
2324 size_t cnt
, loff_t
*ppos
)
2326 struct trace_array
*tr
= filp
->private_data
;
2331 if (cnt
>= sizeof(buf
))
2334 if (copy_from_user(&buf
, ubuf
, cnt
))
2339 ret
= strict_strtoul(buf
, 10, &val
);
2345 mutex_lock(&trace_types_lock
);
2346 if (tr
->ctrl
^ val
) {
2354 if (current_trace
&& current_trace
->ctrl_update
)
2355 current_trace
->ctrl_update(tr
);
2357 mutex_unlock(&trace_types_lock
);
2365 tracing_set_trace_read(struct file
*filp
, char __user
*ubuf
,
2366 size_t cnt
, loff_t
*ppos
)
2368 char buf
[max_tracer_type_len
+2];
2371 mutex_lock(&trace_types_lock
);
2373 r
= sprintf(buf
, "%s\n", current_trace
->name
);
2375 r
= sprintf(buf
, "\n");
2376 mutex_unlock(&trace_types_lock
);
2378 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
2382 tracing_set_trace_write(struct file
*filp
, const char __user
*ubuf
,
2383 size_t cnt
, loff_t
*ppos
)
2385 struct trace_array
*tr
= &global_trace
;
2387 char buf
[max_tracer_type_len
+1];
2393 if (cnt
> max_tracer_type_len
)
2394 cnt
= max_tracer_type_len
;
2396 if (copy_from_user(&buf
, ubuf
, cnt
))
2401 /* strip ending whitespace. */
2402 for (i
= cnt
- 1; i
> 0 && isspace(buf
[i
]); i
--)
2405 mutex_lock(&trace_types_lock
);
2406 for (t
= trace_types
; t
; t
= t
->next
) {
2407 if (strcmp(t
->name
, buf
) == 0)
2414 if (t
== current_trace
)
2417 if (current_trace
&& current_trace
->reset
)
2418 current_trace
->reset(tr
);
2425 mutex_unlock(&trace_types_lock
);
2434 tracing_max_lat_read(struct file
*filp
, char __user
*ubuf
,
2435 size_t cnt
, loff_t
*ppos
)
2437 unsigned long *ptr
= filp
->private_data
;
2441 r
= snprintf(buf
, sizeof(buf
), "%ld\n",
2442 *ptr
== (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr
));
2443 if (r
> sizeof(buf
))
2445 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
2449 tracing_max_lat_write(struct file
*filp
, const char __user
*ubuf
,
2450 size_t cnt
, loff_t
*ppos
)
2452 long *ptr
= filp
->private_data
;
2457 if (cnt
>= sizeof(buf
))
2460 if (copy_from_user(&buf
, ubuf
, cnt
))
2465 ret
= strict_strtoul(buf
, 10, &val
);
2474 static atomic_t tracing_reader
;
2476 static int tracing_open_pipe(struct inode
*inode
, struct file
*filp
)
2478 struct trace_iterator
*iter
;
2480 if (tracing_disabled
)
2483 /* We only allow for reader of the pipe */
2484 if (atomic_inc_return(&tracing_reader
) != 1) {
2485 atomic_dec(&tracing_reader
);
2489 /* create a buffer to store the information to pass to userspace */
2490 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
2494 mutex_lock(&trace_types_lock
);
2495 iter
->tr
= &global_trace
;
2496 iter
->trace
= current_trace
;
2497 filp
->private_data
= iter
;
2499 if (iter
->trace
->pipe_open
)
2500 iter
->trace
->pipe_open(iter
);
2501 mutex_unlock(&trace_types_lock
);
2506 static int tracing_release_pipe(struct inode
*inode
, struct file
*file
)
2508 struct trace_iterator
*iter
= file
->private_data
;
2511 atomic_dec(&tracing_reader
);
2517 tracing_poll_pipe(struct file
*filp
, poll_table
*poll_table
)
2519 struct trace_iterator
*iter
= filp
->private_data
;
2521 if (trace_flags
& TRACE_ITER_BLOCK
) {
2523 * Always select as readable when in blocking mode
2525 return POLLIN
| POLLRDNORM
;
2527 if (!trace_empty(iter
))
2528 return POLLIN
| POLLRDNORM
;
2529 poll_wait(filp
, &trace_wait
, poll_table
);
2530 if (!trace_empty(iter
))
2531 return POLLIN
| POLLRDNORM
;
2541 tracing_read_pipe(struct file
*filp
, char __user
*ubuf
,
2542 size_t cnt
, loff_t
*ppos
)
2544 struct trace_iterator
*iter
= filp
->private_data
;
2547 /* return any leftover data */
2548 sret
= trace_seq_to_user(&iter
->seq
, ubuf
, cnt
);
2552 trace_seq_reset(&iter
->seq
);
2554 mutex_lock(&trace_types_lock
);
2555 if (iter
->trace
->read
) {
2556 sret
= iter
->trace
->read(iter
, filp
, ubuf
, cnt
, ppos
);
2563 while (trace_empty(iter
)) {
2565 if ((filp
->f_flags
& O_NONBLOCK
)) {
2571 * This is a make-shift waitqueue. The reason we don't use
2572 * an actual wait queue is because:
2573 * 1) we only ever have one waiter
2574 * 2) the tracing, traces all functions, we don't want
2575 * the overhead of calling wake_up and friends
2576 * (and tracing them too)
2577 * Anyway, this is really very primitive wakeup.
2579 set_current_state(TASK_INTERRUPTIBLE
);
2580 iter
->tr
->waiter
= current
;
2582 mutex_unlock(&trace_types_lock
);
2584 /* sleep for 100 msecs, and try again. */
2585 schedule_timeout(HZ
/10);
2587 mutex_lock(&trace_types_lock
);
2589 iter
->tr
->waiter
= NULL
;
2591 if (signal_pending(current
)) {
2596 if (iter
->trace
!= current_trace
)
2600 * We block until we read something and tracing is disabled.
2601 * We still block if tracing is disabled, but we have never
2602 * read anything. This allows a user to cat this file, and
2603 * then enable tracing. But after we have read something,
2604 * we give an EOF when tracing is again disabled.
2606 * iter->pos will be 0 if we haven't read anything.
2608 if (!tracer_enabled
&& iter
->pos
)
2614 /* stop when tracing is finished */
2615 if (trace_empty(iter
))
2618 if (cnt
>= PAGE_SIZE
)
2619 cnt
= PAGE_SIZE
- 1;
2621 /* reset all but tr, trace, and overruns */
2622 memset(&iter
->seq
, 0,
2623 sizeof(struct trace_iterator
) -
2624 offsetof(struct trace_iterator
, seq
));
2627 while (find_next_entry_inc(iter
) != NULL
) {
2628 enum print_line_t ret
;
2629 int len
= iter
->seq
.len
;
2631 ret
= print_trace_line(iter
);
2632 if (ret
== TRACE_TYPE_PARTIAL_LINE
) {
2633 /* don't print partial lines */
2634 iter
->seq
.len
= len
;
2638 trace_consume(iter
);
2640 if (iter
->seq
.len
>= cnt
)
2644 /* Now copy what we have to the user */
2645 sret
= trace_seq_to_user(&iter
->seq
, ubuf
, cnt
);
2646 if (iter
->seq
.readpos
>= iter
->seq
.len
)
2647 trace_seq_reset(&iter
->seq
);
2650 * If there was nothing to send to user, inspite of consuming trace
2651 * entries, go back to wait for more entries.
2657 mutex_unlock(&trace_types_lock
);
2663 tracing_entries_read(struct file
*filp
, char __user
*ubuf
,
2664 size_t cnt
, loff_t
*ppos
)
2666 struct trace_array
*tr
= filp
->private_data
;
2670 r
= sprintf(buf
, "%lu\n", tr
->entries
);
2671 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
2675 tracing_entries_write(struct file
*filp
, const char __user
*ubuf
,
2676 size_t cnt
, loff_t
*ppos
)
2681 struct trace_array
*tr
= filp
->private_data
;
2683 if (cnt
>= sizeof(buf
))
2686 if (copy_from_user(&buf
, ubuf
, cnt
))
2691 ret
= strict_strtoul(buf
, 10, &val
);
2695 /* must have at least 1 entry */
2699 mutex_lock(&trace_types_lock
);
2703 pr_info("ftrace: please disable tracing"
2704 " before modifying buffer size\n");
2708 /* disable all cpu buffers */
2709 for_each_tracing_cpu(cpu
) {
2710 if (global_trace
.data
[cpu
])
2711 atomic_inc(&global_trace
.data
[cpu
]->disabled
);
2712 if (max_tr
.data
[cpu
])
2713 atomic_inc(&max_tr
.data
[cpu
]->disabled
);
2716 if (val
!= global_trace
.entries
) {
2717 ret
= ring_buffer_resize(global_trace
.buffer
, val
);
2723 ret
= ring_buffer_resize(max_tr
.buffer
, val
);
2727 r
= ring_buffer_resize(global_trace
.buffer
,
2728 global_trace
.entries
);
2730 /* AARGH! We are left with different
2731 * size max buffer!!!! */
2733 tracing_disabled
= 1;
2738 global_trace
.entries
= val
;
2743 /* If check pages failed, return ENOMEM */
2744 if (tracing_disabled
)
2747 for_each_tracing_cpu(cpu
) {
2748 if (global_trace
.data
[cpu
])
2749 atomic_dec(&global_trace
.data
[cpu
]->disabled
);
2750 if (max_tr
.data
[cpu
])
2751 atomic_dec(&max_tr
.data
[cpu
]->disabled
);
2754 max_tr
.entries
= global_trace
.entries
;
2755 mutex_unlock(&trace_types_lock
);
2760 static int mark_printk(const char *fmt
, ...)
2764 va_start(args
, fmt
);
2765 ret
= trace_vprintk(0, fmt
, args
);
2771 tracing_mark_write(struct file
*filp
, const char __user
*ubuf
,
2772 size_t cnt
, loff_t
*fpos
)
2776 struct trace_array
*tr
= &global_trace
;
2778 if (!tr
->ctrl
|| tracing_disabled
)
2781 if (cnt
> TRACE_BUF_SIZE
)
2782 cnt
= TRACE_BUF_SIZE
;
2784 buf
= kmalloc(cnt
+ 1, GFP_KERNEL
);
2788 if (copy_from_user(buf
, ubuf
, cnt
)) {
2793 /* Cut from the first nil or newline. */
2795 end
= strchr(buf
, '\n');
2799 cnt
= mark_printk("%s\n", buf
);
2806 static struct file_operations tracing_max_lat_fops
= {
2807 .open
= tracing_open_generic
,
2808 .read
= tracing_max_lat_read
,
2809 .write
= tracing_max_lat_write
,
2812 static struct file_operations tracing_ctrl_fops
= {
2813 .open
= tracing_open_generic
,
2814 .read
= tracing_ctrl_read
,
2815 .write
= tracing_ctrl_write
,
2818 static struct file_operations set_tracer_fops
= {
2819 .open
= tracing_open_generic
,
2820 .read
= tracing_set_trace_read
,
2821 .write
= tracing_set_trace_write
,
2824 static struct file_operations tracing_pipe_fops
= {
2825 .open
= tracing_open_pipe
,
2826 .poll
= tracing_poll_pipe
,
2827 .read
= tracing_read_pipe
,
2828 .release
= tracing_release_pipe
,
2831 static struct file_operations tracing_entries_fops
= {
2832 .open
= tracing_open_generic
,
2833 .read
= tracing_entries_read
,
2834 .write
= tracing_entries_write
,
2837 static struct file_operations tracing_mark_fops
= {
2838 .open
= tracing_open_generic
,
2839 .write
= tracing_mark_write
,
2842 #ifdef CONFIG_DYNAMIC_FTRACE
2845 tracing_read_long(struct file
*filp
, char __user
*ubuf
,
2846 size_t cnt
, loff_t
*ppos
)
2848 unsigned long *p
= filp
->private_data
;
2852 r
= sprintf(buf
, "%ld\n", *p
);
2854 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
2857 static struct file_operations tracing_read_long_fops
= {
2858 .open
= tracing_open_generic
,
2859 .read
= tracing_read_long
,
2863 static struct dentry
*d_tracer
;
2865 struct dentry
*tracing_init_dentry(void)
2872 d_tracer
= debugfs_create_dir("tracing", NULL
);
2874 if (!d_tracer
&& !once
) {
2876 pr_warning("Could not create debugfs directory 'tracing'\n");
2883 #ifdef CONFIG_FTRACE_SELFTEST
2884 /* Let selftest have access to static functions in this file */
2885 #include "trace_selftest.c"
2888 static __init
int tracer_init_debugfs(void)
2890 struct dentry
*d_tracer
;
2891 struct dentry
*entry
;
2893 d_tracer
= tracing_init_dentry();
2895 entry
= debugfs_create_file("tracing_enabled", 0644, d_tracer
,
2896 &global_trace
, &tracing_ctrl_fops
);
2898 pr_warning("Could not create debugfs 'tracing_enabled' entry\n");
2900 entry
= debugfs_create_file("iter_ctrl", 0644, d_tracer
,
2901 NULL
, &tracing_iter_fops
);
2903 pr_warning("Could not create debugfs 'iter_ctrl' entry\n");
2905 entry
= debugfs_create_file("tracing_cpumask", 0644, d_tracer
,
2906 NULL
, &tracing_cpumask_fops
);
2908 pr_warning("Could not create debugfs 'tracing_cpumask' entry\n");
2910 entry
= debugfs_create_file("latency_trace", 0444, d_tracer
,
2911 &global_trace
, &tracing_lt_fops
);
2913 pr_warning("Could not create debugfs 'latency_trace' entry\n");
2915 entry
= debugfs_create_file("trace", 0444, d_tracer
,
2916 &global_trace
, &tracing_fops
);
2918 pr_warning("Could not create debugfs 'trace' entry\n");
2920 entry
= debugfs_create_file("available_tracers", 0444, d_tracer
,
2921 &global_trace
, &show_traces_fops
);
2923 pr_warning("Could not create debugfs 'available_tracers' entry\n");
2925 entry
= debugfs_create_file("current_tracer", 0444, d_tracer
,
2926 &global_trace
, &set_tracer_fops
);
2928 pr_warning("Could not create debugfs 'current_tracer' entry\n");
2930 entry
= debugfs_create_file("tracing_max_latency", 0644, d_tracer
,
2931 &tracing_max_latency
,
2932 &tracing_max_lat_fops
);
2934 pr_warning("Could not create debugfs "
2935 "'tracing_max_latency' entry\n");
2937 entry
= debugfs_create_file("tracing_thresh", 0644, d_tracer
,
2938 &tracing_thresh
, &tracing_max_lat_fops
);
2940 pr_warning("Could not create debugfs "
2941 "'tracing_thresh' entry\n");
2942 entry
= debugfs_create_file("README", 0644, d_tracer
,
2943 NULL
, &tracing_readme_fops
);
2945 pr_warning("Could not create debugfs 'README' entry\n");
2947 entry
= debugfs_create_file("trace_pipe", 0644, d_tracer
,
2948 NULL
, &tracing_pipe_fops
);
2950 pr_warning("Could not create debugfs "
2951 "'trace_pipe' entry\n");
2953 entry
= debugfs_create_file("trace_entries", 0644, d_tracer
,
2954 &global_trace
, &tracing_entries_fops
);
2956 pr_warning("Could not create debugfs "
2957 "'trace_entries' entry\n");
2959 entry
= debugfs_create_file("trace_marker", 0220, d_tracer
,
2960 NULL
, &tracing_mark_fops
);
2962 pr_warning("Could not create debugfs "
2963 "'trace_marker' entry\n");
2965 #ifdef CONFIG_DYNAMIC_FTRACE
2966 entry
= debugfs_create_file("dyn_ftrace_total_info", 0444, d_tracer
,
2967 &ftrace_update_tot_cnt
,
2968 &tracing_read_long_fops
);
2970 pr_warning("Could not create debugfs "
2971 "'dyn_ftrace_total_info' entry\n");
2973 #ifdef CONFIG_SYSPROF_TRACER
2974 init_tracer_sysprof_debugfs(d_tracer
);
2979 int trace_vprintk(unsigned long ip
, const char *fmt
, va_list args
)
2981 static DEFINE_SPINLOCK(trace_buf_lock
);
2982 static char trace_buf
[TRACE_BUF_SIZE
];
2984 struct ring_buffer_event
*event
;
2985 struct trace_array
*tr
= &global_trace
;
2986 struct trace_array_cpu
*data
;
2987 struct print_entry
*entry
;
2988 unsigned long flags
, irq_flags
;
2989 int cpu
, len
= 0, size
, pc
;
2991 if (!tr
->ctrl
|| tracing_disabled
)
2994 pc
= preempt_count();
2995 preempt_disable_notrace();
2996 cpu
= raw_smp_processor_id();
2997 data
= tr
->data
[cpu
];
2999 if (unlikely(atomic_read(&data
->disabled
)))
3002 spin_lock_irqsave(&trace_buf_lock
, flags
);
3003 len
= vsnprintf(trace_buf
, TRACE_BUF_SIZE
, fmt
, args
);
3005 len
= min(len
, TRACE_BUF_SIZE
-1);
3008 size
= sizeof(*entry
) + len
+ 1;
3009 event
= ring_buffer_lock_reserve(tr
->buffer
, size
, &irq_flags
);
3012 entry
= ring_buffer_event_data(event
);
3013 tracing_generic_entry_update(&entry
->ent
, flags
, pc
);
3014 entry
->ent
.type
= TRACE_PRINT
;
3017 memcpy(&entry
->buf
, trace_buf
, len
);
3018 entry
->buf
[len
] = 0;
3019 ring_buffer_unlock_commit(tr
->buffer
, event
, irq_flags
);
3022 spin_unlock_irqrestore(&trace_buf_lock
, flags
);
3025 preempt_enable_notrace();
3029 EXPORT_SYMBOL_GPL(trace_vprintk
);
3031 int __ftrace_printk(unsigned long ip
, const char *fmt
, ...)
3036 if (!(trace_flags
& TRACE_ITER_PRINTK
))
3040 ret
= trace_vprintk(ip
, fmt
, ap
);
3044 EXPORT_SYMBOL_GPL(__ftrace_printk
);
3046 static int trace_panic_handler(struct notifier_block
*this,
3047 unsigned long event
, void *unused
)
3053 static struct notifier_block trace_panic_notifier
= {
3054 .notifier_call
= trace_panic_handler
,
3056 .priority
= 150 /* priority: INT_MAX >= x >= 0 */
3059 static int trace_die_handler(struct notifier_block
*self
,
3073 static struct notifier_block trace_die_notifier
= {
3074 .notifier_call
= trace_die_handler
,
3079 * printk is set to max of 1024, we really don't need it that big.
3080 * Nothing should be printing 1000 characters anyway.
3082 #define TRACE_MAX_PRINT 1000
3085 * Define here KERN_TRACE so that we have one place to modify
3086 * it if we decide to change what log level the ftrace dump
3089 #define KERN_TRACE KERN_INFO
3092 trace_printk_seq(struct trace_seq
*s
)
3094 /* Probably should print a warning here. */
3098 /* should be zero ended, but we are paranoid. */
3099 s
->buffer
[s
->len
] = 0;
3101 printk(KERN_TRACE
"%s", s
->buffer
);
3107 void ftrace_dump(void)
3109 static DEFINE_SPINLOCK(ftrace_dump_lock
);
3110 /* use static because iter can be a bit big for the stack */
3111 static struct trace_iterator iter
;
3112 static cpumask_t mask
;
3113 static int dump_ran
;
3114 unsigned long flags
;
3118 spin_lock_irqsave(&ftrace_dump_lock
, flags
);
3124 /* No turning back! */
3127 for_each_tracing_cpu(cpu
) {
3128 atomic_inc(&global_trace
.data
[cpu
]->disabled
);
3131 printk(KERN_TRACE
"Dumping ftrace buffer:\n");
3133 iter
.tr
= &global_trace
;
3134 iter
.trace
= current_trace
;
3137 * We need to stop all tracing on all CPUS to read the
3138 * the next buffer. This is a bit expensive, but is
3139 * not done often. We fill all what we can read,
3140 * and then release the locks again.
3145 while (!trace_empty(&iter
)) {
3148 printk(KERN_TRACE
"---------------------------------\n");
3152 /* reset all but tr, trace, and overruns */
3153 memset(&iter
.seq
, 0,
3154 sizeof(struct trace_iterator
) -
3155 offsetof(struct trace_iterator
, seq
));
3156 iter
.iter_flags
|= TRACE_FILE_LAT_FMT
;
3159 if (find_next_entry_inc(&iter
) != NULL
) {
3160 print_trace_line(&iter
);
3161 trace_consume(&iter
);
3164 trace_printk_seq(&iter
.seq
);
3168 printk(KERN_TRACE
" (ftrace buffer empty)\n");
3170 printk(KERN_TRACE
"---------------------------------\n");
3173 spin_unlock_irqrestore(&ftrace_dump_lock
, flags
);
3176 __init
static int tracer_alloc_buffers(void)
3178 struct trace_array_cpu
*data
;
3181 /* TODO: make the number of buffers hot pluggable with CPUS */
3182 tracing_buffer_mask
= cpu_possible_map
;
3184 global_trace
.buffer
= ring_buffer_alloc(trace_buf_size
,
3185 TRACE_BUFFER_FLAGS
);
3186 if (!global_trace
.buffer
) {
3187 printk(KERN_ERR
"tracer: failed to allocate ring buffer!\n");
3191 global_trace
.entries
= ring_buffer_size(global_trace
.buffer
);
3193 #ifdef CONFIG_TRACER_MAX_TRACE
3194 max_tr
.buffer
= ring_buffer_alloc(trace_buf_size
,
3195 TRACE_BUFFER_FLAGS
);
3196 if (!max_tr
.buffer
) {
3197 printk(KERN_ERR
"tracer: failed to allocate max ring buffer!\n");
3199 ring_buffer_free(global_trace
.buffer
);
3202 max_tr
.entries
= ring_buffer_size(max_tr
.buffer
);
3203 WARN_ON(max_tr
.entries
!= global_trace
.entries
);
3206 /* Allocate the first page for all buffers */
3207 for_each_tracing_cpu(i
) {
3208 data
= global_trace
.data
[i
] = &per_cpu(global_trace_cpu
, i
);
3209 max_tr
.data
[i
] = &per_cpu(max_data
, i
);
3212 trace_init_cmdlines();
3214 register_tracer(&nop_trace
);
3215 #ifdef CONFIG_BOOT_TRACER
3216 register_tracer(&boot_tracer
);
3217 current_trace
= &boot_tracer
;
3218 current_trace
->init(&global_trace
);
3220 current_trace
= &nop_trace
;
3223 /* All seems OK, enable tracing */
3224 global_trace
.ctrl
= tracer_enabled
;
3225 tracing_disabled
= 0;
3227 atomic_notifier_chain_register(&panic_notifier_list
,
3228 &trace_panic_notifier
);
3230 register_die_notifier(&trace_die_notifier
);
3234 early_initcall(tracer_alloc_buffers
);
3235 fs_initcall(tracer_init_debugfs
);