ftrace: add trace pipe header pluggin
[linux-2.6] / kernel / trace / trace.c
1 /*
2  * ring buffer based function tracer
3  *
4  * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5  * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
6  *
7  * Originally taken from the RT patch by:
8  *    Arnaldo Carvalho de Melo <acme@redhat.com>
9  *
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
13  */
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>
29 #include <linux/fs.h>
30
31 #include <linux/stacktrace.h>
32
33 #include "trace.h"
34
35 unsigned long __read_mostly     tracing_max_latency = (cycle_t)ULONG_MAX;
36 unsigned long __read_mostly     tracing_thresh;
37
38 static unsigned long __read_mostly      tracing_nr_buffers;
39 static cpumask_t __read_mostly          tracing_buffer_mask;
40
41 #define for_each_tracing_cpu(cpu)       \
42         for_each_cpu_mask(cpu, tracing_buffer_mask)
43
44 /* dummy trace to disable tracing */
45 static struct tracer no_tracer __read_mostly = {
46         .name           = "none",
47 };
48
49 static int trace_alloc_page(void);
50 static int trace_free_page(void);
51
52 static int tracing_disabled = 1;
53
54 long
55 ns2usecs(cycle_t nsec)
56 {
57         nsec += 500;
58         do_div(nsec, 1000);
59         return nsec;
60 }
61
62 cycle_t ftrace_now(int cpu)
63 {
64         return cpu_clock(cpu);
65 }
66
67 /*
68  * The global_trace is the descriptor that holds the tracing
69  * buffers for the live tracing. For each CPU, it contains
70  * a link list of pages that will store trace entries. The
71  * page descriptor of the pages in the memory is used to hold
72  * the link list by linking the lru item in the page descriptor
73  * to each of the pages in the buffer per CPU.
74  *
75  * For each active CPU there is a data field that holds the
76  * pages for the buffer for that CPU. Each CPU has the same number
77  * of pages allocated for its buffer.
78  */
79 static struct trace_array       global_trace;
80
81 static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
82
83 /*
84  * The max_tr is used to snapshot the global_trace when a maximum
85  * latency is reached. Some tracers will use this to store a maximum
86  * trace while it continues examining live traces.
87  *
88  * The buffers for the max_tr are set up the same as the global_trace.
89  * When a snapshot is taken, the link list of the max_tr is swapped
90  * with the link list of the global_trace and the buffers are reset for
91  * the global_trace so the tracing can continue.
92  */
93 static struct trace_array       max_tr;
94
95 static DEFINE_PER_CPU(struct trace_array_cpu, max_data);
96
97 /* tracer_enabled is used to toggle activation of a tracer */
98 static int                      tracer_enabled = 1;
99
100 /*
101  * trace_nr_entries is the number of entries that is allocated
102  * for a buffer. Note, the number of entries is always rounded
103  * to ENTRIES_PER_PAGE.
104  */
105 static unsigned long            trace_nr_entries = 65536UL;
106
107 /* trace_types holds a link list of available tracers. */
108 static struct tracer            *trace_types __read_mostly;
109
110 /* current_trace points to the tracer that is currently active */
111 static struct tracer            *current_trace __read_mostly;
112
113 /*
114  * max_tracer_type_len is used to simplify the allocating of
115  * buffers to read userspace tracer names. We keep track of
116  * the longest tracer name registered.
117  */
118 static int                      max_tracer_type_len;
119
120 /*
121  * trace_types_lock is used to protect the trace_types list.
122  * This lock is also used to keep user access serialized.
123  * Accesses from userspace will grab this lock while userspace
124  * activities happen inside the kernel.
125  */
126 static DEFINE_MUTEX(trace_types_lock);
127
128 /* trace_wait is a waitqueue for tasks blocked on trace_poll */
129 static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
130
131 /* trace_flags holds iter_ctrl options */
132 unsigned long trace_flags = TRACE_ITER_PRINT_PARENT;
133
134 /**
135  * trace_wake_up - wake up tasks waiting for trace input
136  *
137  * Simply wakes up any task that is blocked on the trace_wait
138  * queue. These is used with trace_poll for tasks polling the trace.
139  */
140 void trace_wake_up(void)
141 {
142         /*
143          * The runqueue_is_locked() can fail, but this is the best we
144          * have for now:
145          */
146         if (!(trace_flags & TRACE_ITER_BLOCK) && !runqueue_is_locked())
147                 wake_up(&trace_wait);
148 }
149
150 #define ENTRIES_PER_PAGE (PAGE_SIZE / sizeof(struct trace_entry))
151
152 static int __init set_nr_entries(char *str)
153 {
154         unsigned long nr_entries;
155         int ret;
156
157         if (!str)
158                 return 0;
159         ret = strict_strtoul(str, 0, &nr_entries);
160         /* nr_entries can not be zero */
161         if (ret < 0 || nr_entries == 0)
162                 return 0;
163         trace_nr_entries = nr_entries;
164         return 1;
165 }
166 __setup("trace_entries=", set_nr_entries);
167
168 unsigned long nsecs_to_usecs(unsigned long nsecs)
169 {
170         return nsecs / 1000;
171 }
172
173 /*
174  * trace_flag_type is an enumeration that holds different
175  * states when a trace occurs. These are:
176  *  IRQS_OFF    - interrupts were disabled
177  *  NEED_RESCED - reschedule is requested
178  *  HARDIRQ     - inside an interrupt handler
179  *  SOFTIRQ     - inside a softirq handler
180  */
181 enum trace_flag_type {
182         TRACE_FLAG_IRQS_OFF             = 0x01,
183         TRACE_FLAG_NEED_RESCHED         = 0x02,
184         TRACE_FLAG_HARDIRQ              = 0x04,
185         TRACE_FLAG_SOFTIRQ              = 0x08,
186 };
187
188 /*
189  * TRACE_ITER_SYM_MASK masks the options in trace_flags that
190  * control the output of kernel symbols.
191  */
192 #define TRACE_ITER_SYM_MASK \
193         (TRACE_ITER_PRINT_PARENT|TRACE_ITER_SYM_OFFSET|TRACE_ITER_SYM_ADDR)
194
195 /* These must match the bit postions in trace_iterator_flags */
196 static const char *trace_options[] = {
197         "print-parent",
198         "sym-offset",
199         "sym-addr",
200         "verbose",
201         "raw",
202         "hex",
203         "bin",
204         "block",
205         "stacktrace",
206         "sched-tree",
207         NULL
208 };
209
210 /*
211  * ftrace_max_lock is used to protect the swapping of buffers
212  * when taking a max snapshot. The buffers themselves are
213  * protected by per_cpu spinlocks. But the action of the swap
214  * needs its own lock.
215  *
216  * This is defined as a raw_spinlock_t in order to help
217  * with performance when lockdep debugging is enabled.
218  */
219 static raw_spinlock_t ftrace_max_lock =
220         (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
221
222 /*
223  * Copy the new maximum trace into the separate maximum-trace
224  * structure. (this way the maximum trace is permanently saved,
225  * for later retrieval via /debugfs/tracing/latency_trace)
226  */
227 static void
228 __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
229 {
230         struct trace_array_cpu *data = tr->data[cpu];
231
232         max_tr.cpu = cpu;
233         max_tr.time_start = data->preempt_timestamp;
234
235         data = max_tr.data[cpu];
236         data->saved_latency = tracing_max_latency;
237
238         memcpy(data->comm, tsk->comm, TASK_COMM_LEN);
239         data->pid = tsk->pid;
240         data->uid = tsk->uid;
241         data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
242         data->policy = tsk->policy;
243         data->rt_priority = tsk->rt_priority;
244
245         /* record this tasks comm */
246         tracing_record_cmdline(current);
247 }
248
249 /**
250  * check_pages - integrity check of trace buffers
251  *
252  * As a safty measure we check to make sure the data pages have not
253  * been corrupted. TODO: configure to disable this because it adds
254  * a bit of overhead.
255  */
256 void check_pages(struct trace_array_cpu *data)
257 {
258         struct page *page, *tmp;
259
260         BUG_ON(data->trace_pages.next->prev != &data->trace_pages);
261         BUG_ON(data->trace_pages.prev->next != &data->trace_pages);
262
263         list_for_each_entry_safe(page, tmp, &data->trace_pages, lru) {
264                 BUG_ON(page->lru.next->prev != &page->lru);
265                 BUG_ON(page->lru.prev->next != &page->lru);
266         }
267 }
268
269 /**
270  * head_page - page address of the first page in per_cpu buffer.
271  *
272  * head_page returns the page address of the first page in
273  * a per_cpu buffer. This also preforms various consistency
274  * checks to make sure the buffer has not been corrupted.
275  */
276 void *head_page(struct trace_array_cpu *data)
277 {
278         struct page *page;
279
280         check_pages(data);
281         if (list_empty(&data->trace_pages))
282                 return NULL;
283
284         page = list_entry(data->trace_pages.next, struct page, lru);
285         BUG_ON(&page->lru == &data->trace_pages);
286
287         return page_address(page);
288 }
289
290 /**
291  * trace_seq_printf - sequence printing of trace information
292  * @s: trace sequence descriptor
293  * @fmt: printf format string
294  *
295  * The tracer may use either sequence operations or its own
296  * copy to user routines. To simplify formating of a trace
297  * trace_seq_printf is used to store strings into a special
298  * buffer (@s). Then the output may be either used by
299  * the sequencer or pulled into another buffer.
300  */
301 int
302 trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
303 {
304         int len = (PAGE_SIZE - 1) - s->len;
305         va_list ap;
306         int ret;
307
308         if (!len)
309                 return 0;
310
311         va_start(ap, fmt);
312         ret = vsnprintf(s->buffer + s->len, len, fmt, ap);
313         va_end(ap);
314
315         /* If we can't write it all, don't bother writing anything */
316         if (ret >= len)
317                 return 0;
318
319         s->len += ret;
320
321         return len;
322 }
323
324 /**
325  * trace_seq_puts - trace sequence printing of simple string
326  * @s: trace sequence descriptor
327  * @str: simple string to record
328  *
329  * The tracer may use either the sequence operations or its own
330  * copy to user routines. This function records a simple string
331  * into a special buffer (@s) for later retrieval by a sequencer
332  * or other mechanism.
333  */
334 static int
335 trace_seq_puts(struct trace_seq *s, const char *str)
336 {
337         int len = strlen(str);
338
339         if (len > ((PAGE_SIZE - 1) - s->len))
340                 return 0;
341
342         memcpy(s->buffer + s->len, str, len);
343         s->len += len;
344
345         return len;
346 }
347
348 static int
349 trace_seq_putc(struct trace_seq *s, unsigned char c)
350 {
351         if (s->len >= (PAGE_SIZE - 1))
352                 return 0;
353
354         s->buffer[s->len++] = c;
355
356         return 1;
357 }
358
359 static int
360 trace_seq_putmem(struct trace_seq *s, void *mem, size_t len)
361 {
362         if (len > ((PAGE_SIZE - 1) - s->len))
363                 return 0;
364
365         memcpy(s->buffer + s->len, mem, len);
366         s->len += len;
367
368         return len;
369 }
370
371 #define HEX_CHARS 17
372 static const char hex2asc[] = "0123456789abcdef";
373
374 static int
375 trace_seq_putmem_hex(struct trace_seq *s, void *mem, size_t len)
376 {
377         unsigned char hex[HEX_CHARS];
378         unsigned char *data = mem;
379         unsigned char byte;
380         int i, j;
381
382         BUG_ON(len >= HEX_CHARS);
383
384 #ifdef __BIG_ENDIAN
385         for (i = 0, j = 0; i < len; i++) {
386 #else
387         for (i = len-1, j = 0; i >= 0; i--) {
388 #endif
389                 byte = data[i];
390
391                 hex[j++] = hex2asc[byte & 0x0f];
392                 hex[j++] = hex2asc[byte >> 4];
393         }
394         hex[j++] = ' ';
395
396         return trace_seq_putmem(s, hex, j);
397 }
398
399 static void
400 trace_seq_reset(struct trace_seq *s)
401 {
402         s->len = 0;
403 }
404
405 static void
406 trace_print_seq(struct seq_file *m, struct trace_seq *s)
407 {
408         int len = s->len >= PAGE_SIZE ? PAGE_SIZE - 1 : s->len;
409
410         s->buffer[len] = 0;
411         seq_puts(m, s->buffer);
412
413         trace_seq_reset(s);
414 }
415
416 /*
417  * flip the trace buffers between two trace descriptors.
418  * This usually is the buffers between the global_trace and
419  * the max_tr to record a snapshot of a current trace.
420  *
421  * The ftrace_max_lock must be held.
422  */
423 static void
424 flip_trace(struct trace_array_cpu *tr1, struct trace_array_cpu *tr2)
425 {
426         struct list_head flip_pages;
427
428         INIT_LIST_HEAD(&flip_pages);
429
430         memcpy(&tr1->trace_head_idx, &tr2->trace_head_idx,
431                 sizeof(struct trace_array_cpu) -
432                 offsetof(struct trace_array_cpu, trace_head_idx));
433
434         check_pages(tr1);
435         check_pages(tr2);
436         list_splice_init(&tr1->trace_pages, &flip_pages);
437         list_splice_init(&tr2->trace_pages, &tr1->trace_pages);
438         list_splice_init(&flip_pages, &tr2->trace_pages);
439         BUG_ON(!list_empty(&flip_pages));
440         check_pages(tr1);
441         check_pages(tr2);
442 }
443
444 /**
445  * update_max_tr - snapshot all trace buffers from global_trace to max_tr
446  * @tr: tracer
447  * @tsk: the task with the latency
448  * @cpu: The cpu that initiated the trace.
449  *
450  * Flip the buffers between the @tr and the max_tr and record information
451  * about which task was the cause of this latency.
452  */
453 void
454 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
455 {
456         struct trace_array_cpu *data;
457         int i;
458
459         WARN_ON_ONCE(!irqs_disabled());
460         __raw_spin_lock(&ftrace_max_lock);
461         /* clear out all the previous traces */
462         for_each_tracing_cpu(i) {
463                 data = tr->data[i];
464                 flip_trace(max_tr.data[i], data);
465                 tracing_reset(data);
466         }
467
468         __update_max_tr(tr, tsk, cpu);
469         __raw_spin_unlock(&ftrace_max_lock);
470 }
471
472 /**
473  * update_max_tr_single - only copy one trace over, and reset the rest
474  * @tr - tracer
475  * @tsk - task with the latency
476  * @cpu - the cpu of the buffer to copy.
477  *
478  * Flip the trace of a single CPU buffer between the @tr and the max_tr.
479  */
480 void
481 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
482 {
483         struct trace_array_cpu *data = tr->data[cpu];
484         int i;
485
486         WARN_ON_ONCE(!irqs_disabled());
487         __raw_spin_lock(&ftrace_max_lock);
488         for_each_tracing_cpu(i)
489                 tracing_reset(max_tr.data[i]);
490
491         flip_trace(max_tr.data[cpu], data);
492         tracing_reset(data);
493
494         __update_max_tr(tr, tsk, cpu);
495         __raw_spin_unlock(&ftrace_max_lock);
496 }
497
498 /**
499  * register_tracer - register a tracer with the ftrace system.
500  * @type - the plugin for the tracer
501  *
502  * Register a new plugin tracer.
503  */
504 int register_tracer(struct tracer *type)
505 {
506         struct tracer *t;
507         int len;
508         int ret = 0;
509
510         if (!type->name) {
511                 pr_info("Tracer must have a name\n");
512                 return -1;
513         }
514
515         mutex_lock(&trace_types_lock);
516         for (t = trace_types; t; t = t->next) {
517                 if (strcmp(type->name, t->name) == 0) {
518                         /* already found */
519                         pr_info("Trace %s already registered\n",
520                                 type->name);
521                         ret = -1;
522                         goto out;
523                 }
524         }
525
526 #ifdef CONFIG_FTRACE_STARTUP_TEST
527         if (type->selftest) {
528                 struct tracer *saved_tracer = current_trace;
529                 struct trace_array_cpu *data;
530                 struct trace_array *tr = &global_trace;
531                 int saved_ctrl = tr->ctrl;
532                 int i;
533                 /*
534                  * Run a selftest on this tracer.
535                  * Here we reset the trace buffer, and set the current
536                  * tracer to be this tracer. The tracer can then run some
537                  * internal tracing to verify that everything is in order.
538                  * If we fail, we do not register this tracer.
539                  */
540                 for_each_tracing_cpu(i) {
541                         data = tr->data[i];
542                         if (!head_page(data))
543                                 continue;
544                         tracing_reset(data);
545                 }
546                 current_trace = type;
547                 tr->ctrl = 0;
548                 /* the test is responsible for initializing and enabling */
549                 pr_info("Testing tracer %s: ", type->name);
550                 ret = type->selftest(type, tr);
551                 /* the test is responsible for resetting too */
552                 current_trace = saved_tracer;
553                 tr->ctrl = saved_ctrl;
554                 if (ret) {
555                         printk(KERN_CONT "FAILED!\n");
556                         goto out;
557                 }
558                 /* Only reset on passing, to avoid touching corrupted buffers */
559                 for_each_tracing_cpu(i) {
560                         data = tr->data[i];
561                         if (!head_page(data))
562                                 continue;
563                         tracing_reset(data);
564                 }
565                 printk(KERN_CONT "PASSED\n");
566         }
567 #endif
568
569         type->next = trace_types;
570         trace_types = type;
571         len = strlen(type->name);
572         if (len > max_tracer_type_len)
573                 max_tracer_type_len = len;
574
575  out:
576         mutex_unlock(&trace_types_lock);
577
578         return ret;
579 }
580
581 void unregister_tracer(struct tracer *type)
582 {
583         struct tracer **t;
584         int len;
585
586         mutex_lock(&trace_types_lock);
587         for (t = &trace_types; *t; t = &(*t)->next) {
588                 if (*t == type)
589                         goto found;
590         }
591         pr_info("Trace %s not registered\n", type->name);
592         goto out;
593
594  found:
595         *t = (*t)->next;
596         if (strlen(type->name) != max_tracer_type_len)
597                 goto out;
598
599         max_tracer_type_len = 0;
600         for (t = &trace_types; *t; t = &(*t)->next) {
601                 len = strlen((*t)->name);
602                 if (len > max_tracer_type_len)
603                         max_tracer_type_len = len;
604         }
605  out:
606         mutex_unlock(&trace_types_lock);
607 }
608
609 void tracing_reset(struct trace_array_cpu *data)
610 {
611         data->trace_idx = 0;
612         data->overrun = 0;
613         data->trace_head = data->trace_tail = head_page(data);
614         data->trace_head_idx = 0;
615         data->trace_tail_idx = 0;
616 }
617
618 #define SAVED_CMDLINES 128
619 static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
620 static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
621 static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
622 static int cmdline_idx;
623 static DEFINE_SPINLOCK(trace_cmdline_lock);
624
625 /* trace in all context switches */
626 atomic_t trace_record_cmdline_enabled __read_mostly;
627
628 /* temporary disable recording */
629 atomic_t trace_record_cmdline_disabled __read_mostly;
630
631 static void trace_init_cmdlines(void)
632 {
633         memset(&map_pid_to_cmdline, -1, sizeof(map_pid_to_cmdline));
634         memset(&map_cmdline_to_pid, -1, sizeof(map_cmdline_to_pid));
635         cmdline_idx = 0;
636 }
637
638 void trace_stop_cmdline_recording(void);
639
640 static void trace_save_cmdline(struct task_struct *tsk)
641 {
642         unsigned map;
643         unsigned idx;
644
645         if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
646                 return;
647
648         /*
649          * It's not the end of the world if we don't get
650          * the lock, but we also don't want to spin
651          * nor do we want to disable interrupts,
652          * so if we miss here, then better luck next time.
653          */
654         if (!spin_trylock(&trace_cmdline_lock))
655                 return;
656
657         idx = map_pid_to_cmdline[tsk->pid];
658         if (idx >= SAVED_CMDLINES) {
659                 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
660
661                 map = map_cmdline_to_pid[idx];
662                 if (map <= PID_MAX_DEFAULT)
663                         map_pid_to_cmdline[map] = (unsigned)-1;
664
665                 map_pid_to_cmdline[tsk->pid] = idx;
666
667                 cmdline_idx = idx;
668         }
669
670         memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
671
672         spin_unlock(&trace_cmdline_lock);
673 }
674
675 static char *trace_find_cmdline(int pid)
676 {
677         char *cmdline = "<...>";
678         unsigned map;
679
680         if (!pid)
681                 return "<idle>";
682
683         if (pid > PID_MAX_DEFAULT)
684                 goto out;
685
686         map = map_pid_to_cmdline[pid];
687         if (map >= SAVED_CMDLINES)
688                 goto out;
689
690         cmdline = saved_cmdlines[map];
691
692  out:
693         return cmdline;
694 }
695
696 void tracing_record_cmdline(struct task_struct *tsk)
697 {
698         if (atomic_read(&trace_record_cmdline_disabled))
699                 return;
700
701         trace_save_cmdline(tsk);
702 }
703
704 static inline struct list_head *
705 trace_next_list(struct trace_array_cpu *data, struct list_head *next)
706 {
707         /*
708          * Roundrobin - but skip the head (which is not a real page):
709          */
710         next = next->next;
711         if (unlikely(next == &data->trace_pages))
712                 next = next->next;
713         BUG_ON(next == &data->trace_pages);
714
715         return next;
716 }
717
718 static inline void *
719 trace_next_page(struct trace_array_cpu *data, void *addr)
720 {
721         struct list_head *next;
722         struct page *page;
723
724         page = virt_to_page(addr);
725
726         next = trace_next_list(data, &page->lru);
727         page = list_entry(next, struct page, lru);
728
729         return page_address(page);
730 }
731
732 static inline struct trace_entry *
733 tracing_get_trace_entry(struct trace_array *tr, struct trace_array_cpu *data)
734 {
735         unsigned long idx, idx_next;
736         struct trace_entry *entry;
737
738         data->trace_idx++;
739         idx = data->trace_head_idx;
740         idx_next = idx + 1;
741
742         BUG_ON(idx * TRACE_ENTRY_SIZE >= PAGE_SIZE);
743
744         entry = data->trace_head + idx * TRACE_ENTRY_SIZE;
745
746         if (unlikely(idx_next >= ENTRIES_PER_PAGE)) {
747                 data->trace_head = trace_next_page(data, data->trace_head);
748                 idx_next = 0;
749         }
750
751         if (data->trace_head == data->trace_tail &&
752             idx_next == data->trace_tail_idx) {
753                 /* overrun */
754                 data->overrun++;
755                 data->trace_tail_idx++;
756                 if (data->trace_tail_idx >= ENTRIES_PER_PAGE) {
757                         data->trace_tail =
758                                 trace_next_page(data, data->trace_tail);
759                         data->trace_tail_idx = 0;
760                 }
761         }
762
763         data->trace_head_idx = idx_next;
764
765         return entry;
766 }
767
768 static inline void
769 tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags)
770 {
771         struct task_struct *tsk = current;
772         unsigned long pc;
773
774         pc = preempt_count();
775
776         entry->preempt_count    = pc & 0xff;
777         entry->pid              = (tsk) ? tsk->pid : 0;
778         entry->t                = ftrace_now(raw_smp_processor_id());
779         entry->flags = (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
780                 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
781                 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
782                 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
783 }
784
785 void
786 trace_function(struct trace_array *tr, struct trace_array_cpu *data,
787                unsigned long ip, unsigned long parent_ip, unsigned long flags)
788 {
789         struct trace_entry *entry;
790         unsigned long irq_flags;
791
792         raw_local_irq_save(irq_flags);
793         __raw_spin_lock(&data->lock);
794         entry                   = tracing_get_trace_entry(tr, data);
795         tracing_generic_entry_update(entry, flags);
796         entry->type             = TRACE_FN;
797         entry->fn.ip            = ip;
798         entry->fn.parent_ip     = parent_ip;
799         __raw_spin_unlock(&data->lock);
800         raw_local_irq_restore(irq_flags);
801 }
802
803 void
804 ftrace(struct trace_array *tr, struct trace_array_cpu *data,
805        unsigned long ip, unsigned long parent_ip, unsigned long flags)
806 {
807         if (likely(!atomic_read(&data->disabled)))
808                 trace_function(tr, data, ip, parent_ip, flags);
809 }
810
811 void
812 __trace_special(void *__tr, void *__data,
813                 unsigned long arg1, unsigned long arg2, unsigned long arg3)
814 {
815         struct trace_array_cpu *data = __data;
816         struct trace_array *tr = __tr;
817         struct trace_entry *entry;
818         unsigned long irq_flags;
819
820         raw_local_irq_save(irq_flags);
821         __raw_spin_lock(&data->lock);
822         entry                   = tracing_get_trace_entry(tr, data);
823         tracing_generic_entry_update(entry, 0);
824         entry->type             = TRACE_SPECIAL;
825         entry->special.arg1     = arg1;
826         entry->special.arg2     = arg2;
827         entry->special.arg3     = arg3;
828         __raw_spin_unlock(&data->lock);
829         raw_local_irq_restore(irq_flags);
830
831         trace_wake_up();
832 }
833
834 void __trace_stack(struct trace_array *tr,
835                    struct trace_array_cpu *data,
836                    unsigned long flags,
837                    int skip)
838 {
839         struct trace_entry *entry;
840         struct stack_trace trace;
841
842         if (!(trace_flags & TRACE_ITER_STACKTRACE))
843                 return;
844
845         entry                   = tracing_get_trace_entry(tr, data);
846         tracing_generic_entry_update(entry, flags);
847         entry->type             = TRACE_STACK;
848
849         memset(&entry->stack, 0, sizeof(entry->stack));
850
851         trace.nr_entries        = 0;
852         trace.max_entries       = FTRACE_STACK_ENTRIES;
853         trace.skip              = skip;
854         trace.entries           = entry->stack.caller;
855
856         save_stack_trace(&trace);
857 }
858
859 void
860 tracing_sched_switch_trace(struct trace_array *tr,
861                            struct trace_array_cpu *data,
862                            struct task_struct *prev,
863                            struct task_struct *next,
864                            unsigned long flags)
865 {
866         struct trace_entry *entry;
867         unsigned long irq_flags;
868
869         raw_local_irq_save(irq_flags);
870         __raw_spin_lock(&data->lock);
871         entry                   = tracing_get_trace_entry(tr, data);
872         tracing_generic_entry_update(entry, flags);
873         entry->type             = TRACE_CTX;
874         entry->ctx.prev_pid     = prev->pid;
875         entry->ctx.prev_prio    = prev->prio;
876         entry->ctx.prev_state   = prev->state;
877         entry->ctx.next_pid     = next->pid;
878         entry->ctx.next_prio    = next->prio;
879         entry->ctx.next_state   = next->state;
880         __trace_stack(tr, data, flags, 4);
881         __raw_spin_unlock(&data->lock);
882         raw_local_irq_restore(irq_flags);
883 }
884
885 void
886 tracing_sched_wakeup_trace(struct trace_array *tr,
887                            struct trace_array_cpu *data,
888                            struct task_struct *wakee,
889                            struct task_struct *curr,
890                            unsigned long flags)
891 {
892         struct trace_entry *entry;
893         unsigned long irq_flags;
894
895         raw_local_irq_save(irq_flags);
896         __raw_spin_lock(&data->lock);
897         entry                   = tracing_get_trace_entry(tr, data);
898         tracing_generic_entry_update(entry, flags);
899         entry->type             = TRACE_WAKE;
900         entry->ctx.prev_pid     = curr->pid;
901         entry->ctx.prev_prio    = curr->prio;
902         entry->ctx.prev_state   = curr->state;
903         entry->ctx.next_pid     = wakee->pid;
904         entry->ctx.next_prio    = wakee->prio;
905         entry->ctx.next_state   = wakee->state;
906         __trace_stack(tr, data, flags, 5);
907         __raw_spin_unlock(&data->lock);
908         raw_local_irq_restore(irq_flags);
909
910         trace_wake_up();
911 }
912
913 #ifdef CONFIG_FTRACE
914 static void
915 function_trace_call(unsigned long ip, unsigned long parent_ip)
916 {
917         struct trace_array *tr = &global_trace;
918         struct trace_array_cpu *data;
919         unsigned long flags;
920         long disabled;
921         int cpu;
922
923         if (unlikely(!tracer_enabled))
924                 return;
925
926         local_irq_save(flags);
927         cpu = raw_smp_processor_id();
928         data = tr->data[cpu];
929         disabled = atomic_inc_return(&data->disabled);
930
931         if (likely(disabled == 1))
932                 trace_function(tr, data, ip, parent_ip, flags);
933
934         atomic_dec(&data->disabled);
935         local_irq_restore(flags);
936 }
937
938 static struct ftrace_ops trace_ops __read_mostly =
939 {
940         .func = function_trace_call,
941 };
942
943 void tracing_start_function_trace(void)
944 {
945         register_ftrace_function(&trace_ops);
946 }
947
948 void tracing_stop_function_trace(void)
949 {
950         unregister_ftrace_function(&trace_ops);
951 }
952 #endif
953
954 enum trace_file_type {
955         TRACE_FILE_LAT_FMT      = 1,
956 };
957
958 static struct trace_entry *
959 trace_entry_idx(struct trace_array *tr, struct trace_array_cpu *data,
960                 struct trace_iterator *iter, int cpu)
961 {
962         struct page *page;
963         struct trace_entry *array;
964
965         if (iter->next_idx[cpu] >= tr->entries ||
966             iter->next_idx[cpu] >= data->trace_idx ||
967             (data->trace_head == data->trace_tail &&
968              data->trace_head_idx == data->trace_tail_idx))
969                 return NULL;
970
971         if (!iter->next_page[cpu]) {
972                 /* Initialize the iterator for this cpu trace buffer */
973                 WARN_ON(!data->trace_tail);
974                 page = virt_to_page(data->trace_tail);
975                 iter->next_page[cpu] = &page->lru;
976                 iter->next_page_idx[cpu] = data->trace_tail_idx;
977         }
978
979         page = list_entry(iter->next_page[cpu], struct page, lru);
980         BUG_ON(&data->trace_pages == &page->lru);
981
982         array = page_address(page);
983
984         WARN_ON(iter->next_page_idx[cpu] >= ENTRIES_PER_PAGE);
985         return &array[iter->next_page_idx[cpu]];
986 }
987
988 static struct trace_entry *
989 find_next_entry(struct trace_iterator *iter, int *ent_cpu)
990 {
991         struct trace_array *tr = iter->tr;
992         struct trace_entry *ent, *next = NULL;
993         int next_cpu = -1;
994         int cpu;
995
996         for_each_tracing_cpu(cpu) {
997                 if (!head_page(tr->data[cpu]))
998                         continue;
999                 ent = trace_entry_idx(tr, tr->data[cpu], iter, cpu);
1000                 /*
1001                  * Pick the entry with the smallest timestamp:
1002                  */
1003                 if (ent && (!next || ent->t < next->t)) {
1004                         next = ent;
1005                         next_cpu = cpu;
1006                 }
1007         }
1008
1009         if (ent_cpu)
1010                 *ent_cpu = next_cpu;
1011
1012         return next;
1013 }
1014
1015 static void trace_iterator_increment(struct trace_iterator *iter)
1016 {
1017         iter->idx++;
1018         iter->next_idx[iter->cpu]++;
1019         iter->next_page_idx[iter->cpu]++;
1020
1021         if (iter->next_page_idx[iter->cpu] >= ENTRIES_PER_PAGE) {
1022                 struct trace_array_cpu *data = iter->tr->data[iter->cpu];
1023
1024                 iter->next_page_idx[iter->cpu] = 0;
1025                 iter->next_page[iter->cpu] =
1026                         trace_next_list(data, iter->next_page[iter->cpu]);
1027         }
1028 }
1029
1030 static void trace_consume(struct trace_iterator *iter)
1031 {
1032         struct trace_array_cpu *data = iter->tr->data[iter->cpu];
1033
1034         data->trace_tail_idx++;
1035         if (data->trace_tail_idx >= ENTRIES_PER_PAGE) {
1036                 data->trace_tail = trace_next_page(data, data->trace_tail);
1037                 data->trace_tail_idx = 0;
1038         }
1039
1040         /* Check if we empty it, then reset the index */
1041         if (data->trace_head == data->trace_tail &&
1042             data->trace_head_idx == data->trace_tail_idx)
1043                 data->trace_idx = 0;
1044 }
1045
1046 static void *find_next_entry_inc(struct trace_iterator *iter)
1047 {
1048         struct trace_entry *next;
1049         int next_cpu = -1;
1050
1051         next = find_next_entry(iter, &next_cpu);
1052
1053         iter->prev_ent = iter->ent;
1054         iter->prev_cpu = iter->cpu;
1055
1056         iter->ent = next;
1057         iter->cpu = next_cpu;
1058
1059         if (next)
1060                 trace_iterator_increment(iter);
1061
1062         return next ? iter : NULL;
1063 }
1064
1065 static void *s_next(struct seq_file *m, void *v, loff_t *pos)
1066 {
1067         struct trace_iterator *iter = m->private;
1068         void *last_ent = iter->ent;
1069         int i = (int)*pos;
1070         void *ent;
1071
1072         (*pos)++;
1073
1074         /* can't go backwards */
1075         if (iter->idx > i)
1076                 return NULL;
1077
1078         if (iter->idx < 0)
1079                 ent = find_next_entry_inc(iter);
1080         else
1081                 ent = iter;
1082
1083         while (ent && iter->idx < i)
1084                 ent = find_next_entry_inc(iter);
1085
1086         iter->pos = *pos;
1087
1088         if (last_ent && !ent)
1089                 seq_puts(m, "\n\nvim:ft=help\n");
1090
1091         return ent;
1092 }
1093
1094 static void *s_start(struct seq_file *m, loff_t *pos)
1095 {
1096         struct trace_iterator *iter = m->private;
1097         void *p = NULL;
1098         loff_t l = 0;
1099         int i;
1100
1101         mutex_lock(&trace_types_lock);
1102
1103         if (!current_trace || current_trace != iter->trace) {
1104                 mutex_unlock(&trace_types_lock);
1105                 return NULL;
1106         }
1107
1108         atomic_inc(&trace_record_cmdline_disabled);
1109
1110         /* let the tracer grab locks here if needed */
1111         if (current_trace->start)
1112                 current_trace->start(iter);
1113
1114         if (*pos != iter->pos) {
1115                 iter->ent = NULL;
1116                 iter->cpu = 0;
1117                 iter->idx = -1;
1118                 iter->prev_ent = NULL;
1119                 iter->prev_cpu = -1;
1120
1121                 for_each_tracing_cpu(i) {
1122                         iter->next_idx[i] = 0;
1123                         iter->next_page[i] = NULL;
1124                 }
1125
1126                 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1127                         ;
1128
1129         } else {
1130                 l = *pos - 1;
1131                 p = s_next(m, p, &l);
1132         }
1133
1134         return p;
1135 }
1136
1137 static void s_stop(struct seq_file *m, void *p)
1138 {
1139         struct trace_iterator *iter = m->private;
1140
1141         atomic_dec(&trace_record_cmdline_disabled);
1142
1143         /* let the tracer release locks here if needed */
1144         if (current_trace && current_trace == iter->trace && iter->trace->stop)
1145                 iter->trace->stop(iter);
1146
1147         mutex_unlock(&trace_types_lock);
1148 }
1149
1150 static int
1151 seq_print_sym_short(struct trace_seq *s, const char *fmt, unsigned long address)
1152 {
1153 #ifdef CONFIG_KALLSYMS
1154         char str[KSYM_SYMBOL_LEN];
1155
1156         kallsyms_lookup(address, NULL, NULL, NULL, str);
1157
1158         return trace_seq_printf(s, fmt, str);
1159 #endif
1160         return 1;
1161 }
1162
1163 static int
1164 seq_print_sym_offset(struct trace_seq *s, const char *fmt,
1165                      unsigned long address)
1166 {
1167 #ifdef CONFIG_KALLSYMS
1168         char str[KSYM_SYMBOL_LEN];
1169
1170         sprint_symbol(str, address);
1171         return trace_seq_printf(s, fmt, str);
1172 #endif
1173         return 1;
1174 }
1175
1176 #ifndef CONFIG_64BIT
1177 # define IP_FMT "%08lx"
1178 #else
1179 # define IP_FMT "%016lx"
1180 #endif
1181
1182 static int
1183 seq_print_ip_sym(struct trace_seq *s, unsigned long ip, unsigned long sym_flags)
1184 {
1185         int ret;
1186
1187         if (!ip)
1188                 return trace_seq_printf(s, "0");
1189
1190         if (sym_flags & TRACE_ITER_SYM_OFFSET)
1191                 ret = seq_print_sym_offset(s, "%s", ip);
1192         else
1193                 ret = seq_print_sym_short(s, "%s", ip);
1194
1195         if (!ret)
1196                 return 0;
1197
1198         if (sym_flags & TRACE_ITER_SYM_ADDR)
1199                 ret = trace_seq_printf(s, " <" IP_FMT ">", ip);
1200         return ret;
1201 }
1202
1203 static void print_lat_help_header(struct seq_file *m)
1204 {
1205         seq_puts(m, "#                _------=> CPU#            \n");
1206         seq_puts(m, "#               / _-----=> irqs-off        \n");
1207         seq_puts(m, "#              | / _----=> need-resched    \n");
1208         seq_puts(m, "#              || / _---=> hardirq/softirq \n");
1209         seq_puts(m, "#              ||| / _--=> preempt-depth   \n");
1210         seq_puts(m, "#              |||| /                      \n");
1211         seq_puts(m, "#              |||||     delay             \n");
1212         seq_puts(m, "#  cmd     pid ||||| time  |   caller      \n");
1213         seq_puts(m, "#     \\   /    |||||   \\   |   /           \n");
1214 }
1215
1216 static void print_func_help_header(struct seq_file *m)
1217 {
1218         seq_puts(m, "#           TASK-PID   CPU#    TIMESTAMP  FUNCTION\n");
1219         seq_puts(m, "#              | |      |          |         |\n");
1220 }
1221
1222
1223 static void
1224 print_trace_header(struct seq_file *m, struct trace_iterator *iter)
1225 {
1226         unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1227         struct trace_array *tr = iter->tr;
1228         struct trace_array_cpu *data = tr->data[tr->cpu];
1229         struct tracer *type = current_trace;
1230         unsigned long total   = 0;
1231         unsigned long entries = 0;
1232         int cpu;
1233         const char *name = "preemption";
1234
1235         if (type)
1236                 name = type->name;
1237
1238         for_each_tracing_cpu(cpu) {
1239                 if (head_page(tr->data[cpu])) {
1240                         total += tr->data[cpu]->trace_idx;
1241                         if (tr->data[cpu]->trace_idx > tr->entries)
1242                                 entries += tr->entries;
1243                         else
1244                                 entries += tr->data[cpu]->trace_idx;
1245                 }
1246         }
1247
1248         seq_printf(m, "%s latency trace v1.1.5 on %s\n",
1249                    name, UTS_RELEASE);
1250         seq_puts(m, "-----------------------------------"
1251                  "---------------------------------\n");
1252         seq_printf(m, " latency: %lu us, #%lu/%lu, CPU#%d |"
1253                    " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
1254                    nsecs_to_usecs(data->saved_latency),
1255                    entries,
1256                    total,
1257                    tr->cpu,
1258 #if defined(CONFIG_PREEMPT_NONE)
1259                    "server",
1260 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
1261                    "desktop",
1262 #elif defined(CONFIG_PREEMPT_DESKTOP)
1263                    "preempt",
1264 #else
1265                    "unknown",
1266 #endif
1267                    /* These are reserved for later use */
1268                    0, 0, 0, 0);
1269 #ifdef CONFIG_SMP
1270         seq_printf(m, " #P:%d)\n", num_online_cpus());
1271 #else
1272         seq_puts(m, ")\n");
1273 #endif
1274         seq_puts(m, "    -----------------\n");
1275         seq_printf(m, "    | task: %.16s-%d "
1276                    "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1277                    data->comm, data->pid, data->uid, data->nice,
1278                    data->policy, data->rt_priority);
1279         seq_puts(m, "    -----------------\n");
1280
1281         if (data->critical_start) {
1282                 seq_puts(m, " => started at: ");
1283                 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
1284                 trace_print_seq(m, &iter->seq);
1285                 seq_puts(m, "\n => ended at:   ");
1286                 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
1287                 trace_print_seq(m, &iter->seq);
1288                 seq_puts(m, "\n");
1289         }
1290
1291         seq_puts(m, "\n");
1292 }
1293
1294 static void
1295 lat_print_generic(struct trace_seq *s, struct trace_entry *entry, int cpu)
1296 {
1297         int hardirq, softirq;
1298         char *comm;
1299
1300         comm = trace_find_cmdline(entry->pid);
1301
1302         trace_seq_printf(s, "%8.8s-%-5d ", comm, entry->pid);
1303         trace_seq_printf(s, "%d", cpu);
1304         trace_seq_printf(s, "%c%c",
1305                         (entry->flags & TRACE_FLAG_IRQS_OFF) ? 'd' : '.',
1306                         ((entry->flags & TRACE_FLAG_NEED_RESCHED) ? 'N' : '.'));
1307
1308         hardirq = entry->flags & TRACE_FLAG_HARDIRQ;
1309         softirq = entry->flags & TRACE_FLAG_SOFTIRQ;
1310         if (hardirq && softirq) {
1311                 trace_seq_putc(s, 'H');
1312         } else {
1313                 if (hardirq) {
1314                         trace_seq_putc(s, 'h');
1315                 } else {
1316                         if (softirq)
1317                                 trace_seq_putc(s, 's');
1318                         else
1319                                 trace_seq_putc(s, '.');
1320                 }
1321         }
1322
1323         if (entry->preempt_count)
1324                 trace_seq_printf(s, "%x", entry->preempt_count);
1325         else
1326                 trace_seq_puts(s, ".");
1327 }
1328
1329 unsigned long preempt_mark_thresh = 100;
1330
1331 static void
1332 lat_print_timestamp(struct trace_seq *s, unsigned long long abs_usecs,
1333                     unsigned long rel_usecs)
1334 {
1335         trace_seq_printf(s, " %4lldus", abs_usecs);
1336         if (rel_usecs > preempt_mark_thresh)
1337                 trace_seq_puts(s, "!: ");
1338         else if (rel_usecs > 1)
1339                 trace_seq_puts(s, "+: ");
1340         else
1341                 trace_seq_puts(s, " : ");
1342 }
1343
1344 static const char state_to_char[] = TASK_STATE_TO_CHAR_STR;
1345
1346 static int
1347 print_lat_fmt(struct trace_iterator *iter, unsigned int trace_idx, int cpu)
1348 {
1349         struct trace_seq *s = &iter->seq;
1350         unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1351         struct trace_entry *next_entry = find_next_entry(iter, NULL);
1352         unsigned long verbose = (trace_flags & TRACE_ITER_VERBOSE);
1353         struct trace_entry *entry = iter->ent;
1354         unsigned long abs_usecs;
1355         unsigned long rel_usecs;
1356         char *comm;
1357         int S, T;
1358         int i;
1359         unsigned state;
1360
1361         if (!next_entry)
1362                 next_entry = entry;
1363         rel_usecs = ns2usecs(next_entry->t - entry->t);
1364         abs_usecs = ns2usecs(entry->t - iter->tr->time_start);
1365
1366         if (verbose) {
1367                 comm = trace_find_cmdline(entry->pid);
1368                 trace_seq_printf(s, "%16s %5d %d %d %08x %08x [%08lx]"
1369                                  " %ld.%03ldms (+%ld.%03ldms): ",
1370                                  comm,
1371                                  entry->pid, cpu, entry->flags,
1372                                  entry->preempt_count, trace_idx,
1373                                  ns2usecs(entry->t),
1374                                  abs_usecs/1000,
1375                                  abs_usecs % 1000, rel_usecs/1000,
1376                                  rel_usecs % 1000);
1377         } else {
1378                 lat_print_generic(s, entry, cpu);
1379                 lat_print_timestamp(s, abs_usecs, rel_usecs);
1380         }
1381         switch (entry->type) {
1382         case TRACE_FN:
1383                 seq_print_ip_sym(s, entry->fn.ip, sym_flags);
1384                 trace_seq_puts(s, " (");
1385                 seq_print_ip_sym(s, entry->fn.parent_ip, sym_flags);
1386                 trace_seq_puts(s, ")\n");
1387                 break;
1388         case TRACE_CTX:
1389         case TRACE_WAKE:
1390                 T = entry->ctx.next_state < sizeof(state_to_char) ?
1391                         state_to_char[entry->ctx.next_state] : 'X';
1392
1393                 state = entry->ctx.prev_state ? __ffs(entry->ctx.prev_state) + 1 : 0;
1394                 S = state < sizeof(state_to_char) - 1 ? state_to_char[state] : 'X';
1395                 comm = trace_find_cmdline(entry->ctx.next_pid);
1396                 trace_seq_printf(s, " %5d:%3d:%c %s %5d:%3d:%c %s\n",
1397                                  entry->ctx.prev_pid,
1398                                  entry->ctx.prev_prio,
1399                                  S, entry->type == TRACE_CTX ? "==>" : "  +",
1400                                  entry->ctx.next_pid,
1401                                  entry->ctx.next_prio,
1402                                  T, comm);
1403                 break;
1404         case TRACE_SPECIAL:
1405                 trace_seq_printf(s, "# %ld %ld %ld\n",
1406                                  entry->special.arg1,
1407                                  entry->special.arg2,
1408                                  entry->special.arg3);
1409                 break;
1410         case TRACE_STACK:
1411                 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1412                         if (i)
1413                                 trace_seq_puts(s, " <= ");
1414                         seq_print_ip_sym(s, entry->stack.caller[i], sym_flags);
1415                 }
1416                 trace_seq_puts(s, "\n");
1417                 break;
1418         default:
1419                 trace_seq_printf(s, "Unknown type %d\n", entry->type);
1420         }
1421         return 1;
1422 }
1423
1424 static int print_trace_fmt(struct trace_iterator *iter)
1425 {
1426         struct trace_seq *s = &iter->seq;
1427         unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1428         struct trace_entry *entry;
1429         unsigned long usec_rem;
1430         unsigned long long t;
1431         unsigned long secs;
1432         char *comm;
1433         int ret;
1434         int S, T;
1435         int i;
1436
1437         entry = iter->ent;
1438
1439         comm = trace_find_cmdline(iter->ent->pid);
1440
1441         t = ns2usecs(entry->t);
1442         usec_rem = do_div(t, 1000000ULL);
1443         secs = (unsigned long)t;
1444
1445         ret = trace_seq_printf(s, "%16s-%-5d ", comm, entry->pid);
1446         if (!ret)
1447                 return 0;
1448         ret = trace_seq_printf(s, "[%02d] ", iter->cpu);
1449         if (!ret)
1450                 return 0;
1451         ret = trace_seq_printf(s, "%5lu.%06lu: ", secs, usec_rem);
1452         if (!ret)
1453                 return 0;
1454
1455         switch (entry->type) {
1456         case TRACE_FN:
1457                 ret = seq_print_ip_sym(s, entry->fn.ip, sym_flags);
1458                 if (!ret)
1459                         return 0;
1460                 if ((sym_flags & TRACE_ITER_PRINT_PARENT) &&
1461                                                 entry->fn.parent_ip) {
1462                         ret = trace_seq_printf(s, " <-");
1463                         if (!ret)
1464                                 return 0;
1465                         ret = seq_print_ip_sym(s, entry->fn.parent_ip,
1466                                                sym_flags);
1467                         if (!ret)
1468                                 return 0;
1469                 }
1470                 ret = trace_seq_printf(s, "\n");
1471                 if (!ret)
1472                         return 0;
1473                 break;
1474         case TRACE_CTX:
1475         case TRACE_WAKE:
1476                 S = entry->ctx.prev_state < sizeof(state_to_char) ?
1477                         state_to_char[entry->ctx.prev_state] : 'X';
1478                 T = entry->ctx.next_state < sizeof(state_to_char) ?
1479                         state_to_char[entry->ctx.next_state] : 'X';
1480                 ret = trace_seq_printf(s, " %5d:%3d:%c %s %5d:%3d:%c\n",
1481                                        entry->ctx.prev_pid,
1482                                        entry->ctx.prev_prio,
1483                                        S,
1484                                        entry->type == TRACE_CTX ? "==>" : "  +",
1485                                        entry->ctx.next_pid,
1486                                        entry->ctx.next_prio,
1487                                        T);
1488                 if (!ret)
1489                         return 0;
1490                 break;
1491         case TRACE_SPECIAL:
1492                 ret = trace_seq_printf(s, "# %ld %ld %ld\n",
1493                                  entry->special.arg1,
1494                                  entry->special.arg2,
1495                                  entry->special.arg3);
1496                 if (!ret)
1497                         return 0;
1498                 break;
1499         case TRACE_STACK:
1500                 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1501                         if (i) {
1502                                 ret = trace_seq_puts(s, " <= ");
1503                                 if (!ret)
1504                                         return 0;
1505                         }
1506                         ret = seq_print_ip_sym(s, entry->stack.caller[i],
1507                                                sym_flags);
1508                         if (!ret)
1509                                 return 0;
1510                 }
1511                 ret = trace_seq_puts(s, "\n");
1512                 if (!ret)
1513                         return 0;
1514                 break;
1515         }
1516         return 1;
1517 }
1518
1519 static int print_raw_fmt(struct trace_iterator *iter)
1520 {
1521         struct trace_seq *s = &iter->seq;
1522         struct trace_entry *entry;
1523         int ret;
1524         int S, T;
1525
1526         entry = iter->ent;
1527
1528         ret = trace_seq_printf(s, "%d %d %llu ",
1529                 entry->pid, iter->cpu, entry->t);
1530         if (!ret)
1531                 return 0;
1532
1533         switch (entry->type) {
1534         case TRACE_FN:
1535                 ret = trace_seq_printf(s, "%x %x\n",
1536                                         entry->fn.ip, entry->fn.parent_ip);
1537                 if (!ret)
1538                         return 0;
1539                 break;
1540         case TRACE_CTX:
1541         case TRACE_WAKE:
1542                 S = entry->ctx.prev_state < sizeof(state_to_char) ?
1543                         state_to_char[entry->ctx.prev_state] : 'X';
1544                 T = entry->ctx.next_state < sizeof(state_to_char) ?
1545                         state_to_char[entry->ctx.next_state] : 'X';
1546                 if (entry->type == TRACE_WAKE)
1547                         S = '+';
1548                 ret = trace_seq_printf(s, "%d %d %c %d %d %c\n",
1549                                        entry->ctx.prev_pid,
1550                                        entry->ctx.prev_prio,
1551                                        S,
1552                                        entry->ctx.next_pid,
1553                                        entry->ctx.next_prio,
1554                                        T);
1555                 if (!ret)
1556                         return 0;
1557                 break;
1558         case TRACE_SPECIAL:
1559         case TRACE_STACK:
1560                 ret = trace_seq_printf(s, "# %ld %ld %ld\n",
1561                                  entry->special.arg1,
1562                                  entry->special.arg2,
1563                                  entry->special.arg3);
1564                 if (!ret)
1565                         return 0;
1566                 break;
1567         }
1568         return 1;
1569 }
1570
1571 #define SEQ_PUT_FIELD_RET(s, x)                         \
1572 do {                                                    \
1573         if (!trace_seq_putmem(s, &(x), sizeof(x)))      \
1574                 return 0;                               \
1575 } while (0)
1576
1577 #define SEQ_PUT_HEX_FIELD_RET(s, x)                     \
1578 do {                                                    \
1579         if (!trace_seq_putmem_hex(s, &(x), sizeof(x)))  \
1580                 return 0;                               \
1581 } while (0)
1582
1583 static int print_hex_fmt(struct trace_iterator *iter)
1584 {
1585         struct trace_seq *s = &iter->seq;
1586         unsigned char newline = '\n';
1587         struct trace_entry *entry;
1588         int S, T;
1589
1590         entry = iter->ent;
1591
1592         SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
1593         SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
1594         SEQ_PUT_HEX_FIELD_RET(s, entry->t);
1595
1596         switch (entry->type) {
1597         case TRACE_FN:
1598                 SEQ_PUT_HEX_FIELD_RET(s, entry->fn.ip);
1599                 SEQ_PUT_HEX_FIELD_RET(s, entry->fn.parent_ip);
1600                 break;
1601         case TRACE_CTX:
1602         case TRACE_WAKE:
1603                 S = entry->ctx.prev_state < sizeof(state_to_char) ?
1604                         state_to_char[entry->ctx.prev_state] : 'X';
1605                 T = entry->ctx.next_state < sizeof(state_to_char) ?
1606                         state_to_char[entry->ctx.next_state] : 'X';
1607                 if (entry->type == TRACE_WAKE)
1608                         S = '+';
1609                 SEQ_PUT_HEX_FIELD_RET(s, entry->ctx.prev_pid);
1610                 SEQ_PUT_HEX_FIELD_RET(s, entry->ctx.prev_prio);
1611                 SEQ_PUT_HEX_FIELD_RET(s, S);
1612                 SEQ_PUT_HEX_FIELD_RET(s, entry->ctx.next_pid);
1613                 SEQ_PUT_HEX_FIELD_RET(s, entry->ctx.next_prio);
1614                 SEQ_PUT_HEX_FIELD_RET(s, entry->fn.parent_ip);
1615                 SEQ_PUT_HEX_FIELD_RET(s, T);
1616                 break;
1617         case TRACE_SPECIAL:
1618         case TRACE_STACK:
1619                 SEQ_PUT_HEX_FIELD_RET(s, entry->special.arg1);
1620                 SEQ_PUT_HEX_FIELD_RET(s, entry->special.arg2);
1621                 SEQ_PUT_HEX_FIELD_RET(s, entry->special.arg3);
1622                 break;
1623         }
1624         SEQ_PUT_FIELD_RET(s, newline);
1625
1626         return 1;
1627 }
1628
1629 static int print_bin_fmt(struct trace_iterator *iter)
1630 {
1631         struct trace_seq *s = &iter->seq;
1632         struct trace_entry *entry;
1633
1634         entry = iter->ent;
1635
1636         SEQ_PUT_FIELD_RET(s, entry->pid);
1637         SEQ_PUT_FIELD_RET(s, entry->cpu);
1638         SEQ_PUT_FIELD_RET(s, entry->t);
1639
1640         switch (entry->type) {
1641         case TRACE_FN:
1642                 SEQ_PUT_FIELD_RET(s, entry->fn.ip);
1643                 SEQ_PUT_FIELD_RET(s, entry->fn.parent_ip);
1644                 break;
1645         case TRACE_CTX:
1646                 SEQ_PUT_FIELD_RET(s, entry->ctx.prev_pid);
1647                 SEQ_PUT_FIELD_RET(s, entry->ctx.prev_prio);
1648                 SEQ_PUT_FIELD_RET(s, entry->ctx.prev_state);
1649                 SEQ_PUT_FIELD_RET(s, entry->ctx.next_pid);
1650                 SEQ_PUT_FIELD_RET(s, entry->ctx.next_prio);
1651                 SEQ_PUT_FIELD_RET(s, entry->ctx.next_state);
1652                 break;
1653         case TRACE_SPECIAL:
1654         case TRACE_STACK:
1655                 SEQ_PUT_FIELD_RET(s, entry->special.arg1);
1656                 SEQ_PUT_FIELD_RET(s, entry->special.arg2);
1657                 SEQ_PUT_FIELD_RET(s, entry->special.arg3);
1658                 break;
1659         }
1660         return 1;
1661 }
1662
1663 static int trace_empty(struct trace_iterator *iter)
1664 {
1665         struct trace_array_cpu *data;
1666         int cpu;
1667
1668         for_each_tracing_cpu(cpu) {
1669                 data = iter->tr->data[cpu];
1670
1671                 if (head_page(data) && data->trace_idx &&
1672                     (data->trace_tail != data->trace_head ||
1673                      data->trace_tail_idx != data->trace_head_idx))
1674                         return 0;
1675         }
1676         return 1;
1677 }
1678
1679 static int print_trace_line(struct trace_iterator *iter)
1680 {
1681         if (iter->trace && iter->trace->print_line)
1682                 return iter->trace->print_line(iter);
1683
1684         if (trace_flags & TRACE_ITER_BIN)
1685                 return print_bin_fmt(iter);
1686
1687         if (trace_flags & TRACE_ITER_HEX)
1688                 return print_hex_fmt(iter);
1689
1690         if (trace_flags & TRACE_ITER_RAW)
1691                 return print_raw_fmt(iter);
1692
1693         if (iter->iter_flags & TRACE_FILE_LAT_FMT)
1694                 return print_lat_fmt(iter, iter->idx, iter->cpu);
1695
1696         return print_trace_fmt(iter);
1697 }
1698
1699 static int s_show(struct seq_file *m, void *v)
1700 {
1701         struct trace_iterator *iter = v;
1702
1703         if (iter->ent == NULL) {
1704                 if (iter->tr) {
1705                         seq_printf(m, "# tracer: %s\n", iter->trace->name);
1706                         seq_puts(m, "#\n");
1707                 }
1708                 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
1709                         /* print nothing if the buffers are empty */
1710                         if (trace_empty(iter))
1711                                 return 0;
1712                         print_trace_header(m, iter);
1713                         if (!(trace_flags & TRACE_ITER_VERBOSE))
1714                                 print_lat_help_header(m);
1715                 } else {
1716                         if (!(trace_flags & TRACE_ITER_VERBOSE))
1717                                 print_func_help_header(m);
1718                 }
1719         } else {
1720                 print_trace_line(iter);
1721                 trace_print_seq(m, &iter->seq);
1722         }
1723
1724         return 0;
1725 }
1726
1727 static struct seq_operations tracer_seq_ops = {
1728         .start          = s_start,
1729         .next           = s_next,
1730         .stop           = s_stop,
1731         .show           = s_show,
1732 };
1733
1734 static struct trace_iterator *
1735 __tracing_open(struct inode *inode, struct file *file, int *ret)
1736 {
1737         struct trace_iterator *iter;
1738
1739         if (tracing_disabled) {
1740                 *ret = -ENODEV;
1741                 return NULL;
1742         }
1743
1744         iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1745         if (!iter) {
1746                 *ret = -ENOMEM;
1747                 goto out;
1748         }
1749
1750         mutex_lock(&trace_types_lock);
1751         if (current_trace && current_trace->print_max)
1752                 iter->tr = &max_tr;
1753         else
1754                 iter->tr = inode->i_private;
1755         iter->trace = current_trace;
1756         iter->pos = -1;
1757
1758         /* TODO stop tracer */
1759         *ret = seq_open(file, &tracer_seq_ops);
1760         if (!*ret) {
1761                 struct seq_file *m = file->private_data;
1762                 m->private = iter;
1763
1764                 /* stop the trace while dumping */
1765                 if (iter->tr->ctrl)
1766                         tracer_enabled = 0;
1767
1768                 if (iter->trace && iter->trace->open)
1769                         iter->trace->open(iter);
1770         } else {
1771                 kfree(iter);
1772                 iter = NULL;
1773         }
1774         mutex_unlock(&trace_types_lock);
1775
1776  out:
1777         return iter;
1778 }
1779
1780 int tracing_open_generic(struct inode *inode, struct file *filp)
1781 {
1782         if (tracing_disabled)
1783                 return -ENODEV;
1784
1785         filp->private_data = inode->i_private;
1786         return 0;
1787 }
1788
1789 int tracing_release(struct inode *inode, struct file *file)
1790 {
1791         struct seq_file *m = (struct seq_file *)file->private_data;
1792         struct trace_iterator *iter = m->private;
1793
1794         mutex_lock(&trace_types_lock);
1795         if (iter->trace && iter->trace->close)
1796                 iter->trace->close(iter);
1797
1798         /* reenable tracing if it was previously enabled */
1799         if (iter->tr->ctrl)
1800                 tracer_enabled = 1;
1801         mutex_unlock(&trace_types_lock);
1802
1803         seq_release(inode, file);
1804         kfree(iter);
1805         return 0;
1806 }
1807
1808 static int tracing_open(struct inode *inode, struct file *file)
1809 {
1810         int ret;
1811
1812         __tracing_open(inode, file, &ret);
1813
1814         return ret;
1815 }
1816
1817 static int tracing_lt_open(struct inode *inode, struct file *file)
1818 {
1819         struct trace_iterator *iter;
1820         int ret;
1821
1822         iter = __tracing_open(inode, file, &ret);
1823
1824         if (!ret)
1825                 iter->iter_flags |= TRACE_FILE_LAT_FMT;
1826
1827         return ret;
1828 }
1829
1830
1831 static void *
1832 t_next(struct seq_file *m, void *v, loff_t *pos)
1833 {
1834         struct tracer *t = m->private;
1835
1836         (*pos)++;
1837
1838         if (t)
1839                 t = t->next;
1840
1841         m->private = t;
1842
1843         return t;
1844 }
1845
1846 static void *t_start(struct seq_file *m, loff_t *pos)
1847 {
1848         struct tracer *t = m->private;
1849         loff_t l = 0;
1850
1851         mutex_lock(&trace_types_lock);
1852         for (; t && l < *pos; t = t_next(m, t, &l))
1853                 ;
1854
1855         return t;
1856 }
1857
1858 static void t_stop(struct seq_file *m, void *p)
1859 {
1860         mutex_unlock(&trace_types_lock);
1861 }
1862
1863 static int t_show(struct seq_file *m, void *v)
1864 {
1865         struct tracer *t = v;
1866
1867         if (!t)
1868                 return 0;
1869
1870         seq_printf(m, "%s", t->name);
1871         if (t->next)
1872                 seq_putc(m, ' ');
1873         else
1874                 seq_putc(m, '\n');
1875
1876         return 0;
1877 }
1878
1879 static struct seq_operations show_traces_seq_ops = {
1880         .start          = t_start,
1881         .next           = t_next,
1882         .stop           = t_stop,
1883         .show           = t_show,
1884 };
1885
1886 static int show_traces_open(struct inode *inode, struct file *file)
1887 {
1888         int ret;
1889
1890         if (tracing_disabled)
1891                 return -ENODEV;
1892
1893         ret = seq_open(file, &show_traces_seq_ops);
1894         if (!ret) {
1895                 struct seq_file *m = file->private_data;
1896                 m->private = trace_types;
1897         }
1898
1899         return ret;
1900 }
1901
1902 static struct file_operations tracing_fops = {
1903         .open           = tracing_open,
1904         .read           = seq_read,
1905         .llseek         = seq_lseek,
1906         .release        = tracing_release,
1907 };
1908
1909 static struct file_operations tracing_lt_fops = {
1910         .open           = tracing_lt_open,
1911         .read           = seq_read,
1912         .llseek         = seq_lseek,
1913         .release        = tracing_release,
1914 };
1915
1916 static struct file_operations show_traces_fops = {
1917         .open           = show_traces_open,
1918         .read           = seq_read,
1919         .release        = seq_release,
1920 };
1921
1922 /*
1923  * Only trace on a CPU if the bitmask is set:
1924  */
1925 static cpumask_t tracing_cpumask = CPU_MASK_ALL;
1926
1927 /*
1928  * When tracing/tracing_cpu_mask is modified then this holds
1929  * the new bitmask we are about to install:
1930  */
1931 static cpumask_t tracing_cpumask_new;
1932
1933 /*
1934  * The tracer itself will not take this lock, but still we want
1935  * to provide a consistent cpumask to user-space:
1936  */
1937 static DEFINE_MUTEX(tracing_cpumask_update_lock);
1938
1939 /*
1940  * Temporary storage for the character representation of the
1941  * CPU bitmask (and one more byte for the newline):
1942  */
1943 static char mask_str[NR_CPUS + 1];
1944
1945 static ssize_t
1946 tracing_cpumask_read(struct file *filp, char __user *ubuf,
1947                      size_t count, loff_t *ppos)
1948 {
1949         int len;
1950
1951         mutex_lock(&tracing_cpumask_update_lock);
1952
1953         len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
1954         if (count - len < 2) {
1955                 count = -EINVAL;
1956                 goto out_err;
1957         }
1958         len += sprintf(mask_str + len, "\n");
1959         count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
1960
1961 out_err:
1962         mutex_unlock(&tracing_cpumask_update_lock);
1963
1964         return count;
1965 }
1966
1967 static ssize_t
1968 tracing_cpumask_write(struct file *filp, const char __user *ubuf,
1969                       size_t count, loff_t *ppos)
1970 {
1971         int err, cpu;
1972
1973         mutex_lock(&tracing_cpumask_update_lock);
1974         err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
1975         if (err)
1976                 goto err_unlock;
1977
1978         raw_local_irq_disable();
1979         __raw_spin_lock(&ftrace_max_lock);
1980         for_each_tracing_cpu(cpu) {
1981                 /*
1982                  * Increase/decrease the disabled counter if we are
1983                  * about to flip a bit in the cpumask:
1984                  */
1985                 if (cpu_isset(cpu, tracing_cpumask) &&
1986                                 !cpu_isset(cpu, tracing_cpumask_new)) {
1987                         atomic_inc(&global_trace.data[cpu]->disabled);
1988                 }
1989                 if (!cpu_isset(cpu, tracing_cpumask) &&
1990                                 cpu_isset(cpu, tracing_cpumask_new)) {
1991                         atomic_dec(&global_trace.data[cpu]->disabled);
1992                 }
1993         }
1994         __raw_spin_unlock(&ftrace_max_lock);
1995         raw_local_irq_enable();
1996
1997         tracing_cpumask = tracing_cpumask_new;
1998
1999         mutex_unlock(&tracing_cpumask_update_lock);
2000
2001         return count;
2002
2003 err_unlock:
2004         mutex_unlock(&tracing_cpumask_update_lock);
2005
2006         return err;
2007 }
2008
2009 static struct file_operations tracing_cpumask_fops = {
2010         .open           = tracing_open_generic,
2011         .read           = tracing_cpumask_read,
2012         .write          = tracing_cpumask_write,
2013 };
2014
2015 static ssize_t
2016 tracing_iter_ctrl_read(struct file *filp, char __user *ubuf,
2017                        size_t cnt, loff_t *ppos)
2018 {
2019         char *buf;
2020         int r = 0;
2021         int len = 0;
2022         int i;
2023
2024         /* calulate max size */
2025         for (i = 0; trace_options[i]; i++) {
2026                 len += strlen(trace_options[i]);
2027                 len += 3; /* "no" and space */
2028         }
2029
2030         /* +2 for \n and \0 */
2031         buf = kmalloc(len + 2, GFP_KERNEL);
2032         if (!buf)
2033                 return -ENOMEM;
2034
2035         for (i = 0; trace_options[i]; i++) {
2036                 if (trace_flags & (1 << i))
2037                         r += sprintf(buf + r, "%s ", trace_options[i]);
2038                 else
2039                         r += sprintf(buf + r, "no%s ", trace_options[i]);
2040         }
2041
2042         r += sprintf(buf + r, "\n");
2043         WARN_ON(r >= len + 2);
2044
2045         r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2046
2047         kfree(buf);
2048
2049         return r;
2050 }
2051
2052 static ssize_t
2053 tracing_iter_ctrl_write(struct file *filp, const char __user *ubuf,
2054                         size_t cnt, loff_t *ppos)
2055 {
2056         char buf[64];
2057         char *cmp = buf;
2058         int neg = 0;
2059         int i;
2060
2061         if (cnt >= sizeof(buf))
2062                 return -EINVAL;
2063
2064         if (copy_from_user(&buf, ubuf, cnt))
2065                 return -EFAULT;
2066
2067         buf[cnt] = 0;
2068
2069         if (strncmp(buf, "no", 2) == 0) {
2070                 neg = 1;
2071                 cmp += 2;
2072         }
2073
2074         for (i = 0; trace_options[i]; i++) {
2075                 int len = strlen(trace_options[i]);
2076
2077                 if (strncmp(cmp, trace_options[i], len) == 0) {
2078                         if (neg)
2079                                 trace_flags &= ~(1 << i);
2080                         else
2081                                 trace_flags |= (1 << i);
2082                         break;
2083                 }
2084         }
2085         /*
2086          * If no option could be set, return an error:
2087          */
2088         if (!trace_options[i])
2089                 return -EINVAL;
2090
2091         filp->f_pos += cnt;
2092
2093         return cnt;
2094 }
2095
2096 static struct file_operations tracing_iter_fops = {
2097         .open           = tracing_open_generic,
2098         .read           = tracing_iter_ctrl_read,
2099         .write          = tracing_iter_ctrl_write,
2100 };
2101
2102 static const char readme_msg[] =
2103         "tracing mini-HOWTO:\n\n"
2104         "# mkdir /debug\n"
2105         "# mount -t debugfs nodev /debug\n\n"
2106         "# cat /debug/tracing/available_tracers\n"
2107         "wakeup preemptirqsoff preemptoff irqsoff ftrace sched_switch none\n\n"
2108         "# cat /debug/tracing/current_tracer\n"
2109         "none\n"
2110         "# echo sched_switch > /debug/tracing/current_tracer\n"
2111         "# cat /debug/tracing/current_tracer\n"
2112         "sched_switch\n"
2113         "# cat /debug/tracing/iter_ctrl\n"
2114         "noprint-parent nosym-offset nosym-addr noverbose\n"
2115         "# echo print-parent > /debug/tracing/iter_ctrl\n"
2116         "# echo 1 > /debug/tracing/tracing_enabled\n"
2117         "# cat /debug/tracing/trace > /tmp/trace.txt\n"
2118         "echo 0 > /debug/tracing/tracing_enabled\n"
2119 ;
2120
2121 static ssize_t
2122 tracing_readme_read(struct file *filp, char __user *ubuf,
2123                        size_t cnt, loff_t *ppos)
2124 {
2125         return simple_read_from_buffer(ubuf, cnt, ppos,
2126                                         readme_msg, strlen(readme_msg));
2127 }
2128
2129 static struct file_operations tracing_readme_fops = {
2130         .open           = tracing_open_generic,
2131         .read           = tracing_readme_read,
2132 };
2133
2134 static ssize_t
2135 tracing_ctrl_read(struct file *filp, char __user *ubuf,
2136                   size_t cnt, loff_t *ppos)
2137 {
2138         struct trace_array *tr = filp->private_data;
2139         char buf[64];
2140         int r;
2141
2142         r = sprintf(buf, "%ld\n", tr->ctrl);
2143         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2144 }
2145
2146 static ssize_t
2147 tracing_ctrl_write(struct file *filp, const char __user *ubuf,
2148                    size_t cnt, loff_t *ppos)
2149 {
2150         struct trace_array *tr = filp->private_data;
2151         char buf[64];
2152         long val;
2153         int ret;
2154
2155         if (cnt >= sizeof(buf))
2156                 return -EINVAL;
2157
2158         if (copy_from_user(&buf, ubuf, cnt))
2159                 return -EFAULT;
2160
2161         buf[cnt] = 0;
2162
2163         ret = strict_strtoul(buf, 10, &val);
2164         if (ret < 0)
2165                 return ret;
2166
2167         val = !!val;
2168
2169         mutex_lock(&trace_types_lock);
2170         if (tr->ctrl ^ val) {
2171                 if (val)
2172                         tracer_enabled = 1;
2173                 else
2174                         tracer_enabled = 0;
2175
2176                 tr->ctrl = val;
2177
2178                 if (current_trace && current_trace->ctrl_update)
2179                         current_trace->ctrl_update(tr);
2180         }
2181         mutex_unlock(&trace_types_lock);
2182
2183         filp->f_pos += cnt;
2184
2185         return cnt;
2186 }
2187
2188 static ssize_t
2189 tracing_set_trace_read(struct file *filp, char __user *ubuf,
2190                        size_t cnt, loff_t *ppos)
2191 {
2192         char buf[max_tracer_type_len+2];
2193         int r;
2194
2195         mutex_lock(&trace_types_lock);
2196         if (current_trace)
2197                 r = sprintf(buf, "%s\n", current_trace->name);
2198         else
2199                 r = sprintf(buf, "\n");
2200         mutex_unlock(&trace_types_lock);
2201
2202         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2203 }
2204
2205 static ssize_t
2206 tracing_set_trace_write(struct file *filp, const char __user *ubuf,
2207                         size_t cnt, loff_t *ppos)
2208 {
2209         struct trace_array *tr = &global_trace;
2210         struct tracer *t;
2211         char buf[max_tracer_type_len+1];
2212         int i;
2213
2214         if (cnt > max_tracer_type_len)
2215                 cnt = max_tracer_type_len;
2216
2217         if (copy_from_user(&buf, ubuf, cnt))
2218                 return -EFAULT;
2219
2220         buf[cnt] = 0;
2221
2222         /* strip ending whitespace. */
2223         for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
2224                 buf[i] = 0;
2225
2226         mutex_lock(&trace_types_lock);
2227         for (t = trace_types; t; t = t->next) {
2228                 if (strcmp(t->name, buf) == 0)
2229                         break;
2230         }
2231         if (!t || t == current_trace)
2232                 goto out;
2233
2234         if (current_trace && current_trace->reset)
2235                 current_trace->reset(tr);
2236
2237         current_trace = t;
2238         if (t->init)
2239                 t->init(tr);
2240
2241  out:
2242         mutex_unlock(&trace_types_lock);
2243
2244         filp->f_pos += cnt;
2245
2246         return cnt;
2247 }
2248
2249 static ssize_t
2250 tracing_max_lat_read(struct file *filp, char __user *ubuf,
2251                      size_t cnt, loff_t *ppos)
2252 {
2253         unsigned long *ptr = filp->private_data;
2254         char buf[64];
2255         int r;
2256
2257         r = snprintf(buf, sizeof(buf), "%ld\n",
2258                      *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
2259         if (r > sizeof(buf))
2260                 r = sizeof(buf);
2261         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2262 }
2263
2264 static ssize_t
2265 tracing_max_lat_write(struct file *filp, const char __user *ubuf,
2266                       size_t cnt, loff_t *ppos)
2267 {
2268         long *ptr = filp->private_data;
2269         char buf[64];
2270         long val;
2271         int ret;
2272
2273         if (cnt >= sizeof(buf))
2274                 return -EINVAL;
2275
2276         if (copy_from_user(&buf, ubuf, cnt))
2277                 return -EFAULT;
2278
2279         buf[cnt] = 0;
2280
2281         ret = strict_strtoul(buf, 10, &val);
2282         if (ret < 0)
2283                 return ret;
2284
2285         *ptr = val * 1000;
2286
2287         return cnt;
2288 }
2289
2290 static atomic_t tracing_reader;
2291
2292 static int tracing_open_pipe(struct inode *inode, struct file *filp)
2293 {
2294         struct trace_iterator *iter;
2295
2296         if (tracing_disabled)
2297                 return -ENODEV;
2298
2299         /* We only allow for reader of the pipe */
2300         if (atomic_inc_return(&tracing_reader) != 1) {
2301                 atomic_dec(&tracing_reader);
2302                 return -EBUSY;
2303         }
2304
2305         /* create a buffer to store the information to pass to userspace */
2306         iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2307         if (!iter)
2308                 return -ENOMEM;
2309
2310         mutex_lock(&trace_types_lock);
2311         iter->tr = &global_trace;
2312         iter->trace = current_trace;
2313         filp->private_data = iter;
2314
2315         if (iter->trace->pipe_open)
2316                 iter->trace->pipe_open(iter);
2317         mutex_unlock(&trace_types_lock);
2318
2319         return 0;
2320 }
2321
2322 static int tracing_release_pipe(struct inode *inode, struct file *file)
2323 {
2324         struct trace_iterator *iter = file->private_data;
2325
2326         kfree(iter);
2327         atomic_dec(&tracing_reader);
2328
2329         return 0;
2330 }
2331
2332 static unsigned int
2333 tracing_poll_pipe(struct file *filp, poll_table *poll_table)
2334 {
2335         struct trace_iterator *iter = filp->private_data;
2336
2337         if (trace_flags & TRACE_ITER_BLOCK) {
2338                 /*
2339                  * Always select as readable when in blocking mode
2340                  */
2341                 return POLLIN | POLLRDNORM;
2342         } else {
2343                 if (!trace_empty(iter))
2344                         return POLLIN | POLLRDNORM;
2345                 poll_wait(filp, &trace_wait, poll_table);
2346                 if (!trace_empty(iter))
2347                         return POLLIN | POLLRDNORM;
2348
2349                 return 0;
2350         }
2351 }
2352
2353 /*
2354  * Consumer reader.
2355  */
2356 static ssize_t
2357 tracing_read_pipe(struct file *filp, char __user *ubuf,
2358                   size_t cnt, loff_t *ppos)
2359 {
2360         struct trace_iterator *iter = filp->private_data;
2361         struct trace_array_cpu *data;
2362         static cpumask_t mask;
2363         static int start;
2364         unsigned long flags;
2365 #ifdef CONFIG_FTRACE
2366         int ftrace_save;
2367 #endif
2368         int read = 0;
2369         int cpu;
2370         int len;
2371         int ret;
2372
2373         /* return any leftover data */
2374         if (iter->seq.len > start) {
2375                 len = iter->seq.len - start;
2376                 if (cnt > len)
2377                         cnt = len;
2378                 ret = copy_to_user(ubuf, iter->seq.buffer + start, cnt);
2379                 if (ret)
2380                         cnt = -EFAULT;
2381
2382                 start += len;
2383
2384                 return cnt;
2385         }
2386
2387         mutex_lock(&trace_types_lock);
2388         if (iter->trace->read) {
2389                 ret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
2390                 if (ret) {
2391                         read = ret;
2392                         goto out;
2393                 }
2394         }
2395
2396         trace_seq_reset(&iter->seq);
2397         start = 0;
2398
2399         while (trace_empty(iter)) {
2400
2401                 if ((filp->f_flags & O_NONBLOCK)) {
2402                         read = -EAGAIN;
2403                         goto out;
2404                 }
2405
2406                 /*
2407                  * This is a make-shift waitqueue. The reason we don't use
2408                  * an actual wait queue is because:
2409                  *  1) we only ever have one waiter
2410                  *  2) the tracing, traces all functions, we don't want
2411                  *     the overhead of calling wake_up and friends
2412                  *     (and tracing them too)
2413                  *     Anyway, this is really very primitive wakeup.
2414                  */
2415                 set_current_state(TASK_INTERRUPTIBLE);
2416                 iter->tr->waiter = current;
2417
2418                 mutex_unlock(&trace_types_lock);
2419
2420                 /* sleep for one second, and try again. */
2421                 schedule_timeout(HZ);
2422
2423                 mutex_lock(&trace_types_lock);
2424
2425                 iter->tr->waiter = NULL;
2426
2427                 if (signal_pending(current)) {
2428                         read = -EINTR;
2429                         goto out;
2430                 }
2431
2432                 if (iter->trace != current_trace)
2433                         goto out;
2434
2435                 /*
2436                  * We block until we read something and tracing is disabled.
2437                  * We still block if tracing is disabled, but we have never
2438                  * read anything. This allows a user to cat this file, and
2439                  * then enable tracing. But after we have read something,
2440                  * we give an EOF when tracing is again disabled.
2441                  *
2442                  * iter->pos will be 0 if we haven't read anything.
2443                  */
2444                 if (!tracer_enabled && iter->pos)
2445                         break;
2446
2447                 continue;
2448         }
2449
2450         /* stop when tracing is finished */
2451         if (trace_empty(iter))
2452                 goto out;
2453
2454         if (cnt >= PAGE_SIZE)
2455                 cnt = PAGE_SIZE - 1;
2456
2457         /* reset all but tr, trace, and overruns */
2458         iter->pos = -1;
2459         memset(&iter->seq, 0,
2460                sizeof(struct trace_iterator) -
2461                offsetof(struct trace_iterator, seq));
2462
2463         /*
2464          * We need to stop all tracing on all CPUS to read the
2465          * the next buffer. This is a bit expensive, but is
2466          * not done often. We fill all what we can read,
2467          * and then release the locks again.
2468          */
2469
2470         cpus_clear(mask);
2471         local_irq_save(flags);
2472 #ifdef CONFIG_FTRACE
2473         ftrace_save = ftrace_enabled;
2474         ftrace_enabled = 0;
2475 #endif
2476         smp_wmb();
2477         for_each_tracing_cpu(cpu) {
2478                 data = iter->tr->data[cpu];
2479
2480                 if (!head_page(data) || !data->trace_idx)
2481                         continue;
2482
2483                 atomic_inc(&data->disabled);
2484                 cpu_set(cpu, mask);
2485         }
2486
2487         for_each_cpu_mask(cpu, mask) {
2488                 data = iter->tr->data[cpu];
2489                 __raw_spin_lock(&data->lock);
2490
2491                 if (data->overrun > iter->last_overrun[cpu])
2492                         iter->overrun[cpu] +=
2493                                 data->overrun - iter->last_overrun[cpu];
2494                 iter->last_overrun[cpu] = data->overrun;
2495         }
2496
2497         while (find_next_entry_inc(iter) != NULL) {
2498                 int len = iter->seq.len;
2499
2500                 ret = print_trace_line(iter);
2501                 if (!ret) {
2502                         /* don't print partial lines */
2503                         iter->seq.len = len;
2504                         break;
2505                 }
2506
2507                 trace_consume(iter);
2508
2509                 if (iter->seq.len >= cnt)
2510                         break;
2511         }
2512
2513         for_each_cpu_mask(cpu, mask) {
2514                 data = iter->tr->data[cpu];
2515                 __raw_spin_unlock(&data->lock);
2516         }
2517
2518         for_each_cpu_mask(cpu, mask) {
2519                 data = iter->tr->data[cpu];
2520                 atomic_dec(&data->disabled);
2521         }
2522 #ifdef CONFIG_FTRACE
2523         ftrace_enabled = ftrace_save;
2524 #endif
2525         local_irq_restore(flags);
2526
2527         /* Now copy what we have to the user */
2528         read = iter->seq.len;
2529         if (read > cnt)
2530                 read = cnt;
2531
2532         ret = copy_to_user(ubuf, iter->seq.buffer, read);
2533
2534         if (read < iter->seq.len)
2535                 start = read;
2536         else
2537                 trace_seq_reset(&iter->seq);
2538
2539         if (ret)
2540                 read = -EFAULT;
2541
2542 out:
2543         mutex_unlock(&trace_types_lock);
2544
2545         return read;
2546 }
2547
2548 static ssize_t
2549 tracing_entries_read(struct file *filp, char __user *ubuf,
2550                      size_t cnt, loff_t *ppos)
2551 {
2552         struct trace_array *tr = filp->private_data;
2553         char buf[64];
2554         int r;
2555
2556         r = sprintf(buf, "%lu\n", tr->entries);
2557         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2558 }
2559
2560 static ssize_t
2561 tracing_entries_write(struct file *filp, const char __user *ubuf,
2562                       size_t cnt, loff_t *ppos)
2563 {
2564         unsigned long val;
2565         char buf[64];
2566         int ret;
2567
2568         if (cnt >= sizeof(buf))
2569                 return -EINVAL;
2570
2571         if (copy_from_user(&buf, ubuf, cnt))
2572                 return -EFAULT;
2573
2574         buf[cnt] = 0;
2575
2576         ret = strict_strtoul(buf, 10, &val);
2577         if (ret < 0)
2578                 return ret;
2579
2580         /* must have at least 1 entry */
2581         if (!val)
2582                 return -EINVAL;
2583
2584         mutex_lock(&trace_types_lock);
2585
2586         if (current_trace != &no_tracer) {
2587                 cnt = -EBUSY;
2588                 pr_info("ftrace: set current_tracer to none"
2589                         " before modifying buffer size\n");
2590                 goto out;
2591         }
2592
2593         if (val > global_trace.entries) {
2594                 while (global_trace.entries < val) {
2595                         if (trace_alloc_page()) {
2596                                 cnt = -ENOMEM;
2597                                 goto out;
2598                         }
2599                 }
2600         } else {
2601                 /* include the number of entries in val (inc of page entries) */
2602                 while (global_trace.entries > val + (ENTRIES_PER_PAGE - 1))
2603                         trace_free_page();
2604         }
2605
2606         filp->f_pos += cnt;
2607
2608  out:
2609         max_tr.entries = global_trace.entries;
2610         mutex_unlock(&trace_types_lock);
2611
2612         return cnt;
2613 }
2614
2615 static struct file_operations tracing_max_lat_fops = {
2616         .open           = tracing_open_generic,
2617         .read           = tracing_max_lat_read,
2618         .write          = tracing_max_lat_write,
2619 };
2620
2621 static struct file_operations tracing_ctrl_fops = {
2622         .open           = tracing_open_generic,
2623         .read           = tracing_ctrl_read,
2624         .write          = tracing_ctrl_write,
2625 };
2626
2627 static struct file_operations set_tracer_fops = {
2628         .open           = tracing_open_generic,
2629         .read           = tracing_set_trace_read,
2630         .write          = tracing_set_trace_write,
2631 };
2632
2633 static struct file_operations tracing_pipe_fops = {
2634         .open           = tracing_open_pipe,
2635         .poll           = tracing_poll_pipe,
2636         .read           = tracing_read_pipe,
2637         .release        = tracing_release_pipe,
2638 };
2639
2640 static struct file_operations tracing_entries_fops = {
2641         .open           = tracing_open_generic,
2642         .read           = tracing_entries_read,
2643         .write          = tracing_entries_write,
2644 };
2645
2646 #ifdef CONFIG_DYNAMIC_FTRACE
2647
2648 static ssize_t
2649 tracing_read_long(struct file *filp, char __user *ubuf,
2650                   size_t cnt, loff_t *ppos)
2651 {
2652         unsigned long *p = filp->private_data;
2653         char buf[64];
2654         int r;
2655
2656         r = sprintf(buf, "%ld\n", *p);
2657
2658         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2659 }
2660
2661 static struct file_operations tracing_read_long_fops = {
2662         .open           = tracing_open_generic,
2663         .read           = tracing_read_long,
2664 };
2665 #endif
2666
2667 static struct dentry *d_tracer;
2668
2669 struct dentry *tracing_init_dentry(void)
2670 {
2671         static int once;
2672
2673         if (d_tracer)
2674                 return d_tracer;
2675
2676         d_tracer = debugfs_create_dir("tracing", NULL);
2677
2678         if (!d_tracer && !once) {
2679                 once = 1;
2680                 pr_warning("Could not create debugfs directory 'tracing'\n");
2681                 return NULL;
2682         }
2683
2684         return d_tracer;
2685 }
2686
2687 #ifdef CONFIG_FTRACE_SELFTEST
2688 /* Let selftest have access to static functions in this file */
2689 #include "trace_selftest.c"
2690 #endif
2691
2692 static __init void tracer_init_debugfs(void)
2693 {
2694         struct dentry *d_tracer;
2695         struct dentry *entry;
2696
2697         d_tracer = tracing_init_dentry();
2698
2699         entry = debugfs_create_file("tracing_enabled", 0644, d_tracer,
2700                                     &global_trace, &tracing_ctrl_fops);
2701         if (!entry)
2702                 pr_warning("Could not create debugfs 'tracing_enabled' entry\n");
2703
2704         entry = debugfs_create_file("iter_ctrl", 0644, d_tracer,
2705                                     NULL, &tracing_iter_fops);
2706         if (!entry)
2707                 pr_warning("Could not create debugfs 'iter_ctrl' entry\n");
2708
2709         entry = debugfs_create_file("tracing_cpumask", 0644, d_tracer,
2710                                     NULL, &tracing_cpumask_fops);
2711         if (!entry)
2712                 pr_warning("Could not create debugfs 'tracing_cpumask' entry\n");
2713
2714         entry = debugfs_create_file("latency_trace", 0444, d_tracer,
2715                                     &global_trace, &tracing_lt_fops);
2716         if (!entry)
2717                 pr_warning("Could not create debugfs 'latency_trace' entry\n");
2718
2719         entry = debugfs_create_file("trace", 0444, d_tracer,
2720                                     &global_trace, &tracing_fops);
2721         if (!entry)
2722                 pr_warning("Could not create debugfs 'trace' entry\n");
2723
2724         entry = debugfs_create_file("available_tracers", 0444, d_tracer,
2725                                     &global_trace, &show_traces_fops);
2726         if (!entry)
2727                 pr_warning("Could not create debugfs 'trace' entry\n");
2728
2729         entry = debugfs_create_file("current_tracer", 0444, d_tracer,
2730                                     &global_trace, &set_tracer_fops);
2731         if (!entry)
2732                 pr_warning("Could not create debugfs 'trace' entry\n");
2733
2734         entry = debugfs_create_file("tracing_max_latency", 0644, d_tracer,
2735                                     &tracing_max_latency,
2736                                     &tracing_max_lat_fops);
2737         if (!entry)
2738                 pr_warning("Could not create debugfs "
2739                            "'tracing_max_latency' entry\n");
2740
2741         entry = debugfs_create_file("tracing_thresh", 0644, d_tracer,
2742                                     &tracing_thresh, &tracing_max_lat_fops);
2743         if (!entry)
2744                 pr_warning("Could not create debugfs "
2745                            "'tracing_threash' entry\n");
2746         entry = debugfs_create_file("README", 0644, d_tracer,
2747                                     NULL, &tracing_readme_fops);
2748         if (!entry)
2749                 pr_warning("Could not create debugfs 'README' entry\n");
2750
2751         entry = debugfs_create_file("trace_pipe", 0644, d_tracer,
2752                                     NULL, &tracing_pipe_fops);
2753         if (!entry)
2754                 pr_warning("Could not create debugfs "
2755                            "'tracing_threash' entry\n");
2756
2757         entry = debugfs_create_file("trace_entries", 0644, d_tracer,
2758                                     &global_trace, &tracing_entries_fops);
2759         if (!entry)
2760                 pr_warning("Could not create debugfs "
2761                            "'tracing_threash' entry\n");
2762
2763 #ifdef CONFIG_DYNAMIC_FTRACE
2764         entry = debugfs_create_file("dyn_ftrace_total_info", 0444, d_tracer,
2765                                     &ftrace_update_tot_cnt,
2766                                     &tracing_read_long_fops);
2767         if (!entry)
2768                 pr_warning("Could not create debugfs "
2769                            "'dyn_ftrace_total_info' entry\n");
2770 #endif
2771 }
2772
2773 static int trace_alloc_page(void)
2774 {
2775         struct trace_array_cpu *data;
2776         struct page *page, *tmp;
2777         LIST_HEAD(pages);
2778         void *array;
2779         int i;
2780
2781         /* first allocate a page for each CPU */
2782         for_each_tracing_cpu(i) {
2783                 array = (void *)__get_free_page(GFP_KERNEL);
2784                 if (array == NULL) {
2785                         printk(KERN_ERR "tracer: failed to allocate page"
2786                                "for trace buffer!\n");
2787                         goto free_pages;
2788                 }
2789
2790                 page = virt_to_page(array);
2791                 list_add(&page->lru, &pages);
2792
2793 /* Only allocate if we are actually using the max trace */
2794 #ifdef CONFIG_TRACER_MAX_TRACE
2795                 array = (void *)__get_free_page(GFP_KERNEL);
2796                 if (array == NULL) {
2797                         printk(KERN_ERR "tracer: failed to allocate page"
2798                                "for trace buffer!\n");
2799                         goto free_pages;
2800                 }
2801                 page = virt_to_page(array);
2802                 list_add(&page->lru, &pages);
2803 #endif
2804         }
2805
2806         /* Now that we successfully allocate a page per CPU, add them */
2807         for_each_tracing_cpu(i) {
2808                 data = global_trace.data[i];
2809                 page = list_entry(pages.next, struct page, lru);
2810                 list_del_init(&page->lru);
2811                 list_add_tail(&page->lru, &data->trace_pages);
2812                 ClearPageLRU(page);
2813
2814 #ifdef CONFIG_TRACER_MAX_TRACE
2815                 data = max_tr.data[i];
2816                 page = list_entry(pages.next, struct page, lru);
2817                 list_del_init(&page->lru);
2818                 list_add_tail(&page->lru, &data->trace_pages);
2819                 SetPageLRU(page);
2820 #endif
2821         }
2822         global_trace.entries += ENTRIES_PER_PAGE;
2823
2824         return 0;
2825
2826  free_pages:
2827         list_for_each_entry_safe(page, tmp, &pages, lru) {
2828                 list_del_init(&page->lru);
2829                 __free_page(page);
2830         }
2831         return -ENOMEM;
2832 }
2833
2834 static int trace_free_page(void)
2835 {
2836         struct trace_array_cpu *data;
2837         struct page *page;
2838         struct list_head *p;
2839         int i;
2840         int ret = 0;
2841
2842         /* free one page from each buffer */
2843         for_each_tracing_cpu(i) {
2844                 data = global_trace.data[i];
2845                 p = data->trace_pages.next;
2846                 if (p == &data->trace_pages) {
2847                         /* should never happen */
2848                         WARN_ON(1);
2849                         tracing_disabled = 1;
2850                         ret = -1;
2851                         break;
2852                 }
2853                 page = list_entry(p, struct page, lru);
2854                 ClearPageLRU(page);
2855                 list_del(&page->lru);
2856                 __free_page(page);
2857
2858                 tracing_reset(data);
2859
2860 #ifdef CONFIG_TRACER_MAX_TRACE
2861                 data = max_tr.data[i];
2862                 p = data->trace_pages.next;
2863                 if (p == &data->trace_pages) {
2864                         /* should never happen */
2865                         WARN_ON(1);
2866                         tracing_disabled = 1;
2867                         ret = -1;
2868                         break;
2869                 }
2870                 page = list_entry(p, struct page, lru);
2871                 ClearPageLRU(page);
2872                 list_del(&page->lru);
2873                 __free_page(page);
2874
2875                 tracing_reset(data);
2876 #endif
2877         }
2878         global_trace.entries -= ENTRIES_PER_PAGE;
2879
2880         return ret;
2881 }
2882
2883 __init static int tracer_alloc_buffers(void)
2884 {
2885         struct trace_array_cpu *data;
2886         void *array;
2887         struct page *page;
2888         int pages = 0;
2889         int ret = -ENOMEM;
2890         int i;
2891
2892         global_trace.ctrl = tracer_enabled;
2893
2894         /* TODO: make the number of buffers hot pluggable with CPUS */
2895         tracing_nr_buffers = num_possible_cpus();
2896         tracing_buffer_mask = cpu_possible_map;
2897
2898         /* Allocate the first page for all buffers */
2899         for_each_tracing_cpu(i) {
2900                 data = global_trace.data[i] = &per_cpu(global_trace_cpu, i);
2901                 max_tr.data[i] = &per_cpu(max_data, i);
2902
2903                 array = (void *)__get_free_page(GFP_KERNEL);
2904                 if (array == NULL) {
2905                         printk(KERN_ERR "tracer: failed to allocate page"
2906                                "for trace buffer!\n");
2907                         goto free_buffers;
2908                 }
2909
2910                 /* set the array to the list */
2911                 INIT_LIST_HEAD(&data->trace_pages);
2912                 page = virt_to_page(array);
2913                 list_add(&page->lru, &data->trace_pages);
2914                 /* use the LRU flag to differentiate the two buffers */
2915                 ClearPageLRU(page);
2916
2917                 data->lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
2918                 max_tr.data[i]->lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
2919
2920 /* Only allocate if we are actually using the max trace */
2921 #ifdef CONFIG_TRACER_MAX_TRACE
2922                 array = (void *)__get_free_page(GFP_KERNEL);
2923                 if (array == NULL) {
2924                         printk(KERN_ERR "tracer: failed to allocate page"
2925                                "for trace buffer!\n");
2926                         goto free_buffers;
2927                 }
2928
2929                 INIT_LIST_HEAD(&max_tr.data[i]->trace_pages);
2930                 page = virt_to_page(array);
2931                 list_add(&page->lru, &max_tr.data[i]->trace_pages);
2932                 SetPageLRU(page);
2933 #endif
2934         }
2935
2936         /*
2937          * Since we allocate by orders of pages, we may be able to
2938          * round up a bit.
2939          */
2940         global_trace.entries = ENTRIES_PER_PAGE;
2941         pages++;
2942
2943         while (global_trace.entries < trace_nr_entries) {
2944                 if (trace_alloc_page())
2945                         break;
2946                 pages++;
2947         }
2948         max_tr.entries = global_trace.entries;
2949
2950         pr_info("tracer: %d pages allocated for %ld",
2951                 pages, trace_nr_entries);
2952         pr_info(" entries of %ld bytes\n", (long)TRACE_ENTRY_SIZE);
2953         pr_info("   actual entries %ld\n", global_trace.entries);
2954
2955         tracer_init_debugfs();
2956
2957         trace_init_cmdlines();
2958
2959         register_tracer(&no_tracer);
2960         current_trace = &no_tracer;
2961
2962         /* All seems OK, enable tracing */
2963         tracing_disabled = 0;
2964
2965         return 0;
2966
2967  free_buffers:
2968         for (i-- ; i >= 0; i--) {
2969                 struct page *page, *tmp;
2970                 struct trace_array_cpu *data = global_trace.data[i];
2971
2972                 if (data) {
2973                         list_for_each_entry_safe(page, tmp,
2974                                                  &data->trace_pages, lru) {
2975                                 list_del_init(&page->lru);
2976                                 __free_page(page);
2977                         }
2978                 }
2979
2980 #ifdef CONFIG_TRACER_MAX_TRACE
2981                 data = max_tr.data[i];
2982                 if (data) {
2983                         list_for_each_entry_safe(page, tmp,
2984                                                  &data->trace_pages, lru) {
2985                                 list_del_init(&page->lru);
2986                                 __free_page(page);
2987                         }
2988                 }
2989 #endif
2990         }
2991         return ret;
2992 }
2993 fs_initcall(tracer_alloc_buffers);