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/debugfs.h>
18 #include <linux/pagemap.h>
19 #include <linux/hardirq.h>
20 #include <linux/linkage.h>
21 #include <linux/uaccess.h>
22 #include <linux/ftrace.h>
23 #include <linux/module.h>
24 #include <linux/percpu.h>
25 #include <linux/ctype.h>
26 #include <linux/init.h>
27 #include <linux/poll.h>
28 #include <linux/gfp.h>
30 #include <linux/writeback.h>
32 #include <linux/stacktrace.h>
36 unsigned long __read_mostly tracing_max_latency = (cycle_t)ULONG_MAX;
37 unsigned long __read_mostly tracing_thresh;
39 static unsigned long __read_mostly tracing_nr_buffers;
40 static cpumask_t __read_mostly tracing_buffer_mask;
42 #define for_each_tracing_cpu(cpu) \
43 for_each_cpu_mask(cpu, tracing_buffer_mask)
45 /* dummy trace to disable tracing */
46 static struct tracer no_tracer __read_mostly = {
50 static int trace_alloc_page(void);
51 static int trace_free_page(void);
53 static int tracing_disabled = 1;
55 static unsigned long tracing_pages_allocated;
58 ns2usecs(cycle_t nsec)
65 cycle_t ftrace_now(int cpu)
67 return cpu_clock(cpu);
71 * The global_trace is the descriptor that holds the tracing
72 * buffers for the live tracing. For each CPU, it contains
73 * a link list of pages that will store trace entries. The
74 * page descriptor of the pages in the memory is used to hold
75 * the link list by linking the lru item in the page descriptor
76 * to each of the pages in the buffer per CPU.
78 * For each active CPU there is a data field that holds the
79 * pages for the buffer for that CPU. Each CPU has the same number
80 * of pages allocated for its buffer.
82 static struct trace_array global_trace;
84 static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
87 * The max_tr is used to snapshot the global_trace when a maximum
88 * latency is reached. Some tracers will use this to store a maximum
89 * trace while it continues examining live traces.
91 * The buffers for the max_tr are set up the same as the global_trace.
92 * When a snapshot is taken, the link list of the max_tr is swapped
93 * with the link list of the global_trace and the buffers are reset for
94 * the global_trace so the tracing can continue.
96 static struct trace_array max_tr;
98 static DEFINE_PER_CPU(struct trace_array_cpu, max_data);
100 /* tracer_enabled is used to toggle activation of a tracer */
101 static int tracer_enabled = 1;
104 * trace_nr_entries is the number of entries that is allocated
105 * for a buffer. Note, the number of entries is always rounded
106 * to ENTRIES_PER_PAGE.
108 static unsigned long trace_nr_entries = 65536UL;
110 /* trace_types holds a link list of available tracers. */
111 static struct tracer *trace_types __read_mostly;
113 /* current_trace points to the tracer that is currently active */
114 static struct tracer *current_trace __read_mostly;
117 * max_tracer_type_len is used to simplify the allocating of
118 * buffers to read userspace tracer names. We keep track of
119 * the longest tracer name registered.
121 static int max_tracer_type_len;
124 * trace_types_lock is used to protect the trace_types list.
125 * This lock is also used to keep user access serialized.
126 * Accesses from userspace will grab this lock while userspace
127 * activities happen inside the kernel.
129 static DEFINE_MUTEX(trace_types_lock);
131 /* trace_wait is a waitqueue for tasks blocked on trace_poll */
132 static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
134 /* trace_flags holds iter_ctrl options */
135 unsigned long trace_flags = TRACE_ITER_PRINT_PARENT;
138 * trace_wake_up - wake up tasks waiting for trace input
140 * Simply wakes up any task that is blocked on the trace_wait
141 * queue. These is used with trace_poll for tasks polling the trace.
143 void trace_wake_up(void)
146 * The runqueue_is_locked() can fail, but this is the best we
149 if (!(trace_flags & TRACE_ITER_BLOCK) && !runqueue_is_locked())
150 wake_up(&trace_wait);
153 #define ENTRIES_PER_PAGE (PAGE_SIZE / sizeof(struct trace_entry))
155 static int __init set_nr_entries(char *str)
157 unsigned long nr_entries;
162 ret = strict_strtoul(str, 0, &nr_entries);
163 /* nr_entries can not be zero */
164 if (ret < 0 || nr_entries == 0)
166 trace_nr_entries = nr_entries;
169 __setup("trace_entries=", set_nr_entries);
171 unsigned long nsecs_to_usecs(unsigned long nsecs)
177 * trace_flag_type is an enumeration that holds different
178 * states when a trace occurs. These are:
179 * IRQS_OFF - interrupts were disabled
180 * NEED_RESCED - reschedule is requested
181 * HARDIRQ - inside an interrupt handler
182 * SOFTIRQ - inside a softirq handler
184 enum trace_flag_type {
185 TRACE_FLAG_IRQS_OFF = 0x01,
186 TRACE_FLAG_NEED_RESCHED = 0x02,
187 TRACE_FLAG_HARDIRQ = 0x04,
188 TRACE_FLAG_SOFTIRQ = 0x08,
192 * TRACE_ITER_SYM_MASK masks the options in trace_flags that
193 * control the output of kernel symbols.
195 #define TRACE_ITER_SYM_MASK \
196 (TRACE_ITER_PRINT_PARENT|TRACE_ITER_SYM_OFFSET|TRACE_ITER_SYM_ADDR)
198 /* These must match the bit postions in trace_iterator_flags */
199 static const char *trace_options[] = {
214 * ftrace_max_lock is used to protect the swapping of buffers
215 * when taking a max snapshot. The buffers themselves are
216 * protected by per_cpu spinlocks. But the action of the swap
217 * needs its own lock.
219 * This is defined as a raw_spinlock_t in order to help
220 * with performance when lockdep debugging is enabled.
222 static raw_spinlock_t ftrace_max_lock =
223 (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
226 * Copy the new maximum trace into the separate maximum-trace
227 * structure. (this way the maximum trace is permanently saved,
228 * for later retrieval via /debugfs/tracing/latency_trace)
231 __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
233 struct trace_array_cpu *data = tr->data[cpu];
236 max_tr.time_start = data->preempt_timestamp;
238 data = max_tr.data[cpu];
239 data->saved_latency = tracing_max_latency;
241 memcpy(data->comm, tsk->comm, TASK_COMM_LEN);
242 data->pid = tsk->pid;
243 data->uid = tsk->uid;
244 data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
245 data->policy = tsk->policy;
246 data->rt_priority = tsk->rt_priority;
248 /* record this tasks comm */
249 tracing_record_cmdline(current);
252 #define CHECK_COND(cond) \
253 if (unlikely(cond)) { \
254 tracing_disabled = 1; \
260 * check_pages - integrity check of trace buffers
262 * As a safty measure we check to make sure the data pages have not
265 int check_pages(struct trace_array_cpu *data)
267 struct page *page, *tmp;
269 CHECK_COND(data->trace_pages.next->prev != &data->trace_pages);
270 CHECK_COND(data->trace_pages.prev->next != &data->trace_pages);
272 list_for_each_entry_safe(page, tmp, &data->trace_pages, lru) {
273 CHECK_COND(page->lru.next->prev != &page->lru);
274 CHECK_COND(page->lru.prev->next != &page->lru);
281 * head_page - page address of the first page in per_cpu buffer.
283 * head_page returns the page address of the first page in
284 * a per_cpu buffer. This also preforms various consistency
285 * checks to make sure the buffer has not been corrupted.
287 void *head_page(struct trace_array_cpu *data)
291 if (list_empty(&data->trace_pages))
294 page = list_entry(data->trace_pages.next, struct page, lru);
295 BUG_ON(&page->lru == &data->trace_pages);
297 return page_address(page);
301 * trace_seq_printf - sequence printing of trace information
302 * @s: trace sequence descriptor
303 * @fmt: printf format string
305 * The tracer may use either sequence operations or its own
306 * copy to user routines. To simplify formating of a trace
307 * trace_seq_printf is used to store strings into a special
308 * buffer (@s). Then the output may be either used by
309 * the sequencer or pulled into another buffer.
312 trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
314 int len = (PAGE_SIZE - 1) - s->len;
322 ret = vsnprintf(s->buffer + s->len, len, fmt, ap);
325 /* If we can't write it all, don't bother writing anything */
335 * trace_seq_puts - trace sequence printing of simple string
336 * @s: trace sequence descriptor
337 * @str: simple string to record
339 * The tracer may use either the sequence operations or its own
340 * copy to user routines. This function records a simple string
341 * into a special buffer (@s) for later retrieval by a sequencer
342 * or other mechanism.
345 trace_seq_puts(struct trace_seq *s, const char *str)
347 int len = strlen(str);
349 if (len > ((PAGE_SIZE - 1) - s->len))
352 memcpy(s->buffer + s->len, str, len);
359 trace_seq_putc(struct trace_seq *s, unsigned char c)
361 if (s->len >= (PAGE_SIZE - 1))
364 s->buffer[s->len++] = c;
370 trace_seq_putmem(struct trace_seq *s, void *mem, size_t len)
372 if (len > ((PAGE_SIZE - 1) - s->len))
375 memcpy(s->buffer + s->len, mem, len);
382 static const char hex2asc[] = "0123456789abcdef";
385 trace_seq_putmem_hex(struct trace_seq *s, void *mem, size_t len)
387 unsigned char hex[HEX_CHARS];
388 unsigned char *data = mem;
392 BUG_ON(len >= HEX_CHARS);
395 for (i = 0, j = 0; i < len; i++) {
397 for (i = len-1, j = 0; i >= 0; i--) {
401 hex[j++] = hex2asc[byte & 0x0f];
402 hex[j++] = hex2asc[byte >> 4];
406 return trace_seq_putmem(s, hex, j);
410 trace_seq_reset(struct trace_seq *s)
416 ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
421 if (s->len <= s->readpos)
424 len = s->len - s->readpos;
427 ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
436 trace_print_seq(struct seq_file *m, struct trace_seq *s)
438 int len = s->len >= PAGE_SIZE ? PAGE_SIZE - 1 : s->len;
441 seq_puts(m, s->buffer);
447 * flip the trace buffers between two trace descriptors.
448 * This usually is the buffers between the global_trace and
449 * the max_tr to record a snapshot of a current trace.
451 * The ftrace_max_lock must be held.
454 flip_trace(struct trace_array_cpu *tr1, struct trace_array_cpu *tr2)
456 struct list_head flip_pages;
458 INIT_LIST_HEAD(&flip_pages);
460 memcpy(&tr1->trace_head_idx, &tr2->trace_head_idx,
461 sizeof(struct trace_array_cpu) -
462 offsetof(struct trace_array_cpu, trace_head_idx));
466 list_splice_init(&tr1->trace_pages, &flip_pages);
467 list_splice_init(&tr2->trace_pages, &tr1->trace_pages);
468 list_splice_init(&flip_pages, &tr2->trace_pages);
469 BUG_ON(!list_empty(&flip_pages));
475 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
477 * @tsk: the task with the latency
478 * @cpu: The cpu that initiated the trace.
480 * Flip the buffers between the @tr and the max_tr and record information
481 * about which task was the cause of this latency.
484 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
486 struct trace_array_cpu *data;
489 WARN_ON_ONCE(!irqs_disabled());
490 __raw_spin_lock(&ftrace_max_lock);
491 /* clear out all the previous traces */
492 for_each_tracing_cpu(i) {
494 flip_trace(max_tr.data[i], data);
498 __update_max_tr(tr, tsk, cpu);
499 __raw_spin_unlock(&ftrace_max_lock);
503 * update_max_tr_single - only copy one trace over, and reset the rest
505 * @tsk - task with the latency
506 * @cpu - the cpu of the buffer to copy.
508 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
511 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
513 struct trace_array_cpu *data = tr->data[cpu];
516 WARN_ON_ONCE(!irqs_disabled());
517 __raw_spin_lock(&ftrace_max_lock);
518 for_each_tracing_cpu(i)
519 tracing_reset(max_tr.data[i]);
521 flip_trace(max_tr.data[cpu], data);
524 __update_max_tr(tr, tsk, cpu);
525 __raw_spin_unlock(&ftrace_max_lock);
529 * register_tracer - register a tracer with the ftrace system.
530 * @type - the plugin for the tracer
532 * Register a new plugin tracer.
534 int register_tracer(struct tracer *type)
541 pr_info("Tracer must have a name\n");
545 mutex_lock(&trace_types_lock);
546 for (t = trace_types; t; t = t->next) {
547 if (strcmp(type->name, t->name) == 0) {
549 pr_info("Trace %s already registered\n",
556 #ifdef CONFIG_FTRACE_STARTUP_TEST
557 if (type->selftest) {
558 struct tracer *saved_tracer = current_trace;
559 struct trace_array_cpu *data;
560 struct trace_array *tr = &global_trace;
561 int saved_ctrl = tr->ctrl;
564 * Run a selftest on this tracer.
565 * Here we reset the trace buffer, and set the current
566 * tracer to be this tracer. The tracer can then run some
567 * internal tracing to verify that everything is in order.
568 * If we fail, we do not register this tracer.
570 for_each_tracing_cpu(i) {
572 if (!head_page(data))
576 current_trace = type;
578 /* the test is responsible for initializing and enabling */
579 pr_info("Testing tracer %s: ", type->name);
580 ret = type->selftest(type, tr);
581 /* the test is responsible for resetting too */
582 current_trace = saved_tracer;
583 tr->ctrl = saved_ctrl;
585 printk(KERN_CONT "FAILED!\n");
588 /* Only reset on passing, to avoid touching corrupted buffers */
589 for_each_tracing_cpu(i) {
591 if (!head_page(data))
595 printk(KERN_CONT "PASSED\n");
599 type->next = trace_types;
601 len = strlen(type->name);
602 if (len > max_tracer_type_len)
603 max_tracer_type_len = len;
606 mutex_unlock(&trace_types_lock);
611 void unregister_tracer(struct tracer *type)
616 mutex_lock(&trace_types_lock);
617 for (t = &trace_types; *t; t = &(*t)->next) {
621 pr_info("Trace %s not registered\n", type->name);
626 if (strlen(type->name) != max_tracer_type_len)
629 max_tracer_type_len = 0;
630 for (t = &trace_types; *t; t = &(*t)->next) {
631 len = strlen((*t)->name);
632 if (len > max_tracer_type_len)
633 max_tracer_type_len = len;
636 mutex_unlock(&trace_types_lock);
639 void tracing_reset(struct trace_array_cpu *data)
643 data->trace_head = data->trace_tail = head_page(data);
644 data->trace_head_idx = 0;
645 data->trace_tail_idx = 0;
648 #define SAVED_CMDLINES 128
649 static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
650 static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
651 static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
652 static int cmdline_idx;
653 static DEFINE_SPINLOCK(trace_cmdline_lock);
655 /* trace in all context switches */
656 atomic_t trace_record_cmdline_enabled __read_mostly;
658 /* temporary disable recording */
659 atomic_t trace_record_cmdline_disabled __read_mostly;
661 static void trace_init_cmdlines(void)
663 memset(&map_pid_to_cmdline, -1, sizeof(map_pid_to_cmdline));
664 memset(&map_cmdline_to_pid, -1, sizeof(map_cmdline_to_pid));
668 void trace_stop_cmdline_recording(void);
670 static void trace_save_cmdline(struct task_struct *tsk)
675 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
679 * It's not the end of the world if we don't get
680 * the lock, but we also don't want to spin
681 * nor do we want to disable interrupts,
682 * so if we miss here, then better luck next time.
684 if (!spin_trylock(&trace_cmdline_lock))
687 idx = map_pid_to_cmdline[tsk->pid];
688 if (idx >= SAVED_CMDLINES) {
689 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
691 map = map_cmdline_to_pid[idx];
692 if (map <= PID_MAX_DEFAULT)
693 map_pid_to_cmdline[map] = (unsigned)-1;
695 map_pid_to_cmdline[tsk->pid] = idx;
700 memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
702 spin_unlock(&trace_cmdline_lock);
705 static char *trace_find_cmdline(int pid)
707 char *cmdline = "<...>";
713 if (pid > PID_MAX_DEFAULT)
716 map = map_pid_to_cmdline[pid];
717 if (map >= SAVED_CMDLINES)
720 cmdline = saved_cmdlines[map];
726 void tracing_record_cmdline(struct task_struct *tsk)
728 if (atomic_read(&trace_record_cmdline_disabled))
731 trace_save_cmdline(tsk);
734 static inline struct list_head *
735 trace_next_list(struct trace_array_cpu *data, struct list_head *next)
738 * Roundrobin - but skip the head (which is not a real page):
741 if (unlikely(next == &data->trace_pages))
743 BUG_ON(next == &data->trace_pages);
749 trace_next_page(struct trace_array_cpu *data, void *addr)
751 struct list_head *next;
754 page = virt_to_page(addr);
756 next = trace_next_list(data, &page->lru);
757 page = list_entry(next, struct page, lru);
759 return page_address(page);
762 static inline struct trace_entry *
763 tracing_get_trace_entry(struct trace_array *tr, struct trace_array_cpu *data)
765 unsigned long idx, idx_next;
766 struct trace_entry *entry;
769 idx = data->trace_head_idx;
772 BUG_ON(idx * TRACE_ENTRY_SIZE >= PAGE_SIZE);
774 entry = data->trace_head + idx * TRACE_ENTRY_SIZE;
776 if (unlikely(idx_next >= ENTRIES_PER_PAGE)) {
777 data->trace_head = trace_next_page(data, data->trace_head);
781 if (data->trace_head == data->trace_tail &&
782 idx_next == data->trace_tail_idx) {
785 data->trace_tail_idx++;
786 if (data->trace_tail_idx >= ENTRIES_PER_PAGE) {
788 trace_next_page(data, data->trace_tail);
789 data->trace_tail_idx = 0;
793 data->trace_head_idx = idx_next;
799 tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags)
801 struct task_struct *tsk = current;
804 pc = preempt_count();
806 entry->preempt_count = pc & 0xff;
807 entry->pid = (tsk) ? tsk->pid : 0;
808 entry->t = ftrace_now(raw_smp_processor_id());
809 entry->flags = (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
810 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
811 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
812 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
816 trace_function(struct trace_array *tr, struct trace_array_cpu *data,
817 unsigned long ip, unsigned long parent_ip, unsigned long flags)
819 struct trace_entry *entry;
820 unsigned long irq_flags;
822 raw_local_irq_save(irq_flags);
823 __raw_spin_lock(&data->lock);
824 entry = tracing_get_trace_entry(tr, data);
825 tracing_generic_entry_update(entry, flags);
826 entry->type = TRACE_FN;
828 entry->fn.parent_ip = parent_ip;
829 __raw_spin_unlock(&data->lock);
830 raw_local_irq_restore(irq_flags);
834 ftrace(struct trace_array *tr, struct trace_array_cpu *data,
835 unsigned long ip, unsigned long parent_ip, unsigned long flags)
837 if (likely(!atomic_read(&data->disabled)))
838 trace_function(tr, data, ip, parent_ip, flags);
841 void __trace_stack(struct trace_array *tr,
842 struct trace_array_cpu *data,
846 struct trace_entry *entry;
847 struct stack_trace trace;
849 if (!(trace_flags & TRACE_ITER_STACKTRACE))
852 entry = tracing_get_trace_entry(tr, data);
853 tracing_generic_entry_update(entry, flags);
854 entry->type = TRACE_STACK;
856 memset(&entry->stack, 0, sizeof(entry->stack));
858 trace.nr_entries = 0;
859 trace.max_entries = FTRACE_STACK_ENTRIES;
861 trace.entries = entry->stack.caller;
863 save_stack_trace(&trace);
867 __trace_special(void *__tr, void *__data,
868 unsigned long arg1, unsigned long arg2, unsigned long arg3)
870 struct trace_array_cpu *data = __data;
871 struct trace_array *tr = __tr;
872 struct trace_entry *entry;
873 unsigned long irq_flags;
875 raw_local_irq_save(irq_flags);
876 __raw_spin_lock(&data->lock);
877 entry = tracing_get_trace_entry(tr, data);
878 tracing_generic_entry_update(entry, 0);
879 entry->type = TRACE_SPECIAL;
880 entry->special.arg1 = arg1;
881 entry->special.arg2 = arg2;
882 entry->special.arg3 = arg3;
883 __trace_stack(tr, data, irq_flags, 4);
884 __raw_spin_unlock(&data->lock);
885 raw_local_irq_restore(irq_flags);
891 tracing_sched_switch_trace(struct trace_array *tr,
892 struct trace_array_cpu *data,
893 struct task_struct *prev,
894 struct task_struct *next,
897 struct trace_entry *entry;
898 unsigned long irq_flags;
900 raw_local_irq_save(irq_flags);
901 __raw_spin_lock(&data->lock);
902 entry = tracing_get_trace_entry(tr, data);
903 tracing_generic_entry_update(entry, flags);
904 entry->type = TRACE_CTX;
905 entry->ctx.prev_pid = prev->pid;
906 entry->ctx.prev_prio = prev->prio;
907 entry->ctx.prev_state = prev->state;
908 entry->ctx.next_pid = next->pid;
909 entry->ctx.next_prio = next->prio;
910 entry->ctx.next_state = next->state;
911 __trace_stack(tr, data, flags, 5);
912 __raw_spin_unlock(&data->lock);
913 raw_local_irq_restore(irq_flags);
917 tracing_sched_wakeup_trace(struct trace_array *tr,
918 struct trace_array_cpu *data,
919 struct task_struct *wakee,
920 struct task_struct *curr,
923 struct trace_entry *entry;
924 unsigned long irq_flags;
926 raw_local_irq_save(irq_flags);
927 __raw_spin_lock(&data->lock);
928 entry = tracing_get_trace_entry(tr, data);
929 tracing_generic_entry_update(entry, flags);
930 entry->type = TRACE_WAKE;
931 entry->ctx.prev_pid = curr->pid;
932 entry->ctx.prev_prio = curr->prio;
933 entry->ctx.prev_state = curr->state;
934 entry->ctx.next_pid = wakee->pid;
935 entry->ctx.next_prio = wakee->prio;
936 entry->ctx.next_state = wakee->state;
937 __trace_stack(tr, data, flags, 6);
938 __raw_spin_unlock(&data->lock);
939 raw_local_irq_restore(irq_flags);
945 ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3)
947 struct trace_array *tr = &global_trace;
948 struct trace_array_cpu *data;
953 if (tracing_disabled || current_trace == &no_tracer || !tr->ctrl)
956 local_irq_save(flags);
957 cpu = raw_smp_processor_id();
958 data = tr->data[cpu];
959 disabled = atomic_inc_return(&data->disabled);
961 if (likely(disabled == 1))
962 __trace_special(tr, data, arg1, arg2, arg3);
964 atomic_dec(&data->disabled);
965 local_irq_restore(flags);
970 function_trace_call(unsigned long ip, unsigned long parent_ip)
972 struct trace_array *tr = &global_trace;
973 struct trace_array_cpu *data;
978 if (unlikely(!tracer_enabled))
981 local_irq_save(flags);
982 cpu = raw_smp_processor_id();
983 data = tr->data[cpu];
984 disabled = atomic_inc_return(&data->disabled);
986 if (likely(disabled == 1))
987 trace_function(tr, data, ip, parent_ip, flags);
989 atomic_dec(&data->disabled);
990 local_irq_restore(flags);
993 static struct ftrace_ops trace_ops __read_mostly =
995 .func = function_trace_call,
998 void tracing_start_function_trace(void)
1000 register_ftrace_function(&trace_ops);
1003 void tracing_stop_function_trace(void)
1005 unregister_ftrace_function(&trace_ops);
1009 enum trace_file_type {
1010 TRACE_FILE_LAT_FMT = 1,
1013 static struct trace_entry *
1014 trace_entry_idx(struct trace_array *tr, struct trace_array_cpu *data,
1015 struct trace_iterator *iter, int cpu)
1018 struct trace_entry *array;
1020 if (iter->next_idx[cpu] >= tr->entries ||
1021 iter->next_idx[cpu] >= data->trace_idx ||
1022 (data->trace_head == data->trace_tail &&
1023 data->trace_head_idx == data->trace_tail_idx))
1026 if (!iter->next_page[cpu]) {
1027 /* Initialize the iterator for this cpu trace buffer */
1028 WARN_ON(!data->trace_tail);
1029 page = virt_to_page(data->trace_tail);
1030 iter->next_page[cpu] = &page->lru;
1031 iter->next_page_idx[cpu] = data->trace_tail_idx;
1034 page = list_entry(iter->next_page[cpu], struct page, lru);
1035 BUG_ON(&data->trace_pages == &page->lru);
1037 array = page_address(page);
1039 WARN_ON(iter->next_page_idx[cpu] >= ENTRIES_PER_PAGE);
1040 return &array[iter->next_page_idx[cpu]];
1043 static struct trace_entry *
1044 find_next_entry(struct trace_iterator *iter, int *ent_cpu)
1046 struct trace_array *tr = iter->tr;
1047 struct trace_entry *ent, *next = NULL;
1051 for_each_tracing_cpu(cpu) {
1052 if (!head_page(tr->data[cpu]))
1054 ent = trace_entry_idx(tr, tr->data[cpu], iter, cpu);
1056 * Pick the entry with the smallest timestamp:
1058 if (ent && (!next || ent->t < next->t)) {
1065 *ent_cpu = next_cpu;
1070 static void trace_iterator_increment(struct trace_iterator *iter)
1073 iter->next_idx[iter->cpu]++;
1074 iter->next_page_idx[iter->cpu]++;
1076 if (iter->next_page_idx[iter->cpu] >= ENTRIES_PER_PAGE) {
1077 struct trace_array_cpu *data = iter->tr->data[iter->cpu];
1079 iter->next_page_idx[iter->cpu] = 0;
1080 iter->next_page[iter->cpu] =
1081 trace_next_list(data, iter->next_page[iter->cpu]);
1085 static void trace_consume(struct trace_iterator *iter)
1087 struct trace_array_cpu *data = iter->tr->data[iter->cpu];
1089 data->trace_tail_idx++;
1090 if (data->trace_tail_idx >= ENTRIES_PER_PAGE) {
1091 data->trace_tail = trace_next_page(data, data->trace_tail);
1092 data->trace_tail_idx = 0;
1095 /* Check if we empty it, then reset the index */
1096 if (data->trace_head == data->trace_tail &&
1097 data->trace_head_idx == data->trace_tail_idx)
1098 data->trace_idx = 0;
1101 static void *find_next_entry_inc(struct trace_iterator *iter)
1103 struct trace_entry *next;
1106 next = find_next_entry(iter, &next_cpu);
1108 iter->prev_ent = iter->ent;
1109 iter->prev_cpu = iter->cpu;
1112 iter->cpu = next_cpu;
1115 trace_iterator_increment(iter);
1117 return next ? iter : NULL;
1120 static void *s_next(struct seq_file *m, void *v, loff_t *pos)
1122 struct trace_iterator *iter = m->private;
1123 void *last_ent = iter->ent;
1129 /* can't go backwards */
1134 ent = find_next_entry_inc(iter);
1138 while (ent && iter->idx < i)
1139 ent = find_next_entry_inc(iter);
1143 if (last_ent && !ent)
1144 seq_puts(m, "\n\nvim:ft=help\n");
1149 static void *s_start(struct seq_file *m, loff_t *pos)
1151 struct trace_iterator *iter = m->private;
1156 mutex_lock(&trace_types_lock);
1158 if (!current_trace || current_trace != iter->trace) {
1159 mutex_unlock(&trace_types_lock);
1163 atomic_inc(&trace_record_cmdline_disabled);
1165 /* let the tracer grab locks here if needed */
1166 if (current_trace->start)
1167 current_trace->start(iter);
1169 if (*pos != iter->pos) {
1173 iter->prev_ent = NULL;
1174 iter->prev_cpu = -1;
1176 for_each_tracing_cpu(i) {
1177 iter->next_idx[i] = 0;
1178 iter->next_page[i] = NULL;
1181 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1186 p = s_next(m, p, &l);
1192 static void s_stop(struct seq_file *m, void *p)
1194 struct trace_iterator *iter = m->private;
1196 atomic_dec(&trace_record_cmdline_disabled);
1198 /* let the tracer release locks here if needed */
1199 if (current_trace && current_trace == iter->trace && iter->trace->stop)
1200 iter->trace->stop(iter);
1202 mutex_unlock(&trace_types_lock);
1206 seq_print_sym_short(struct trace_seq *s, const char *fmt, unsigned long address)
1208 #ifdef CONFIG_KALLSYMS
1209 char str[KSYM_SYMBOL_LEN];
1211 kallsyms_lookup(address, NULL, NULL, NULL, str);
1213 return trace_seq_printf(s, fmt, str);
1219 seq_print_sym_offset(struct trace_seq *s, const char *fmt,
1220 unsigned long address)
1222 #ifdef CONFIG_KALLSYMS
1223 char str[KSYM_SYMBOL_LEN];
1225 sprint_symbol(str, address);
1226 return trace_seq_printf(s, fmt, str);
1231 #ifndef CONFIG_64BIT
1232 # define IP_FMT "%08lx"
1234 # define IP_FMT "%016lx"
1238 seq_print_ip_sym(struct trace_seq *s, unsigned long ip, unsigned long sym_flags)
1243 return trace_seq_printf(s, "0");
1245 if (sym_flags & TRACE_ITER_SYM_OFFSET)
1246 ret = seq_print_sym_offset(s, "%s", ip);
1248 ret = seq_print_sym_short(s, "%s", ip);
1253 if (sym_flags & TRACE_ITER_SYM_ADDR)
1254 ret = trace_seq_printf(s, " <" IP_FMT ">", ip);
1258 static void print_lat_help_header(struct seq_file *m)
1260 seq_puts(m, "# _------=> CPU# \n");
1261 seq_puts(m, "# / _-----=> irqs-off \n");
1262 seq_puts(m, "# | / _----=> need-resched \n");
1263 seq_puts(m, "# || / _---=> hardirq/softirq \n");
1264 seq_puts(m, "# ||| / _--=> preempt-depth \n");
1265 seq_puts(m, "# |||| / \n");
1266 seq_puts(m, "# ||||| delay \n");
1267 seq_puts(m, "# cmd pid ||||| time | caller \n");
1268 seq_puts(m, "# \\ / ||||| \\ | / \n");
1271 static void print_func_help_header(struct seq_file *m)
1273 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1274 seq_puts(m, "# | | | | |\n");
1279 print_trace_header(struct seq_file *m, struct trace_iterator *iter)
1281 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1282 struct trace_array *tr = iter->tr;
1283 struct trace_array_cpu *data = tr->data[tr->cpu];
1284 struct tracer *type = current_trace;
1285 unsigned long total = 0;
1286 unsigned long entries = 0;
1288 const char *name = "preemption";
1293 for_each_tracing_cpu(cpu) {
1294 if (head_page(tr->data[cpu])) {
1295 total += tr->data[cpu]->trace_idx;
1296 if (tr->data[cpu]->trace_idx > tr->entries)
1297 entries += tr->entries;
1299 entries += tr->data[cpu]->trace_idx;
1303 seq_printf(m, "%s latency trace v1.1.5 on %s\n",
1305 seq_puts(m, "-----------------------------------"
1306 "---------------------------------\n");
1307 seq_printf(m, " latency: %lu us, #%lu/%lu, CPU#%d |"
1308 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
1309 nsecs_to_usecs(data->saved_latency),
1313 #if defined(CONFIG_PREEMPT_NONE)
1315 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
1317 #elif defined(CONFIG_PREEMPT_DESKTOP)
1322 /* These are reserved for later use */
1325 seq_printf(m, " #P:%d)\n", num_online_cpus());
1329 seq_puts(m, " -----------------\n");
1330 seq_printf(m, " | task: %.16s-%d "
1331 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1332 data->comm, data->pid, data->uid, data->nice,
1333 data->policy, data->rt_priority);
1334 seq_puts(m, " -----------------\n");
1336 if (data->critical_start) {
1337 seq_puts(m, " => started at: ");
1338 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
1339 trace_print_seq(m, &iter->seq);
1340 seq_puts(m, "\n => ended at: ");
1341 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
1342 trace_print_seq(m, &iter->seq);
1350 lat_print_generic(struct trace_seq *s, struct trace_entry *entry, int cpu)
1352 int hardirq, softirq;
1355 comm = trace_find_cmdline(entry->pid);
1357 trace_seq_printf(s, "%8.8s-%-5d ", comm, entry->pid);
1358 trace_seq_printf(s, "%d", cpu);
1359 trace_seq_printf(s, "%c%c",
1360 (entry->flags & TRACE_FLAG_IRQS_OFF) ? 'd' : '.',
1361 ((entry->flags & TRACE_FLAG_NEED_RESCHED) ? 'N' : '.'));
1363 hardirq = entry->flags & TRACE_FLAG_HARDIRQ;
1364 softirq = entry->flags & TRACE_FLAG_SOFTIRQ;
1365 if (hardirq && softirq) {
1366 trace_seq_putc(s, 'H');
1369 trace_seq_putc(s, 'h');
1372 trace_seq_putc(s, 's');
1374 trace_seq_putc(s, '.');
1378 if (entry->preempt_count)
1379 trace_seq_printf(s, "%x", entry->preempt_count);
1381 trace_seq_puts(s, ".");
1384 unsigned long preempt_mark_thresh = 100;
1387 lat_print_timestamp(struct trace_seq *s, unsigned long long abs_usecs,
1388 unsigned long rel_usecs)
1390 trace_seq_printf(s, " %4lldus", abs_usecs);
1391 if (rel_usecs > preempt_mark_thresh)
1392 trace_seq_puts(s, "!: ");
1393 else if (rel_usecs > 1)
1394 trace_seq_puts(s, "+: ");
1396 trace_seq_puts(s, " : ");
1399 static const char state_to_char[] = TASK_STATE_TO_CHAR_STR;
1402 print_lat_fmt(struct trace_iterator *iter, unsigned int trace_idx, int cpu)
1404 struct trace_seq *s = &iter->seq;
1405 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1406 struct trace_entry *next_entry = find_next_entry(iter, NULL);
1407 unsigned long verbose = (trace_flags & TRACE_ITER_VERBOSE);
1408 struct trace_entry *entry = iter->ent;
1409 unsigned long abs_usecs;
1410 unsigned long rel_usecs;
1418 rel_usecs = ns2usecs(next_entry->t - entry->t);
1419 abs_usecs = ns2usecs(entry->t - iter->tr->time_start);
1422 comm = trace_find_cmdline(entry->pid);
1423 trace_seq_printf(s, "%16s %5d %d %d %08x %08x [%08lx]"
1424 " %ld.%03ldms (+%ld.%03ldms): ",
1426 entry->pid, cpu, entry->flags,
1427 entry->preempt_count, trace_idx,
1430 abs_usecs % 1000, rel_usecs/1000,
1433 lat_print_generic(s, entry, cpu);
1434 lat_print_timestamp(s, abs_usecs, rel_usecs);
1436 switch (entry->type) {
1438 seq_print_ip_sym(s, entry->fn.ip, sym_flags);
1439 trace_seq_puts(s, " (");
1440 seq_print_ip_sym(s, entry->fn.parent_ip, sym_flags);
1441 trace_seq_puts(s, ")\n");
1445 T = entry->ctx.next_state < sizeof(state_to_char) ?
1446 state_to_char[entry->ctx.next_state] : 'X';
1448 state = entry->ctx.prev_state ? __ffs(entry->ctx.prev_state) + 1 : 0;
1449 S = state < sizeof(state_to_char) - 1 ? state_to_char[state] : 'X';
1450 comm = trace_find_cmdline(entry->ctx.next_pid);
1451 trace_seq_printf(s, " %5d:%3d:%c %s %5d:%3d:%c %s\n",
1452 entry->ctx.prev_pid,
1453 entry->ctx.prev_prio,
1454 S, entry->type == TRACE_CTX ? "==>" : " +",
1455 entry->ctx.next_pid,
1456 entry->ctx.next_prio,
1460 trace_seq_printf(s, "# %ld %ld %ld\n",
1461 entry->special.arg1,
1462 entry->special.arg2,
1463 entry->special.arg3);
1466 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1468 trace_seq_puts(s, " <= ");
1469 seq_print_ip_sym(s, entry->stack.caller[i], sym_flags);
1471 trace_seq_puts(s, "\n");
1474 trace_seq_printf(s, "Unknown type %d\n", entry->type);
1479 static int print_trace_fmt(struct trace_iterator *iter)
1481 struct trace_seq *s = &iter->seq;
1482 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1483 struct trace_entry *entry;
1484 unsigned long usec_rem;
1485 unsigned long long t;
1494 comm = trace_find_cmdline(iter->ent->pid);
1496 t = ns2usecs(entry->t);
1497 usec_rem = do_div(t, 1000000ULL);
1498 secs = (unsigned long)t;
1500 ret = trace_seq_printf(s, "%16s-%-5d ", comm, entry->pid);
1503 ret = trace_seq_printf(s, "[%02d] ", iter->cpu);
1506 ret = trace_seq_printf(s, "%5lu.%06lu: ", secs, usec_rem);
1510 switch (entry->type) {
1512 ret = seq_print_ip_sym(s, entry->fn.ip, sym_flags);
1515 if ((sym_flags & TRACE_ITER_PRINT_PARENT) &&
1516 entry->fn.parent_ip) {
1517 ret = trace_seq_printf(s, " <-");
1520 ret = seq_print_ip_sym(s, entry->fn.parent_ip,
1525 ret = trace_seq_printf(s, "\n");
1531 S = entry->ctx.prev_state < sizeof(state_to_char) ?
1532 state_to_char[entry->ctx.prev_state] : 'X';
1533 T = entry->ctx.next_state < sizeof(state_to_char) ?
1534 state_to_char[entry->ctx.next_state] : 'X';
1535 ret = trace_seq_printf(s, " %5d:%3d:%c %s %5d:%3d:%c\n",
1536 entry->ctx.prev_pid,
1537 entry->ctx.prev_prio,
1539 entry->type == TRACE_CTX ? "==>" : " +",
1540 entry->ctx.next_pid,
1541 entry->ctx.next_prio,
1547 ret = trace_seq_printf(s, "# %ld %ld %ld\n",
1548 entry->special.arg1,
1549 entry->special.arg2,
1550 entry->special.arg3);
1555 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1557 ret = trace_seq_puts(s, " <= ");
1561 ret = seq_print_ip_sym(s, entry->stack.caller[i],
1566 ret = trace_seq_puts(s, "\n");
1574 static int print_raw_fmt(struct trace_iterator *iter)
1576 struct trace_seq *s = &iter->seq;
1577 struct trace_entry *entry;
1583 ret = trace_seq_printf(s, "%d %d %llu ",
1584 entry->pid, iter->cpu, entry->t);
1588 switch (entry->type) {
1590 ret = trace_seq_printf(s, "%x %x\n",
1591 entry->fn.ip, entry->fn.parent_ip);
1597 S = entry->ctx.prev_state < sizeof(state_to_char) ?
1598 state_to_char[entry->ctx.prev_state] : 'X';
1599 T = entry->ctx.next_state < sizeof(state_to_char) ?
1600 state_to_char[entry->ctx.next_state] : 'X';
1601 if (entry->type == TRACE_WAKE)
1603 ret = trace_seq_printf(s, "%d %d %c %d %d %c\n",
1604 entry->ctx.prev_pid,
1605 entry->ctx.prev_prio,
1607 entry->ctx.next_pid,
1608 entry->ctx.next_prio,
1615 ret = trace_seq_printf(s, "# %ld %ld %ld\n",
1616 entry->special.arg1,
1617 entry->special.arg2,
1618 entry->special.arg3);
1626 #define SEQ_PUT_FIELD_RET(s, x) \
1628 if (!trace_seq_putmem(s, &(x), sizeof(x))) \
1632 #define SEQ_PUT_HEX_FIELD_RET(s, x) \
1634 if (!trace_seq_putmem_hex(s, &(x), sizeof(x))) \
1638 static int print_hex_fmt(struct trace_iterator *iter)
1640 struct trace_seq *s = &iter->seq;
1641 unsigned char newline = '\n';
1642 struct trace_entry *entry;
1647 SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
1648 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
1649 SEQ_PUT_HEX_FIELD_RET(s, entry->t);
1651 switch (entry->type) {
1653 SEQ_PUT_HEX_FIELD_RET(s, entry->fn.ip);
1654 SEQ_PUT_HEX_FIELD_RET(s, entry->fn.parent_ip);
1658 S = entry->ctx.prev_state < sizeof(state_to_char) ?
1659 state_to_char[entry->ctx.prev_state] : 'X';
1660 T = entry->ctx.next_state < sizeof(state_to_char) ?
1661 state_to_char[entry->ctx.next_state] : 'X';
1662 if (entry->type == TRACE_WAKE)
1664 SEQ_PUT_HEX_FIELD_RET(s, entry->ctx.prev_pid);
1665 SEQ_PUT_HEX_FIELD_RET(s, entry->ctx.prev_prio);
1666 SEQ_PUT_HEX_FIELD_RET(s, S);
1667 SEQ_PUT_HEX_FIELD_RET(s, entry->ctx.next_pid);
1668 SEQ_PUT_HEX_FIELD_RET(s, entry->ctx.next_prio);
1669 SEQ_PUT_HEX_FIELD_RET(s, entry->fn.parent_ip);
1670 SEQ_PUT_HEX_FIELD_RET(s, T);
1674 SEQ_PUT_HEX_FIELD_RET(s, entry->special.arg1);
1675 SEQ_PUT_HEX_FIELD_RET(s, entry->special.arg2);
1676 SEQ_PUT_HEX_FIELD_RET(s, entry->special.arg3);
1679 SEQ_PUT_FIELD_RET(s, newline);
1684 static int print_bin_fmt(struct trace_iterator *iter)
1686 struct trace_seq *s = &iter->seq;
1687 struct trace_entry *entry;
1691 SEQ_PUT_FIELD_RET(s, entry->pid);
1692 SEQ_PUT_FIELD_RET(s, entry->cpu);
1693 SEQ_PUT_FIELD_RET(s, entry->t);
1695 switch (entry->type) {
1697 SEQ_PUT_FIELD_RET(s, entry->fn.ip);
1698 SEQ_PUT_FIELD_RET(s, entry->fn.parent_ip);
1701 SEQ_PUT_FIELD_RET(s, entry->ctx.prev_pid);
1702 SEQ_PUT_FIELD_RET(s, entry->ctx.prev_prio);
1703 SEQ_PUT_FIELD_RET(s, entry->ctx.prev_state);
1704 SEQ_PUT_FIELD_RET(s, entry->ctx.next_pid);
1705 SEQ_PUT_FIELD_RET(s, entry->ctx.next_prio);
1706 SEQ_PUT_FIELD_RET(s, entry->ctx.next_state);
1710 SEQ_PUT_FIELD_RET(s, entry->special.arg1);
1711 SEQ_PUT_FIELD_RET(s, entry->special.arg2);
1712 SEQ_PUT_FIELD_RET(s, entry->special.arg3);
1718 static int trace_empty(struct trace_iterator *iter)
1720 struct trace_array_cpu *data;
1723 for_each_tracing_cpu(cpu) {
1724 data = iter->tr->data[cpu];
1726 if (head_page(data) && data->trace_idx &&
1727 (data->trace_tail != data->trace_head ||
1728 data->trace_tail_idx != data->trace_head_idx))
1734 static int print_trace_line(struct trace_iterator *iter)
1736 if (iter->trace && iter->trace->print_line)
1737 return iter->trace->print_line(iter);
1739 if (trace_flags & TRACE_ITER_BIN)
1740 return print_bin_fmt(iter);
1742 if (trace_flags & TRACE_ITER_HEX)
1743 return print_hex_fmt(iter);
1745 if (trace_flags & TRACE_ITER_RAW)
1746 return print_raw_fmt(iter);
1748 if (iter->iter_flags & TRACE_FILE_LAT_FMT)
1749 return print_lat_fmt(iter, iter->idx, iter->cpu);
1751 return print_trace_fmt(iter);
1754 static int s_show(struct seq_file *m, void *v)
1756 struct trace_iterator *iter = v;
1758 if (iter->ent == NULL) {
1760 seq_printf(m, "# tracer: %s\n", iter->trace->name);
1763 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
1764 /* print nothing if the buffers are empty */
1765 if (trace_empty(iter))
1767 print_trace_header(m, iter);
1768 if (!(trace_flags & TRACE_ITER_VERBOSE))
1769 print_lat_help_header(m);
1771 if (!(trace_flags & TRACE_ITER_VERBOSE))
1772 print_func_help_header(m);
1775 print_trace_line(iter);
1776 trace_print_seq(m, &iter->seq);
1782 static struct seq_operations tracer_seq_ops = {
1789 static struct trace_iterator *
1790 __tracing_open(struct inode *inode, struct file *file, int *ret)
1792 struct trace_iterator *iter;
1794 if (tracing_disabled) {
1799 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1805 mutex_lock(&trace_types_lock);
1806 if (current_trace && current_trace->print_max)
1809 iter->tr = inode->i_private;
1810 iter->trace = current_trace;
1813 /* TODO stop tracer */
1814 *ret = seq_open(file, &tracer_seq_ops);
1816 struct seq_file *m = file->private_data;
1819 /* stop the trace while dumping */
1823 if (iter->trace && iter->trace->open)
1824 iter->trace->open(iter);
1829 mutex_unlock(&trace_types_lock);
1835 int tracing_open_generic(struct inode *inode, struct file *filp)
1837 if (tracing_disabled)
1840 filp->private_data = inode->i_private;
1844 int tracing_release(struct inode *inode, struct file *file)
1846 struct seq_file *m = (struct seq_file *)file->private_data;
1847 struct trace_iterator *iter = m->private;
1849 mutex_lock(&trace_types_lock);
1850 if (iter->trace && iter->trace->close)
1851 iter->trace->close(iter);
1853 /* reenable tracing if it was previously enabled */
1856 mutex_unlock(&trace_types_lock);
1858 seq_release(inode, file);
1863 static int tracing_open(struct inode *inode, struct file *file)
1867 __tracing_open(inode, file, &ret);
1872 static int tracing_lt_open(struct inode *inode, struct file *file)
1874 struct trace_iterator *iter;
1877 iter = __tracing_open(inode, file, &ret);
1880 iter->iter_flags |= TRACE_FILE_LAT_FMT;
1887 t_next(struct seq_file *m, void *v, loff_t *pos)
1889 struct tracer *t = m->private;
1901 static void *t_start(struct seq_file *m, loff_t *pos)
1903 struct tracer *t = m->private;
1906 mutex_lock(&trace_types_lock);
1907 for (; t && l < *pos; t = t_next(m, t, &l))
1913 static void t_stop(struct seq_file *m, void *p)
1915 mutex_unlock(&trace_types_lock);
1918 static int t_show(struct seq_file *m, void *v)
1920 struct tracer *t = v;
1925 seq_printf(m, "%s", t->name);
1934 static struct seq_operations show_traces_seq_ops = {
1941 static int show_traces_open(struct inode *inode, struct file *file)
1945 if (tracing_disabled)
1948 ret = seq_open(file, &show_traces_seq_ops);
1950 struct seq_file *m = file->private_data;
1951 m->private = trace_types;
1957 static struct file_operations tracing_fops = {
1958 .open = tracing_open,
1960 .llseek = seq_lseek,
1961 .release = tracing_release,
1964 static struct file_operations tracing_lt_fops = {
1965 .open = tracing_lt_open,
1967 .llseek = seq_lseek,
1968 .release = tracing_release,
1971 static struct file_operations show_traces_fops = {
1972 .open = show_traces_open,
1974 .release = seq_release,
1978 * Only trace on a CPU if the bitmask is set:
1980 static cpumask_t tracing_cpumask = CPU_MASK_ALL;
1983 * When tracing/tracing_cpu_mask is modified then this holds
1984 * the new bitmask we are about to install:
1986 static cpumask_t tracing_cpumask_new;
1989 * The tracer itself will not take this lock, but still we want
1990 * to provide a consistent cpumask to user-space:
1992 static DEFINE_MUTEX(tracing_cpumask_update_lock);
1995 * Temporary storage for the character representation of the
1996 * CPU bitmask (and one more byte for the newline):
1998 static char mask_str[NR_CPUS + 1];
2001 tracing_cpumask_read(struct file *filp, char __user *ubuf,
2002 size_t count, loff_t *ppos)
2006 mutex_lock(&tracing_cpumask_update_lock);
2008 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
2009 if (count - len < 2) {
2013 len += sprintf(mask_str + len, "\n");
2014 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
2017 mutex_unlock(&tracing_cpumask_update_lock);
2023 tracing_cpumask_write(struct file *filp, const char __user *ubuf,
2024 size_t count, loff_t *ppos)
2028 mutex_lock(&tracing_cpumask_update_lock);
2029 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
2033 raw_local_irq_disable();
2034 __raw_spin_lock(&ftrace_max_lock);
2035 for_each_tracing_cpu(cpu) {
2037 * Increase/decrease the disabled counter if we are
2038 * about to flip a bit in the cpumask:
2040 if (cpu_isset(cpu, tracing_cpumask) &&
2041 !cpu_isset(cpu, tracing_cpumask_new)) {
2042 atomic_inc(&global_trace.data[cpu]->disabled);
2044 if (!cpu_isset(cpu, tracing_cpumask) &&
2045 cpu_isset(cpu, tracing_cpumask_new)) {
2046 atomic_dec(&global_trace.data[cpu]->disabled);
2049 __raw_spin_unlock(&ftrace_max_lock);
2050 raw_local_irq_enable();
2052 tracing_cpumask = tracing_cpumask_new;
2054 mutex_unlock(&tracing_cpumask_update_lock);
2059 mutex_unlock(&tracing_cpumask_update_lock);
2064 static struct file_operations tracing_cpumask_fops = {
2065 .open = tracing_open_generic,
2066 .read = tracing_cpumask_read,
2067 .write = tracing_cpumask_write,
2071 tracing_iter_ctrl_read(struct file *filp, char __user *ubuf,
2072 size_t cnt, loff_t *ppos)
2079 /* calulate max size */
2080 for (i = 0; trace_options[i]; i++) {
2081 len += strlen(trace_options[i]);
2082 len += 3; /* "no" and space */
2085 /* +2 for \n and \0 */
2086 buf = kmalloc(len + 2, GFP_KERNEL);
2090 for (i = 0; trace_options[i]; i++) {
2091 if (trace_flags & (1 << i))
2092 r += sprintf(buf + r, "%s ", trace_options[i]);
2094 r += sprintf(buf + r, "no%s ", trace_options[i]);
2097 r += sprintf(buf + r, "\n");
2098 WARN_ON(r >= len + 2);
2100 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2108 tracing_iter_ctrl_write(struct file *filp, const char __user *ubuf,
2109 size_t cnt, loff_t *ppos)
2116 if (cnt >= sizeof(buf))
2119 if (copy_from_user(&buf, ubuf, cnt))
2124 if (strncmp(buf, "no", 2) == 0) {
2129 for (i = 0; trace_options[i]; i++) {
2130 int len = strlen(trace_options[i]);
2132 if (strncmp(cmp, trace_options[i], len) == 0) {
2134 trace_flags &= ~(1 << i);
2136 trace_flags |= (1 << i);
2141 * If no option could be set, return an error:
2143 if (!trace_options[i])
2151 static struct file_operations tracing_iter_fops = {
2152 .open = tracing_open_generic,
2153 .read = tracing_iter_ctrl_read,
2154 .write = tracing_iter_ctrl_write,
2157 static const char readme_msg[] =
2158 "tracing mini-HOWTO:\n\n"
2160 "# mount -t debugfs nodev /debug\n\n"
2161 "# cat /debug/tracing/available_tracers\n"
2162 "wakeup preemptirqsoff preemptoff irqsoff ftrace sched_switch none\n\n"
2163 "# cat /debug/tracing/current_tracer\n"
2165 "# echo sched_switch > /debug/tracing/current_tracer\n"
2166 "# cat /debug/tracing/current_tracer\n"
2168 "# cat /debug/tracing/iter_ctrl\n"
2169 "noprint-parent nosym-offset nosym-addr noverbose\n"
2170 "# echo print-parent > /debug/tracing/iter_ctrl\n"
2171 "# echo 1 > /debug/tracing/tracing_enabled\n"
2172 "# cat /debug/tracing/trace > /tmp/trace.txt\n"
2173 "echo 0 > /debug/tracing/tracing_enabled\n"
2177 tracing_readme_read(struct file *filp, char __user *ubuf,
2178 size_t cnt, loff_t *ppos)
2180 return simple_read_from_buffer(ubuf, cnt, ppos,
2181 readme_msg, strlen(readme_msg));
2184 static struct file_operations tracing_readme_fops = {
2185 .open = tracing_open_generic,
2186 .read = tracing_readme_read,
2190 tracing_ctrl_read(struct file *filp, char __user *ubuf,
2191 size_t cnt, loff_t *ppos)
2193 struct trace_array *tr = filp->private_data;
2197 r = sprintf(buf, "%ld\n", tr->ctrl);
2198 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2202 tracing_ctrl_write(struct file *filp, const char __user *ubuf,
2203 size_t cnt, loff_t *ppos)
2205 struct trace_array *tr = filp->private_data;
2210 if (cnt >= sizeof(buf))
2213 if (copy_from_user(&buf, ubuf, cnt))
2218 ret = strict_strtoul(buf, 10, &val);
2224 mutex_lock(&trace_types_lock);
2225 if (tr->ctrl ^ val) {
2233 if (current_trace && current_trace->ctrl_update)
2234 current_trace->ctrl_update(tr);
2236 mutex_unlock(&trace_types_lock);
2244 tracing_set_trace_read(struct file *filp, char __user *ubuf,
2245 size_t cnt, loff_t *ppos)
2247 char buf[max_tracer_type_len+2];
2250 mutex_lock(&trace_types_lock);
2252 r = sprintf(buf, "%s\n", current_trace->name);
2254 r = sprintf(buf, "\n");
2255 mutex_unlock(&trace_types_lock);
2257 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2261 tracing_set_trace_write(struct file *filp, const char __user *ubuf,
2262 size_t cnt, loff_t *ppos)
2264 struct trace_array *tr = &global_trace;
2266 char buf[max_tracer_type_len+1];
2269 if (cnt > max_tracer_type_len)
2270 cnt = max_tracer_type_len;
2272 if (copy_from_user(&buf, ubuf, cnt))
2277 /* strip ending whitespace. */
2278 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
2281 mutex_lock(&trace_types_lock);
2282 for (t = trace_types; t; t = t->next) {
2283 if (strcmp(t->name, buf) == 0)
2286 if (!t || t == current_trace)
2289 if (current_trace && current_trace->reset)
2290 current_trace->reset(tr);
2297 mutex_unlock(&trace_types_lock);
2305 tracing_max_lat_read(struct file *filp, char __user *ubuf,
2306 size_t cnt, loff_t *ppos)
2308 unsigned long *ptr = filp->private_data;
2312 r = snprintf(buf, sizeof(buf), "%ld\n",
2313 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
2314 if (r > sizeof(buf))
2316 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2320 tracing_max_lat_write(struct file *filp, const char __user *ubuf,
2321 size_t cnt, loff_t *ppos)
2323 long *ptr = filp->private_data;
2328 if (cnt >= sizeof(buf))
2331 if (copy_from_user(&buf, ubuf, cnt))
2336 ret = strict_strtoul(buf, 10, &val);
2345 static atomic_t tracing_reader;
2347 static int tracing_open_pipe(struct inode *inode, struct file *filp)
2349 struct trace_iterator *iter;
2351 if (tracing_disabled)
2354 /* We only allow for reader of the pipe */
2355 if (atomic_inc_return(&tracing_reader) != 1) {
2356 atomic_dec(&tracing_reader);
2360 /* create a buffer to store the information to pass to userspace */
2361 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2365 mutex_lock(&trace_types_lock);
2366 iter->tr = &global_trace;
2367 iter->trace = current_trace;
2368 filp->private_data = iter;
2370 if (iter->trace->pipe_open)
2371 iter->trace->pipe_open(iter);
2372 mutex_unlock(&trace_types_lock);
2377 static int tracing_release_pipe(struct inode *inode, struct file *file)
2379 struct trace_iterator *iter = file->private_data;
2382 atomic_dec(&tracing_reader);
2388 tracing_poll_pipe(struct file *filp, poll_table *poll_table)
2390 struct trace_iterator *iter = filp->private_data;
2392 if (trace_flags & TRACE_ITER_BLOCK) {
2394 * Always select as readable when in blocking mode
2396 return POLLIN | POLLRDNORM;
2398 if (!trace_empty(iter))
2399 return POLLIN | POLLRDNORM;
2400 poll_wait(filp, &trace_wait, poll_table);
2401 if (!trace_empty(iter))
2402 return POLLIN | POLLRDNORM;
2412 tracing_read_pipe(struct file *filp, char __user *ubuf,
2413 size_t cnt, loff_t *ppos)
2415 struct trace_iterator *iter = filp->private_data;
2416 struct trace_array_cpu *data;
2417 static cpumask_t mask;
2418 unsigned long flags;
2419 #ifdef CONFIG_FTRACE
2425 /* return any leftover data */
2426 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2431 trace_seq_reset(&iter->seq);
2433 mutex_lock(&trace_types_lock);
2434 if (iter->trace->read) {
2435 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
2440 while (trace_empty(iter)) {
2442 if ((filp->f_flags & O_NONBLOCK)) {
2448 * This is a make-shift waitqueue. The reason we don't use
2449 * an actual wait queue is because:
2450 * 1) we only ever have one waiter
2451 * 2) the tracing, traces all functions, we don't want
2452 * the overhead of calling wake_up and friends
2453 * (and tracing them too)
2454 * Anyway, this is really very primitive wakeup.
2456 set_current_state(TASK_INTERRUPTIBLE);
2457 iter->tr->waiter = current;
2459 mutex_unlock(&trace_types_lock);
2461 /* sleep for 100 msecs, and try again. */
2462 schedule_timeout(HZ/10);
2464 mutex_lock(&trace_types_lock);
2466 iter->tr->waiter = NULL;
2468 if (signal_pending(current)) {
2473 if (iter->trace != current_trace)
2477 * We block until we read something and tracing is disabled.
2478 * We still block if tracing is disabled, but we have never
2479 * read anything. This allows a user to cat this file, and
2480 * then enable tracing. But after we have read something,
2481 * we give an EOF when tracing is again disabled.
2483 * iter->pos will be 0 if we haven't read anything.
2485 if (!tracer_enabled && iter->pos)
2491 /* stop when tracing is finished */
2492 if (trace_empty(iter))
2495 if (cnt >= PAGE_SIZE)
2496 cnt = PAGE_SIZE - 1;
2498 /* reset all but tr, trace, and overruns */
2499 memset(&iter->seq, 0,
2500 sizeof(struct trace_iterator) -
2501 offsetof(struct trace_iterator, seq));
2505 * We need to stop all tracing on all CPUS to read the
2506 * the next buffer. This is a bit expensive, but is
2507 * not done often. We fill all what we can read,
2508 * and then release the locks again.
2512 local_irq_save(flags);
2513 #ifdef CONFIG_FTRACE
2514 ftrace_save = ftrace_enabled;
2518 for_each_tracing_cpu(cpu) {
2519 data = iter->tr->data[cpu];
2521 if (!head_page(data) || !data->trace_idx)
2524 atomic_inc(&data->disabled);
2528 for_each_cpu_mask(cpu, mask) {
2529 data = iter->tr->data[cpu];
2530 __raw_spin_lock(&data->lock);
2532 if (data->overrun > iter->last_overrun[cpu])
2533 iter->overrun[cpu] +=
2534 data->overrun - iter->last_overrun[cpu];
2535 iter->last_overrun[cpu] = data->overrun;
2538 while (find_next_entry_inc(iter) != NULL) {
2540 int len = iter->seq.len;
2542 ret = print_trace_line(iter);
2544 /* don't print partial lines */
2545 iter->seq.len = len;
2549 trace_consume(iter);
2551 if (iter->seq.len >= cnt)
2555 for_each_cpu_mask(cpu, mask) {
2556 data = iter->tr->data[cpu];
2557 __raw_spin_unlock(&data->lock);
2560 for_each_cpu_mask(cpu, mask) {
2561 data = iter->tr->data[cpu];
2562 atomic_dec(&data->disabled);
2564 #ifdef CONFIG_FTRACE
2565 ftrace_enabled = ftrace_save;
2567 local_irq_restore(flags);
2569 /* Now copy what we have to the user */
2570 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2571 if (iter->seq.readpos >= iter->seq.len)
2572 trace_seq_reset(&iter->seq);
2577 mutex_unlock(&trace_types_lock);
2583 tracing_entries_read(struct file *filp, char __user *ubuf,
2584 size_t cnt, loff_t *ppos)
2586 struct trace_array *tr = filp->private_data;
2590 r = sprintf(buf, "%lu\n", tr->entries);
2591 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2595 tracing_entries_write(struct file *filp, const char __user *ubuf,
2596 size_t cnt, loff_t *ppos)
2602 if (cnt >= sizeof(buf))
2605 if (copy_from_user(&buf, ubuf, cnt))
2610 ret = strict_strtoul(buf, 10, &val);
2614 /* must have at least 1 entry */
2618 mutex_lock(&trace_types_lock);
2620 if (current_trace != &no_tracer) {
2622 pr_info("ftrace: set current_tracer to none"
2623 " before modifying buffer size\n");
2627 if (val > global_trace.entries) {
2628 long pages_requested;
2629 unsigned long freeable_pages;
2631 /* make sure we have enough memory before mapping */
2633 (val + (ENTRIES_PER_PAGE-1)) / ENTRIES_PER_PAGE;
2635 /* account for each buffer (and max_tr) */
2636 pages_requested *= tracing_nr_buffers * 2;
2638 /* Check for overflow */
2639 if (pages_requested < 0) {
2644 freeable_pages = determine_dirtyable_memory();
2646 /* we only allow to request 1/4 of useable memory */
2647 if (pages_requested >
2648 ((freeable_pages + tracing_pages_allocated) / 4)) {
2653 while (global_trace.entries < val) {
2654 if (trace_alloc_page()) {
2658 /* double check that we don't go over the known pages */
2659 if (tracing_pages_allocated > pages_requested)
2664 /* include the number of entries in val (inc of page entries) */
2665 while (global_trace.entries > val + (ENTRIES_PER_PAGE - 1))
2669 /* check integrity */
2670 for_each_tracing_cpu(i)
2671 check_pages(global_trace.data[i]);
2675 /* If check pages failed, return ENOMEM */
2676 if (tracing_disabled)
2679 max_tr.entries = global_trace.entries;
2680 mutex_unlock(&trace_types_lock);
2685 static struct file_operations tracing_max_lat_fops = {
2686 .open = tracing_open_generic,
2687 .read = tracing_max_lat_read,
2688 .write = tracing_max_lat_write,
2691 static struct file_operations tracing_ctrl_fops = {
2692 .open = tracing_open_generic,
2693 .read = tracing_ctrl_read,
2694 .write = tracing_ctrl_write,
2697 static struct file_operations set_tracer_fops = {
2698 .open = tracing_open_generic,
2699 .read = tracing_set_trace_read,
2700 .write = tracing_set_trace_write,
2703 static struct file_operations tracing_pipe_fops = {
2704 .open = tracing_open_pipe,
2705 .poll = tracing_poll_pipe,
2706 .read = tracing_read_pipe,
2707 .release = tracing_release_pipe,
2710 static struct file_operations tracing_entries_fops = {
2711 .open = tracing_open_generic,
2712 .read = tracing_entries_read,
2713 .write = tracing_entries_write,
2716 #ifdef CONFIG_DYNAMIC_FTRACE
2719 tracing_read_long(struct file *filp, char __user *ubuf,
2720 size_t cnt, loff_t *ppos)
2722 unsigned long *p = filp->private_data;
2726 r = sprintf(buf, "%ld\n", *p);
2728 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2731 static struct file_operations tracing_read_long_fops = {
2732 .open = tracing_open_generic,
2733 .read = tracing_read_long,
2737 static struct dentry *d_tracer;
2739 struct dentry *tracing_init_dentry(void)
2746 d_tracer = debugfs_create_dir("tracing", NULL);
2748 if (!d_tracer && !once) {
2750 pr_warning("Could not create debugfs directory 'tracing'\n");
2757 #ifdef CONFIG_FTRACE_SELFTEST
2758 /* Let selftest have access to static functions in this file */
2759 #include "trace_selftest.c"
2762 static __init void tracer_init_debugfs(void)
2764 struct dentry *d_tracer;
2765 struct dentry *entry;
2767 d_tracer = tracing_init_dentry();
2769 entry = debugfs_create_file("tracing_enabled", 0644, d_tracer,
2770 &global_trace, &tracing_ctrl_fops);
2772 pr_warning("Could not create debugfs 'tracing_enabled' entry\n");
2774 entry = debugfs_create_file("iter_ctrl", 0644, d_tracer,
2775 NULL, &tracing_iter_fops);
2777 pr_warning("Could not create debugfs 'iter_ctrl' entry\n");
2779 entry = debugfs_create_file("tracing_cpumask", 0644, d_tracer,
2780 NULL, &tracing_cpumask_fops);
2782 pr_warning("Could not create debugfs 'tracing_cpumask' entry\n");
2784 entry = debugfs_create_file("latency_trace", 0444, d_tracer,
2785 &global_trace, &tracing_lt_fops);
2787 pr_warning("Could not create debugfs 'latency_trace' entry\n");
2789 entry = debugfs_create_file("trace", 0444, d_tracer,
2790 &global_trace, &tracing_fops);
2792 pr_warning("Could not create debugfs 'trace' entry\n");
2794 entry = debugfs_create_file("available_tracers", 0444, d_tracer,
2795 &global_trace, &show_traces_fops);
2797 pr_warning("Could not create debugfs 'trace' entry\n");
2799 entry = debugfs_create_file("current_tracer", 0444, d_tracer,
2800 &global_trace, &set_tracer_fops);
2802 pr_warning("Could not create debugfs 'trace' entry\n");
2804 entry = debugfs_create_file("tracing_max_latency", 0644, d_tracer,
2805 &tracing_max_latency,
2806 &tracing_max_lat_fops);
2808 pr_warning("Could not create debugfs "
2809 "'tracing_max_latency' entry\n");
2811 entry = debugfs_create_file("tracing_thresh", 0644, d_tracer,
2812 &tracing_thresh, &tracing_max_lat_fops);
2814 pr_warning("Could not create debugfs "
2815 "'tracing_threash' entry\n");
2816 entry = debugfs_create_file("README", 0644, d_tracer,
2817 NULL, &tracing_readme_fops);
2819 pr_warning("Could not create debugfs 'README' entry\n");
2821 entry = debugfs_create_file("trace_pipe", 0644, d_tracer,
2822 NULL, &tracing_pipe_fops);
2824 pr_warning("Could not create debugfs "
2825 "'tracing_threash' entry\n");
2827 entry = debugfs_create_file("trace_entries", 0644, d_tracer,
2828 &global_trace, &tracing_entries_fops);
2830 pr_warning("Could not create debugfs "
2831 "'tracing_threash' entry\n");
2833 #ifdef CONFIG_DYNAMIC_FTRACE
2834 entry = debugfs_create_file("dyn_ftrace_total_info", 0444, d_tracer,
2835 &ftrace_update_tot_cnt,
2836 &tracing_read_long_fops);
2838 pr_warning("Could not create debugfs "
2839 "'dyn_ftrace_total_info' entry\n");
2843 static int trace_alloc_page(void)
2845 struct trace_array_cpu *data;
2846 struct page *page, *tmp;
2849 unsigned pages_allocated = 0;
2852 /* first allocate a page for each CPU */
2853 for_each_tracing_cpu(i) {
2854 array = (void *)__get_free_page(GFP_KERNEL);
2855 if (array == NULL) {
2856 printk(KERN_ERR "tracer: failed to allocate page"
2857 "for trace buffer!\n");
2862 page = virt_to_page(array);
2863 list_add(&page->lru, &pages);
2865 /* Only allocate if we are actually using the max trace */
2866 #ifdef CONFIG_TRACER_MAX_TRACE
2867 array = (void *)__get_free_page(GFP_KERNEL);
2868 if (array == NULL) {
2869 printk(KERN_ERR "tracer: failed to allocate page"
2870 "for trace buffer!\n");
2874 page = virt_to_page(array);
2875 list_add(&page->lru, &pages);
2879 /* Now that we successfully allocate a page per CPU, add them */
2880 for_each_tracing_cpu(i) {
2881 data = global_trace.data[i];
2882 page = list_entry(pages.next, struct page, lru);
2883 list_del_init(&page->lru);
2884 list_add_tail(&page->lru, &data->trace_pages);
2887 #ifdef CONFIG_TRACER_MAX_TRACE
2888 data = max_tr.data[i];
2889 page = list_entry(pages.next, struct page, lru);
2890 list_del_init(&page->lru);
2891 list_add_tail(&page->lru, &data->trace_pages);
2895 tracing_pages_allocated += pages_allocated;
2896 global_trace.entries += ENTRIES_PER_PAGE;
2901 list_for_each_entry_safe(page, tmp, &pages, lru) {
2902 list_del_init(&page->lru);
2908 static int trace_free_page(void)
2910 struct trace_array_cpu *data;
2912 struct list_head *p;
2916 /* free one page from each buffer */
2917 for_each_tracing_cpu(i) {
2918 data = global_trace.data[i];
2919 p = data->trace_pages.next;
2920 if (p == &data->trace_pages) {
2921 /* should never happen */
2923 tracing_disabled = 1;
2927 page = list_entry(p, struct page, lru);
2929 list_del(&page->lru);
2930 tracing_pages_allocated--;
2931 tracing_pages_allocated--;
2934 tracing_reset(data);
2936 #ifdef CONFIG_TRACER_MAX_TRACE
2937 data = max_tr.data[i];
2938 p = data->trace_pages.next;
2939 if (p == &data->trace_pages) {
2940 /* should never happen */
2942 tracing_disabled = 1;
2946 page = list_entry(p, struct page, lru);
2948 list_del(&page->lru);
2951 tracing_reset(data);
2954 global_trace.entries -= ENTRIES_PER_PAGE;
2959 __init static int tracer_alloc_buffers(void)
2961 struct trace_array_cpu *data;
2968 /* TODO: make the number of buffers hot pluggable with CPUS */
2969 tracing_nr_buffers = num_possible_cpus();
2970 tracing_buffer_mask = cpu_possible_map;
2972 /* Allocate the first page for all buffers */
2973 for_each_tracing_cpu(i) {
2974 data = global_trace.data[i] = &per_cpu(global_trace_cpu, i);
2975 max_tr.data[i] = &per_cpu(max_data, i);
2977 array = (void *)__get_free_page(GFP_KERNEL);
2978 if (array == NULL) {
2979 printk(KERN_ERR "tracer: failed to allocate page"
2980 "for trace buffer!\n");
2984 /* set the array to the list */
2985 INIT_LIST_HEAD(&data->trace_pages);
2986 page = virt_to_page(array);
2987 list_add(&page->lru, &data->trace_pages);
2988 /* use the LRU flag to differentiate the two buffers */
2991 data->lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
2992 max_tr.data[i]->lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
2994 /* Only allocate if we are actually using the max trace */
2995 #ifdef CONFIG_TRACER_MAX_TRACE
2996 array = (void *)__get_free_page(GFP_KERNEL);
2997 if (array == NULL) {
2998 printk(KERN_ERR "tracer: failed to allocate page"
2999 "for trace buffer!\n");
3003 INIT_LIST_HEAD(&max_tr.data[i]->trace_pages);
3004 page = virt_to_page(array);
3005 list_add(&page->lru, &max_tr.data[i]->trace_pages);
3011 * Since we allocate by orders of pages, we may be able to
3014 global_trace.entries = ENTRIES_PER_PAGE;
3017 while (global_trace.entries < trace_nr_entries) {
3018 if (trace_alloc_page())
3022 max_tr.entries = global_trace.entries;
3024 pr_info("tracer: %d pages allocated for %ld",
3025 pages, trace_nr_entries);
3026 pr_info(" entries of %ld bytes\n", (long)TRACE_ENTRY_SIZE);
3027 pr_info(" actual entries %ld\n", global_trace.entries);
3029 tracer_init_debugfs();
3031 trace_init_cmdlines();
3033 register_tracer(&no_tracer);
3034 current_trace = &no_tracer;
3036 /* All seems OK, enable tracing */
3037 global_trace.ctrl = tracer_enabled;
3038 tracing_disabled = 0;
3043 for (i-- ; i >= 0; i--) {
3044 struct page *page, *tmp;
3045 struct trace_array_cpu *data = global_trace.data[i];
3048 list_for_each_entry_safe(page, tmp,
3049 &data->trace_pages, lru) {
3050 list_del_init(&page->lru);
3055 #ifdef CONFIG_TRACER_MAX_TRACE
3056 data = max_tr.data[i];
3058 list_for_each_entry_safe(page, tmp,
3059 &data->trace_pages, lru) {
3060 list_del_init(&page->lru);
3068 fs_initcall(tracer_alloc_buffers);