blob: d372bc535963b41268a0728e046e8fee42e2337e [file] [log] [blame]
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001/*
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>
Steven Rostedt3f5a54e2008-07-30 22:36:46 -040017#include <linux/notifier.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020018#include <linux/debugfs.h>
Steven Rostedt4c11d7a2008-05-12 21:20:43 +020019#include <linux/pagemap.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020020#include <linux/hardirq.h>
21#include <linux/linkage.h>
22#include <linux/uaccess.h>
23#include <linux/ftrace.h>
24#include <linux/module.h>
25#include <linux/percpu.h>
Steven Rostedt3f5a54e2008-07-30 22:36:46 -040026#include <linux/kdebug.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020027#include <linux/ctype.h>
28#include <linux/init.h>
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +020029#include <linux/poll.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020030#include <linux/gfp.h>
31#include <linux/fs.h>
Abhishek Sagar76094a22008-05-28 00:03:18 +053032#include <linux/kprobes.h>
Steven Rostedt3eefae92008-05-12 21:21:04 +020033#include <linux/writeback.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020034
Ingo Molnar86387f72008-05-12 21:20:51 +020035#include <linux/stacktrace.h>
36
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020037#include "trace.h"
38
39unsigned long __read_mostly tracing_max_latency = (cycle_t)ULONG_MAX;
40unsigned long __read_mostly tracing_thresh;
41
Steven Rostedtab464282008-05-12 21:21:00 +020042static unsigned long __read_mostly tracing_nr_buffers;
43static cpumask_t __read_mostly tracing_buffer_mask;
44
45#define for_each_tracing_cpu(cpu) \
46 for_each_cpu_mask(cpu, tracing_buffer_mask)
47
Steven Rostedta98a3c32008-05-12 21:20:59 +020048static int trace_alloc_page(void);
49static int trace_free_page(void);
50
Steven Rostedt60a11772008-05-12 21:20:44 +020051static int tracing_disabled = 1;
52
Steven Rostedt3eefae92008-05-12 21:21:04 +020053static unsigned long tracing_pages_allocated;
54
Thomas Gleixner72829bc2008-05-23 21:37:28 +020055long
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020056ns2usecs(cycle_t nsec)
57{
58 nsec += 500;
59 do_div(nsec, 1000);
60 return nsec;
61}
62
Ingo Molnare309b412008-05-12 21:20:51 +020063cycle_t ftrace_now(int cpu)
Ingo Molnar750ed1a2008-05-12 21:20:46 +020064{
Ingo Molnar0fd9e0d2008-05-12 21:20:48 +020065 return cpu_clock(cpu);
Ingo Molnar750ed1a2008-05-12 21:20:46 +020066}
67
Steven Rostedt4fcdae82008-05-12 21:21:00 +020068/*
69 * The global_trace is the descriptor that holds the tracing
70 * buffers for the live tracing. For each CPU, it contains
71 * a link list of pages that will store trace entries. The
72 * page descriptor of the pages in the memory is used to hold
73 * the link list by linking the lru item in the page descriptor
74 * to each of the pages in the buffer per CPU.
75 *
76 * For each active CPU there is a data field that holds the
77 * pages for the buffer for that CPU. Each CPU has the same number
78 * of pages allocated for its buffer.
79 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020080static struct trace_array global_trace;
81
82static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
83
Steven Rostedt4fcdae82008-05-12 21:21:00 +020084/*
85 * The max_tr is used to snapshot the global_trace when a maximum
86 * latency is reached. Some tracers will use this to store a maximum
87 * trace while it continues examining live traces.
88 *
89 * The buffers for the max_tr are set up the same as the global_trace.
90 * When a snapshot is taken, the link list of the max_tr is swapped
91 * with the link list of the global_trace and the buffers are reset for
92 * the global_trace so the tracing can continue.
93 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020094static struct trace_array max_tr;
95
96static DEFINE_PER_CPU(struct trace_array_cpu, max_data);
97
Steven Rostedt4fcdae82008-05-12 21:21:00 +020098/* tracer_enabled is used to toggle activation of a tracer */
Steven Rostedt26994ea2008-05-12 21:20:48 +020099static int tracer_enabled = 1;
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200100
Steven Rostedt60bc0802008-07-10 20:58:16 -0400101/* function tracing enabled */
102int ftrace_function_enabled;
103
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200104/*
105 * trace_nr_entries is the number of entries that is allocated
106 * for a buffer. Note, the number of entries is always rounded
107 * to ENTRIES_PER_PAGE.
Steven Rostedt3f5a54e2008-07-30 22:36:46 -0400108 *
109 * This number is purposely set to a low number of 16384.
110 * If the dump on oops happens, it will be much appreciated
111 * to not have to wait for all that output. Anyway this can be
112 * boot time and run time configurable.
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200113 */
Steven Rostedt3f5a54e2008-07-30 22:36:46 -0400114#define TRACE_ENTRIES_DEFAULT 16384UL
115
116static unsigned long trace_nr_entries = TRACE_ENTRIES_DEFAULT;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200117
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200118/* trace_types holds a link list of available tracers. */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200119static struct tracer *trace_types __read_mostly;
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200120
121/* current_trace points to the tracer that is currently active */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200122static struct tracer *current_trace __read_mostly;
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200123
124/*
125 * max_tracer_type_len is used to simplify the allocating of
126 * buffers to read userspace tracer names. We keep track of
127 * the longest tracer name registered.
128 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200129static int max_tracer_type_len;
130
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200131/*
132 * trace_types_lock is used to protect the trace_types list.
133 * This lock is also used to keep user access serialized.
134 * Accesses from userspace will grab this lock while userspace
135 * activities happen inside the kernel.
136 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200137static DEFINE_MUTEX(trace_types_lock);
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200138
139/* trace_wait is a waitqueue for tasks blocked on trace_poll */
Ingo Molnar4e655512008-05-12 21:20:52 +0200140static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
141
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200142/* trace_flags holds iter_ctrl options */
Ingo Molnar4e655512008-05-12 21:20:52 +0200143unsigned long trace_flags = TRACE_ITER_PRINT_PARENT;
144
Ankita Garg2b1bce12008-06-09 14:10:25 +0530145static notrace void no_trace_init(struct trace_array *tr)
146{
147 int cpu;
148
Steven Rostedt60bc0802008-07-10 20:58:16 -0400149 ftrace_function_enabled = 0;
Ankita Garg2b1bce12008-06-09 14:10:25 +0530150 if(tr->ctrl)
151 for_each_online_cpu(cpu)
152 tracing_reset(tr->data[cpu]);
153 tracer_enabled = 0;
154}
155
156/* dummy trace to disable tracing */
157static struct tracer no_tracer __read_mostly = {
158 .name = "none",
159 .init = no_trace_init
160};
161
162
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200163/**
164 * trace_wake_up - wake up tasks waiting for trace input
165 *
166 * Simply wakes up any task that is blocked on the trace_wait
167 * queue. These is used with trace_poll for tasks polling the trace.
168 */
Ingo Molnar4e655512008-05-12 21:20:52 +0200169void trace_wake_up(void)
170{
Ingo Molnar017730c2008-05-12 21:20:52 +0200171 /*
172 * The runqueue_is_locked() can fail, but this is the best we
173 * have for now:
174 */
175 if (!(trace_flags & TRACE_ITER_BLOCK) && !runqueue_is_locked())
Ingo Molnar4e655512008-05-12 21:20:52 +0200176 wake_up(&trace_wait);
177}
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200178
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200179#define ENTRIES_PER_PAGE (PAGE_SIZE / sizeof(struct trace_entry))
180
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200181static int __init set_nr_entries(char *str)
182{
Steven Rostedtc6caeeb2008-05-12 21:21:00 +0200183 unsigned long nr_entries;
184 int ret;
185
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200186 if (!str)
187 return 0;
Steven Rostedtc6caeeb2008-05-12 21:21:00 +0200188 ret = strict_strtoul(str, 0, &nr_entries);
189 /* nr_entries can not be zero */
190 if (ret < 0 || nr_entries == 0)
191 return 0;
192 trace_nr_entries = nr_entries;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200193 return 1;
194}
195__setup("trace_entries=", set_nr_entries);
196
Steven Rostedt57f50be2008-05-12 21:20:44 +0200197unsigned long nsecs_to_usecs(unsigned long nsecs)
198{
199 return nsecs / 1000;
200}
201
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200202/*
203 * trace_flag_type is an enumeration that holds different
204 * states when a trace occurs. These are:
205 * IRQS_OFF - interrupts were disabled
206 * NEED_RESCED - reschedule is requested
207 * HARDIRQ - inside an interrupt handler
208 * SOFTIRQ - inside a softirq handler
Steven Rostedtdd0e5452008-08-01 12:26:41 -0400209 * CONT - multiple entries hold the trace item
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200210 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200211enum trace_flag_type {
212 TRACE_FLAG_IRQS_OFF = 0x01,
213 TRACE_FLAG_NEED_RESCHED = 0x02,
214 TRACE_FLAG_HARDIRQ = 0x04,
215 TRACE_FLAG_SOFTIRQ = 0x08,
Steven Rostedtdd0e5452008-08-01 12:26:41 -0400216 TRACE_FLAG_CONT = 0x10,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200217};
218
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200219/*
220 * TRACE_ITER_SYM_MASK masks the options in trace_flags that
221 * control the output of kernel symbols.
222 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200223#define TRACE_ITER_SYM_MASK \
224 (TRACE_ITER_PRINT_PARENT|TRACE_ITER_SYM_OFFSET|TRACE_ITER_SYM_ADDR)
225
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200226/* These must match the bit postions in trace_iterator_flags */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200227static const char *trace_options[] = {
228 "print-parent",
229 "sym-offset",
230 "sym-addr",
231 "verbose",
Ingo Molnarf9896bf2008-05-12 21:20:47 +0200232 "raw",
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200233 "hex",
Ingo Molnarcb0f12a2008-05-12 21:20:47 +0200234 "bin",
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +0200235 "block",
Ingo Molnar86387f72008-05-12 21:20:51 +0200236 "stacktrace",
Ingo Molnar4ac3ba42008-05-12 21:20:52 +0200237 "sched-tree",
Peter Zijlstraf09ce572008-09-04 10:24:14 +0200238 "ftrace_printk",
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200239 NULL
240};
241
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200242/*
243 * ftrace_max_lock is used to protect the swapping of buffers
244 * when taking a max snapshot. The buffers themselves are
245 * protected by per_cpu spinlocks. But the action of the swap
246 * needs its own lock.
247 *
248 * This is defined as a raw_spinlock_t in order to help
249 * with performance when lockdep debugging is enabled.
250 */
Steven Rostedt92205c22008-05-12 21:20:55 +0200251static raw_spinlock_t ftrace_max_lock =
252 (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200253
254/*
255 * Copy the new maximum trace into the separate maximum-trace
256 * structure. (this way the maximum trace is permanently saved,
257 * for later retrieval via /debugfs/tracing/latency_trace)
258 */
Ingo Molnare309b412008-05-12 21:20:51 +0200259static void
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200260__update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
261{
262 struct trace_array_cpu *data = tr->data[cpu];
263
264 max_tr.cpu = cpu;
265 max_tr.time_start = data->preempt_timestamp;
266
267 data = max_tr.data[cpu];
268 data->saved_latency = tracing_max_latency;
269
270 memcpy(data->comm, tsk->comm, TASK_COMM_LEN);
271 data->pid = tsk->pid;
272 data->uid = tsk->uid;
273 data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
274 data->policy = tsk->policy;
275 data->rt_priority = tsk->rt_priority;
276
277 /* record this tasks comm */
278 tracing_record_cmdline(current);
279}
280
Steven Rostedt19384c02008-05-22 00:22:16 -0400281#define CHECK_COND(cond) \
282 if (unlikely(cond)) { \
283 tracing_disabled = 1; \
284 WARN_ON(1); \
285 return -1; \
286 }
287
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200288/**
289 * check_pages - integrity check of trace buffers
290 *
291 * As a safty measure we check to make sure the data pages have not
Steven Rostedt19384c02008-05-22 00:22:16 -0400292 * been corrupted.
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200293 */
Steven Rostedt19384c02008-05-22 00:22:16 -0400294int check_pages(struct trace_array_cpu *data)
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200295{
296 struct page *page, *tmp;
297
Steven Rostedt19384c02008-05-22 00:22:16 -0400298 CHECK_COND(data->trace_pages.next->prev != &data->trace_pages);
299 CHECK_COND(data->trace_pages.prev->next != &data->trace_pages);
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200300
301 list_for_each_entry_safe(page, tmp, &data->trace_pages, lru) {
Steven Rostedt19384c02008-05-22 00:22:16 -0400302 CHECK_COND(page->lru.next->prev != &page->lru);
303 CHECK_COND(page->lru.prev->next != &page->lru);
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200304 }
Steven Rostedt19384c02008-05-22 00:22:16 -0400305
306 return 0;
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200307}
308
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200309/**
310 * head_page - page address of the first page in per_cpu buffer.
311 *
312 * head_page returns the page address of the first page in
313 * a per_cpu buffer. This also preforms various consistency
314 * checks to make sure the buffer has not been corrupted.
315 */
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200316void *head_page(struct trace_array_cpu *data)
317{
318 struct page *page;
319
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200320 if (list_empty(&data->trace_pages))
321 return NULL;
322
323 page = list_entry(data->trace_pages.next, struct page, lru);
324 BUG_ON(&page->lru == &data->trace_pages);
325
326 return page_address(page);
327}
328
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200329/**
330 * trace_seq_printf - sequence printing of trace information
331 * @s: trace sequence descriptor
332 * @fmt: printf format string
333 *
334 * The tracer may use either sequence operations or its own
335 * copy to user routines. To simplify formating of a trace
336 * trace_seq_printf is used to store strings into a special
337 * buffer (@s). Then the output may be either used by
338 * the sequencer or pulled into another buffer.
339 */
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200340int
Steven Rostedt214023c2008-05-12 21:20:46 +0200341trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
342{
343 int len = (PAGE_SIZE - 1) - s->len;
344 va_list ap;
Steven Rostedtb3806b42008-05-12 21:20:46 +0200345 int ret;
Steven Rostedt214023c2008-05-12 21:20:46 +0200346
347 if (!len)
348 return 0;
349
350 va_start(ap, fmt);
Steven Rostedtb3806b42008-05-12 21:20:46 +0200351 ret = vsnprintf(s->buffer + s->len, len, fmt, ap);
Steven Rostedt214023c2008-05-12 21:20:46 +0200352 va_end(ap);
353
Steven Rostedtb3806b42008-05-12 21:20:46 +0200354 /* If we can't write it all, don't bother writing anything */
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200355 if (ret >= len)
Steven Rostedtb3806b42008-05-12 21:20:46 +0200356 return 0;
357
358 s->len += ret;
Steven Rostedt214023c2008-05-12 21:20:46 +0200359
360 return len;
361}
362
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200363/**
364 * trace_seq_puts - trace sequence printing of simple string
365 * @s: trace sequence descriptor
366 * @str: simple string to record
367 *
368 * The tracer may use either the sequence operations or its own
369 * copy to user routines. This function records a simple string
370 * into a special buffer (@s) for later retrieval by a sequencer
371 * or other mechanism.
372 */
Ingo Molnare309b412008-05-12 21:20:51 +0200373static int
Steven Rostedt214023c2008-05-12 21:20:46 +0200374trace_seq_puts(struct trace_seq *s, const char *str)
375{
376 int len = strlen(str);
377
378 if (len > ((PAGE_SIZE - 1) - s->len))
Steven Rostedtb3806b42008-05-12 21:20:46 +0200379 return 0;
Steven Rostedt214023c2008-05-12 21:20:46 +0200380
381 memcpy(s->buffer + s->len, str, len);
382 s->len += len;
383
384 return len;
385}
386
Ingo Molnare309b412008-05-12 21:20:51 +0200387static int
Steven Rostedt214023c2008-05-12 21:20:46 +0200388trace_seq_putc(struct trace_seq *s, unsigned char c)
389{
390 if (s->len >= (PAGE_SIZE - 1))
391 return 0;
392
393 s->buffer[s->len++] = c;
394
395 return 1;
396}
397
Ingo Molnare309b412008-05-12 21:20:51 +0200398static int
Ingo Molnarcb0f12a2008-05-12 21:20:47 +0200399trace_seq_putmem(struct trace_seq *s, void *mem, size_t len)
400{
401 if (len > ((PAGE_SIZE - 1) - s->len))
402 return 0;
403
404 memcpy(s->buffer + s->len, mem, len);
405 s->len += len;
406
407 return len;
408}
409
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200410#define HEX_CHARS 17
Thomas Gleixner93dcc6e2008-05-12 21:21:00 +0200411static const char hex2asc[] = "0123456789abcdef";
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200412
Ingo Molnare309b412008-05-12 21:20:51 +0200413static int
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200414trace_seq_putmem_hex(struct trace_seq *s, void *mem, size_t len)
415{
416 unsigned char hex[HEX_CHARS];
Thomas Gleixner93dcc6e2008-05-12 21:21:00 +0200417 unsigned char *data = mem;
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200418 unsigned char byte;
419 int i, j;
420
421 BUG_ON(len >= HEX_CHARS);
422
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200423#ifdef __BIG_ENDIAN
424 for (i = 0, j = 0; i < len; i++) {
425#else
426 for (i = len-1, j = 0; i >= 0; i--) {
427#endif
428 byte = data[i];
429
Thomas Gleixner93dcc6e2008-05-12 21:21:00 +0200430 hex[j++] = hex2asc[byte & 0x0f];
431 hex[j++] = hex2asc[byte >> 4];
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200432 }
Thomas Gleixner93dcc6e2008-05-12 21:21:00 +0200433 hex[j++] = ' ';
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200434
435 return trace_seq_putmem(s, hex, j);
436}
437
Ingo Molnare309b412008-05-12 21:20:51 +0200438static void
Steven Rostedt214023c2008-05-12 21:20:46 +0200439trace_seq_reset(struct trace_seq *s)
440{
441 s->len = 0;
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200442 s->readpos = 0;
443}
444
445ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
446{
447 int len;
448 int ret;
449
450 if (s->len <= s->readpos)
451 return -EBUSY;
452
453 len = s->len - s->readpos;
454 if (cnt > len)
455 cnt = len;
456 ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
457 if (ret)
458 return -EFAULT;
459
460 s->readpos += len;
461 return cnt;
Steven Rostedt214023c2008-05-12 21:20:46 +0200462}
463
Ingo Molnare309b412008-05-12 21:20:51 +0200464static void
Steven Rostedt214023c2008-05-12 21:20:46 +0200465trace_print_seq(struct seq_file *m, struct trace_seq *s)
466{
467 int len = s->len >= PAGE_SIZE ? PAGE_SIZE - 1 : s->len;
468
469 s->buffer[len] = 0;
470 seq_puts(m, s->buffer);
471
472 trace_seq_reset(s);
473}
474
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200475/*
476 * flip the trace buffers between two trace descriptors.
477 * This usually is the buffers between the global_trace and
478 * the max_tr to record a snapshot of a current trace.
479 *
480 * The ftrace_max_lock must be held.
481 */
Ingo Molnare309b412008-05-12 21:20:51 +0200482static void
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200483flip_trace(struct trace_array_cpu *tr1, struct trace_array_cpu *tr2)
484{
485 struct list_head flip_pages;
486
487 INIT_LIST_HEAD(&flip_pages);
488
Steven Rostedt93a588f2008-05-12 21:20:45 +0200489 memcpy(&tr1->trace_head_idx, &tr2->trace_head_idx,
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200490 sizeof(struct trace_array_cpu) -
Steven Rostedt93a588f2008-05-12 21:20:45 +0200491 offsetof(struct trace_array_cpu, trace_head_idx));
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200492
493 check_pages(tr1);
494 check_pages(tr2);
495 list_splice_init(&tr1->trace_pages, &flip_pages);
496 list_splice_init(&tr2->trace_pages, &tr1->trace_pages);
497 list_splice_init(&flip_pages, &tr2->trace_pages);
498 BUG_ON(!list_empty(&flip_pages));
499 check_pages(tr1);
500 check_pages(tr2);
501}
502
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200503/**
504 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
505 * @tr: tracer
506 * @tsk: the task with the latency
507 * @cpu: The cpu that initiated the trace.
508 *
509 * Flip the buffers between the @tr and the max_tr and record information
510 * about which task was the cause of this latency.
511 */
Ingo Molnare309b412008-05-12 21:20:51 +0200512void
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200513update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
514{
515 struct trace_array_cpu *data;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200516 int i;
517
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200518 WARN_ON_ONCE(!irqs_disabled());
Steven Rostedt92205c22008-05-12 21:20:55 +0200519 __raw_spin_lock(&ftrace_max_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200520 /* clear out all the previous traces */
Steven Rostedtab464282008-05-12 21:21:00 +0200521 for_each_tracing_cpu(i) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200522 data = tr->data[i];
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200523 flip_trace(max_tr.data[i], data);
Steven Rostedt89b2f972008-05-12 21:20:44 +0200524 tracing_reset(data);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200525 }
526
527 __update_max_tr(tr, tsk, cpu);
Steven Rostedt92205c22008-05-12 21:20:55 +0200528 __raw_spin_unlock(&ftrace_max_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200529}
530
531/**
532 * update_max_tr_single - only copy one trace over, and reset the rest
533 * @tr - tracer
534 * @tsk - task with the latency
535 * @cpu - the cpu of the buffer to copy.
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200536 *
537 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200538 */
Ingo Molnare309b412008-05-12 21:20:51 +0200539void
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200540update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
541{
542 struct trace_array_cpu *data = tr->data[cpu];
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200543 int i;
544
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200545 WARN_ON_ONCE(!irqs_disabled());
Steven Rostedt92205c22008-05-12 21:20:55 +0200546 __raw_spin_lock(&ftrace_max_lock);
Steven Rostedtab464282008-05-12 21:21:00 +0200547 for_each_tracing_cpu(i)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200548 tracing_reset(max_tr.data[i]);
549
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200550 flip_trace(max_tr.data[cpu], data);
Steven Rostedt89b2f972008-05-12 21:20:44 +0200551 tracing_reset(data);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200552
553 __update_max_tr(tr, tsk, cpu);
Steven Rostedt92205c22008-05-12 21:20:55 +0200554 __raw_spin_unlock(&ftrace_max_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200555}
556
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200557/**
558 * register_tracer - register a tracer with the ftrace system.
559 * @type - the plugin for the tracer
560 *
561 * Register a new plugin tracer.
562 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200563int register_tracer(struct tracer *type)
564{
565 struct tracer *t;
566 int len;
567 int ret = 0;
568
569 if (!type->name) {
570 pr_info("Tracer must have a name\n");
571 return -1;
572 }
573
574 mutex_lock(&trace_types_lock);
575 for (t = trace_types; t; t = t->next) {
576 if (strcmp(type->name, t->name) == 0) {
577 /* already found */
578 pr_info("Trace %s already registered\n",
579 type->name);
580 ret = -1;
581 goto out;
582 }
583 }
584
Steven Rostedt60a11772008-05-12 21:20:44 +0200585#ifdef CONFIG_FTRACE_STARTUP_TEST
586 if (type->selftest) {
587 struct tracer *saved_tracer = current_trace;
588 struct trace_array_cpu *data;
589 struct trace_array *tr = &global_trace;
590 int saved_ctrl = tr->ctrl;
591 int i;
592 /*
593 * Run a selftest on this tracer.
594 * Here we reset the trace buffer, and set the current
595 * tracer to be this tracer. The tracer can then run some
596 * internal tracing to verify that everything is in order.
597 * If we fail, we do not register this tracer.
598 */
Steven Rostedtab464282008-05-12 21:21:00 +0200599 for_each_tracing_cpu(i) {
Steven Rostedt60a11772008-05-12 21:20:44 +0200600 data = tr->data[i];
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200601 if (!head_page(data))
602 continue;
Steven Rostedt60a11772008-05-12 21:20:44 +0200603 tracing_reset(data);
604 }
605 current_trace = type;
606 tr->ctrl = 0;
607 /* the test is responsible for initializing and enabling */
608 pr_info("Testing tracer %s: ", type->name);
609 ret = type->selftest(type, tr);
610 /* the test is responsible for resetting too */
611 current_trace = saved_tracer;
612 tr->ctrl = saved_ctrl;
613 if (ret) {
614 printk(KERN_CONT "FAILED!\n");
615 goto out;
616 }
Steven Rostedt1d4db002008-05-12 21:20:45 +0200617 /* Only reset on passing, to avoid touching corrupted buffers */
Steven Rostedtab464282008-05-12 21:21:00 +0200618 for_each_tracing_cpu(i) {
Steven Rostedt1d4db002008-05-12 21:20:45 +0200619 data = tr->data[i];
620 if (!head_page(data))
621 continue;
622 tracing_reset(data);
623 }
Steven Rostedt60a11772008-05-12 21:20:44 +0200624 printk(KERN_CONT "PASSED\n");
625 }
626#endif
627
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200628 type->next = trace_types;
629 trace_types = type;
630 len = strlen(type->name);
631 if (len > max_tracer_type_len)
632 max_tracer_type_len = len;
Steven Rostedt60a11772008-05-12 21:20:44 +0200633
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200634 out:
635 mutex_unlock(&trace_types_lock);
636
637 return ret;
638}
639
640void unregister_tracer(struct tracer *type)
641{
642 struct tracer **t;
643 int len;
644
645 mutex_lock(&trace_types_lock);
646 for (t = &trace_types; *t; t = &(*t)->next) {
647 if (*t == type)
648 goto found;
649 }
650 pr_info("Trace %s not registered\n", type->name);
651 goto out;
652
653 found:
654 *t = (*t)->next;
655 if (strlen(type->name) != max_tracer_type_len)
656 goto out;
657
658 max_tracer_type_len = 0;
659 for (t = &trace_types; *t; t = &(*t)->next) {
660 len = strlen((*t)->name);
661 if (len > max_tracer_type_len)
662 max_tracer_type_len = len;
663 }
664 out:
665 mutex_unlock(&trace_types_lock);
666}
667
Ingo Molnare309b412008-05-12 21:20:51 +0200668void tracing_reset(struct trace_array_cpu *data)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200669{
670 data->trace_idx = 0;
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200671 data->overrun = 0;
Steven Rostedt93a588f2008-05-12 21:20:45 +0200672 data->trace_head = data->trace_tail = head_page(data);
673 data->trace_head_idx = 0;
674 data->trace_tail_idx = 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200675}
676
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200677#define SAVED_CMDLINES 128
678static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
679static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
680static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
681static int cmdline_idx;
682static DEFINE_SPINLOCK(trace_cmdline_lock);
Steven Rostedt25b0b442008-05-12 21:21:00 +0200683
Steven Rostedt25b0b442008-05-12 21:21:00 +0200684/* temporary disable recording */
685atomic_t trace_record_cmdline_disabled __read_mostly;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200686
687static void trace_init_cmdlines(void)
688{
689 memset(&map_pid_to_cmdline, -1, sizeof(map_pid_to_cmdline));
690 memset(&map_cmdline_to_pid, -1, sizeof(map_cmdline_to_pid));
691 cmdline_idx = 0;
692}
693
Ingo Molnare309b412008-05-12 21:20:51 +0200694void trace_stop_cmdline_recording(void);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200695
Ingo Molnare309b412008-05-12 21:20:51 +0200696static void trace_save_cmdline(struct task_struct *tsk)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200697{
698 unsigned map;
699 unsigned idx;
700
701 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
702 return;
703
704 /*
705 * It's not the end of the world if we don't get
706 * the lock, but we also don't want to spin
707 * nor do we want to disable interrupts,
708 * so if we miss here, then better luck next time.
709 */
710 if (!spin_trylock(&trace_cmdline_lock))
711 return;
712
713 idx = map_pid_to_cmdline[tsk->pid];
714 if (idx >= SAVED_CMDLINES) {
715 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
716
717 map = map_cmdline_to_pid[idx];
718 if (map <= PID_MAX_DEFAULT)
719 map_pid_to_cmdline[map] = (unsigned)-1;
720
721 map_pid_to_cmdline[tsk->pid] = idx;
722
723 cmdline_idx = idx;
724 }
725
726 memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
727
728 spin_unlock(&trace_cmdline_lock);
729}
730
Ingo Molnare309b412008-05-12 21:20:51 +0200731static char *trace_find_cmdline(int pid)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200732{
733 char *cmdline = "<...>";
734 unsigned map;
735
736 if (!pid)
737 return "<idle>";
738
739 if (pid > PID_MAX_DEFAULT)
740 goto out;
741
742 map = map_pid_to_cmdline[pid];
743 if (map >= SAVED_CMDLINES)
744 goto out;
745
746 cmdline = saved_cmdlines[map];
747
748 out:
749 return cmdline;
750}
751
Ingo Molnare309b412008-05-12 21:20:51 +0200752void tracing_record_cmdline(struct task_struct *tsk)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200753{
754 if (atomic_read(&trace_record_cmdline_disabled))
755 return;
756
757 trace_save_cmdline(tsk);
758}
759
Ingo Molnare309b412008-05-12 21:20:51 +0200760static inline struct list_head *
Steven Rostedt93a588f2008-05-12 21:20:45 +0200761trace_next_list(struct trace_array_cpu *data, struct list_head *next)
762{
763 /*
764 * Roundrobin - but skip the head (which is not a real page):
765 */
766 next = next->next;
767 if (unlikely(next == &data->trace_pages))
768 next = next->next;
769 BUG_ON(next == &data->trace_pages);
770
771 return next;
772}
773
Ingo Molnare309b412008-05-12 21:20:51 +0200774static inline void *
Steven Rostedt93a588f2008-05-12 21:20:45 +0200775trace_next_page(struct trace_array_cpu *data, void *addr)
776{
777 struct list_head *next;
778 struct page *page;
779
780 page = virt_to_page(addr);
781
782 next = trace_next_list(data, &page->lru);
783 page = list_entry(next, struct page, lru);
784
785 return page_address(page);
786}
787
Pekka Paalanen45dcd8b2008-09-16 21:56:41 +0300788struct trace_entry *
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200789tracing_get_trace_entry(struct trace_array *tr, struct trace_array_cpu *data)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200790{
791 unsigned long idx, idx_next;
792 struct trace_entry *entry;
793
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200794 data->trace_idx++;
Steven Rostedt93a588f2008-05-12 21:20:45 +0200795 idx = data->trace_head_idx;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200796 idx_next = idx + 1;
797
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200798 BUG_ON(idx * TRACE_ENTRY_SIZE >= PAGE_SIZE);
799
Steven Rostedt93a588f2008-05-12 21:20:45 +0200800 entry = data->trace_head + idx * TRACE_ENTRY_SIZE;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200801
802 if (unlikely(idx_next >= ENTRIES_PER_PAGE)) {
Steven Rostedt93a588f2008-05-12 21:20:45 +0200803 data->trace_head = trace_next_page(data, data->trace_head);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200804 idx_next = 0;
805 }
806
Steven Rostedt93a588f2008-05-12 21:20:45 +0200807 if (data->trace_head == data->trace_tail &&
808 idx_next == data->trace_tail_idx) {
809 /* overrun */
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200810 data->overrun++;
Steven Rostedt93a588f2008-05-12 21:20:45 +0200811 data->trace_tail_idx++;
812 if (data->trace_tail_idx >= ENTRIES_PER_PAGE) {
813 data->trace_tail =
814 trace_next_page(data, data->trace_tail);
815 data->trace_tail_idx = 0;
816 }
817 }
818
819 data->trace_head_idx = idx_next;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200820
821 return entry;
822}
823
Pekka Paalanen45dcd8b2008-09-16 21:56:41 +0300824void
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200825tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200826{
827 struct task_struct *tsk = current;
828 unsigned long pc;
829
830 pc = preempt_count();
831
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400832 entry->field.preempt_count = pc & 0xff;
833 entry->field.pid = (tsk) ? tsk->pid : 0;
834 entry->field.t = ftrace_now(raw_smp_processor_id());
835 entry->field.flags =
836 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200837 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
838 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
839 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
840}
841
Ingo Molnare309b412008-05-12 21:20:51 +0200842void
Steven Rostedt6fb44b72008-05-12 21:20:49 +0200843trace_function(struct trace_array *tr, struct trace_array_cpu *data,
844 unsigned long ip, unsigned long parent_ip, unsigned long flags)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200845{
846 struct trace_entry *entry;
Ingo Molnardcb63082008-05-12 21:20:48 +0200847 unsigned long irq_flags;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200848
Steven Rostedt92205c22008-05-12 21:20:55 +0200849 raw_local_irq_save(irq_flags);
850 __raw_spin_lock(&data->lock);
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400851 entry = tracing_get_trace_entry(tr, data);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200852 tracing_generic_entry_update(entry, flags);
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400853 entry->type = TRACE_FN;
854 entry->field.fn.ip = ip;
855 entry->field.fn.parent_ip = parent_ip;
Steven Rostedt92205c22008-05-12 21:20:55 +0200856 __raw_spin_unlock(&data->lock);
857 raw_local_irq_restore(irq_flags);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200858}
859
Ingo Molnare309b412008-05-12 21:20:51 +0200860void
Ingo Molnar2e0f5762008-05-12 21:20:49 +0200861ftrace(struct trace_array *tr, struct trace_array_cpu *data,
862 unsigned long ip, unsigned long parent_ip, unsigned long flags)
863{
864 if (likely(!atomic_read(&data->disabled)))
Steven Rostedt6fb44b72008-05-12 21:20:49 +0200865 trace_function(tr, data, ip, parent_ip, flags);
Ingo Molnar2e0f5762008-05-12 21:20:49 +0200866}
867
Ingo Molnar86387f72008-05-12 21:20:51 +0200868void __trace_stack(struct trace_array *tr,
869 struct trace_array_cpu *data,
870 unsigned long flags,
871 int skip)
872{
873 struct trace_entry *entry;
874 struct stack_trace trace;
875
876 if (!(trace_flags & TRACE_ITER_STACKTRACE))
877 return;
878
879 entry = tracing_get_trace_entry(tr, data);
880 tracing_generic_entry_update(entry, flags);
881 entry->type = TRACE_STACK;
882
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400883 memset(&entry->field.stack, 0, sizeof(entry->field.stack));
Ingo Molnar86387f72008-05-12 21:20:51 +0200884
885 trace.nr_entries = 0;
886 trace.max_entries = FTRACE_STACK_ENTRIES;
887 trace.skip = skip;
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400888 trace.entries = entry->field.stack.caller;
Ingo Molnar86387f72008-05-12 21:20:51 +0200889
890 save_stack_trace(&trace);
Ingo Molnarf0a920d2008-05-12 21:20:47 +0200891}
892
Ingo Molnare309b412008-05-12 21:20:51 +0200893void
Ingo Molnara4feb8342008-05-12 21:21:02 +0200894__trace_special(void *__tr, void *__data,
895 unsigned long arg1, unsigned long arg2, unsigned long arg3)
896{
897 struct trace_array_cpu *data = __data;
898 struct trace_array *tr = __tr;
899 struct trace_entry *entry;
900 unsigned long irq_flags;
901
902 raw_local_irq_save(irq_flags);
903 __raw_spin_lock(&data->lock);
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400904 entry = tracing_get_trace_entry(tr, data);
Ingo Molnara4feb8342008-05-12 21:21:02 +0200905 tracing_generic_entry_update(entry, 0);
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400906 entry->type = TRACE_SPECIAL;
907 entry->field.special.arg1 = arg1;
908 entry->field.special.arg2 = arg2;
909 entry->field.special.arg3 = arg3;
Ingo Molnara4feb8342008-05-12 21:21:02 +0200910 __trace_stack(tr, data, irq_flags, 4);
911 __raw_spin_unlock(&data->lock);
912 raw_local_irq_restore(irq_flags);
913
914 trace_wake_up();
915}
916
917void
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200918tracing_sched_switch_trace(struct trace_array *tr,
919 struct trace_array_cpu *data,
Ingo Molnar86387f72008-05-12 21:20:51 +0200920 struct task_struct *prev,
921 struct task_struct *next,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200922 unsigned long flags)
923{
924 struct trace_entry *entry;
Ingo Molnardcb63082008-05-12 21:20:48 +0200925 unsigned long irq_flags;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200926
Steven Rostedt92205c22008-05-12 21:20:55 +0200927 raw_local_irq_save(irq_flags);
928 __raw_spin_lock(&data->lock);
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400929 entry = tracing_get_trace_entry(tr, data);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200930 tracing_generic_entry_update(entry, flags);
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400931 entry->type = TRACE_CTX;
932 entry->field.ctx.prev_pid = prev->pid;
933 entry->field.ctx.prev_prio = prev->prio;
934 entry->field.ctx.prev_state = prev->state;
935 entry->field.ctx.next_pid = next->pid;
936 entry->field.ctx.next_prio = next->prio;
937 entry->field.ctx.next_state = next->state;
Peter Zijlstra80b5e942008-09-04 10:24:16 +0200938 entry->field.ctx.next_cpu = task_cpu(next);
Ingo Molnar74f4e362008-05-12 21:21:15 +0200939 __trace_stack(tr, data, flags, 5);
Steven Rostedt92205c22008-05-12 21:20:55 +0200940 __raw_spin_unlock(&data->lock);
941 raw_local_irq_restore(irq_flags);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200942}
943
Ingo Molnar57422792008-05-12 21:20:51 +0200944void
945tracing_sched_wakeup_trace(struct trace_array *tr,
946 struct trace_array_cpu *data,
Ingo Molnar86387f72008-05-12 21:20:51 +0200947 struct task_struct *wakee,
948 struct task_struct *curr,
Ingo Molnar57422792008-05-12 21:20:51 +0200949 unsigned long flags)
950{
951 struct trace_entry *entry;
952 unsigned long irq_flags;
953
Steven Rostedt92205c22008-05-12 21:20:55 +0200954 raw_local_irq_save(irq_flags);
955 __raw_spin_lock(&data->lock);
Ingo Molnar57422792008-05-12 21:20:51 +0200956 entry = tracing_get_trace_entry(tr, data);
957 tracing_generic_entry_update(entry, flags);
958 entry->type = TRACE_WAKE;
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400959 entry->field.ctx.prev_pid = curr->pid;
960 entry->field.ctx.prev_prio = curr->prio;
961 entry->field.ctx.prev_state = curr->state;
962 entry->field.ctx.next_pid = wakee->pid;
963 entry->field.ctx.next_prio = wakee->prio;
964 entry->field.ctx.next_state = wakee->state;
Peter Zijlstra80b5e942008-09-04 10:24:16 +0200965 entry->field.ctx.next_cpu = task_cpu(wakee);
Ingo Molnar74f4e362008-05-12 21:21:15 +0200966 __trace_stack(tr, data, flags, 6);
Steven Rostedt92205c22008-05-12 21:20:55 +0200967 __raw_spin_unlock(&data->lock);
968 raw_local_irq_restore(irq_flags);
Ingo Molnar017730c2008-05-12 21:20:52 +0200969
970 trace_wake_up();
Ingo Molnar57422792008-05-12 21:20:51 +0200971}
972
Steven Rostedt4902f882008-05-22 00:22:18 -0400973void
974ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3)
975{
976 struct trace_array *tr = &global_trace;
977 struct trace_array_cpu *data;
978 unsigned long flags;
979 long disabled;
980 int cpu;
981
982 if (tracing_disabled || current_trace == &no_tracer || !tr->ctrl)
983 return;
984
985 local_irq_save(flags);
986 cpu = raw_smp_processor_id();
987 data = tr->data[cpu];
988 disabled = atomic_inc_return(&data->disabled);
989
990 if (likely(disabled == 1))
991 __trace_special(tr, data, arg1, arg2, arg3);
992
993 atomic_dec(&data->disabled);
994 local_irq_restore(flags);
995}
996
Ingo Molnar2e0f5762008-05-12 21:20:49 +0200997#ifdef CONFIG_FTRACE
Ingo Molnare309b412008-05-12 21:20:51 +0200998static void
Ingo Molnar2e0f5762008-05-12 21:20:49 +0200999function_trace_call(unsigned long ip, unsigned long parent_ip)
1000{
1001 struct trace_array *tr = &global_trace;
1002 struct trace_array_cpu *data;
1003 unsigned long flags;
1004 long disabled;
1005 int cpu;
1006
Steven Rostedt60bc0802008-07-10 20:58:16 -04001007 if (unlikely(!ftrace_function_enabled))
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001008 return;
1009
Abhishek Sagarecea6562008-06-21 23:47:53 +05301010 if (skip_trace(ip))
1011 return;
1012
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001013 local_irq_save(flags);
1014 cpu = raw_smp_processor_id();
1015 data = tr->data[cpu];
1016 disabled = atomic_inc_return(&data->disabled);
1017
1018 if (likely(disabled == 1))
Steven Rostedt6fb44b72008-05-12 21:20:49 +02001019 trace_function(tr, data, ip, parent_ip, flags);
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001020
1021 atomic_dec(&data->disabled);
1022 local_irq_restore(flags);
1023}
1024
1025static struct ftrace_ops trace_ops __read_mostly =
1026{
1027 .func = function_trace_call,
1028};
1029
Ingo Molnare309b412008-05-12 21:20:51 +02001030void tracing_start_function_trace(void)
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001031{
Steven Rostedt60bc0802008-07-10 20:58:16 -04001032 ftrace_function_enabled = 0;
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001033 register_ftrace_function(&trace_ops);
Steven Rostedt60bc0802008-07-10 20:58:16 -04001034 if (tracer_enabled)
1035 ftrace_function_enabled = 1;
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001036}
1037
Ingo Molnare309b412008-05-12 21:20:51 +02001038void tracing_stop_function_trace(void)
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001039{
Steven Rostedt60bc0802008-07-10 20:58:16 -04001040 ftrace_function_enabled = 0;
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001041 unregister_ftrace_function(&trace_ops);
1042}
1043#endif
1044
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001045enum trace_file_type {
1046 TRACE_FILE_LAT_FMT = 1,
1047};
1048
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001049/* Return the current entry. */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001050static struct trace_entry *
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001051trace_entry_idx(struct trace_array *tr, struct trace_array_cpu *data,
1052 struct trace_iterator *iter, int cpu)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001053{
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001054 struct page *page;
1055 struct trace_entry *array;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001056
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001057 if (iter->next_idx[cpu] >= tr->entries ||
Steven Rostedtb3806b42008-05-12 21:20:46 +02001058 iter->next_idx[cpu] >= data->trace_idx ||
1059 (data->trace_head == data->trace_tail &&
1060 data->trace_head_idx == data->trace_tail_idx))
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001061 return NULL;
1062
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001063 if (!iter->next_page[cpu]) {
Steven Rostedt93a588f2008-05-12 21:20:45 +02001064 /* Initialize the iterator for this cpu trace buffer */
1065 WARN_ON(!data->trace_tail);
1066 page = virt_to_page(data->trace_tail);
1067 iter->next_page[cpu] = &page->lru;
1068 iter->next_page_idx[cpu] = data->trace_tail_idx;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001069 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001070
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001071 page = list_entry(iter->next_page[cpu], struct page, lru);
Ingo Molnarc7aafc52008-05-12 21:20:45 +02001072 BUG_ON(&data->trace_pages == &page->lru);
1073
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001074 array = page_address(page);
1075
Steven Rostedt93a588f2008-05-12 21:20:45 +02001076 WARN_ON(iter->next_page_idx[cpu] >= ENTRIES_PER_PAGE);
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001077 return &array[iter->next_page_idx[cpu]];
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001078}
1079
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001080/* Increment the index counter of an iterator by one */
Steven Rostedt5a90f572008-09-03 17:42:51 -04001081static void __trace_iterator_increment(struct trace_iterator *iter, int cpu)
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001082{
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001083 iter->next_idx[cpu]++;
1084 iter->next_page_idx[cpu]++;
1085
1086 if (iter->next_page_idx[cpu] >= ENTRIES_PER_PAGE) {
1087 struct trace_array_cpu *data = iter->tr->data[cpu];
1088
1089 iter->next_page_idx[cpu] = 0;
1090 iter->next_page[cpu] =
1091 trace_next_list(data, iter->next_page[cpu]);
1092 }
1093}
1094
Steven Rostedt5a90f572008-09-03 17:42:51 -04001095static void trace_iterator_increment(struct trace_iterator *iter, int cpu)
1096{
1097 iter->idx++;
1098 __trace_iterator_increment(iter, cpu);
1099}
1100
Ingo Molnare309b412008-05-12 21:20:51 +02001101static struct trace_entry *
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001102trace_entry_next(struct trace_array *tr, struct trace_array_cpu *data,
1103 struct trace_iterator *iter, int cpu)
1104{
1105 struct list_head *next_page;
1106 struct trace_entry *ent;
1107 int idx, next_idx, next_page_idx;
1108
1109 ent = trace_entry_idx(tr, tr->data[cpu], iter, cpu);
1110
1111 if (likely(!ent || ent->type != TRACE_CONT))
1112 return ent;
1113
1114 /* save the iterator details */
1115 idx = iter->idx;
1116 next_idx = iter->next_idx[cpu];
1117 next_page_idx = iter->next_page_idx[cpu];
1118 next_page = iter->next_page[cpu];
1119
1120 /* find a real entry */
1121 do {
Steven Rostedt5a90f572008-09-03 17:42:51 -04001122 __trace_iterator_increment(iter, cpu);
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001123 ent = trace_entry_idx(tr, tr->data[cpu], iter, cpu);
1124 } while (ent && ent->type != TRACE_CONT);
1125
1126 /* reset the iterator */
1127 iter->idx = idx;
1128 iter->next_idx[cpu] = next_idx;
1129 iter->next_page_idx[cpu] = next_page_idx;
1130 iter->next_page[cpu] = next_page;
1131
1132 return ent;
1133}
1134
1135static struct trace_entry *
1136__find_next_entry(struct trace_iterator *iter, int *ent_cpu, int inc)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001137{
1138 struct trace_array *tr = iter->tr;
1139 struct trace_entry *ent, *next = NULL;
1140 int next_cpu = -1;
1141 int cpu;
1142
Steven Rostedtab464282008-05-12 21:21:00 +02001143 for_each_tracing_cpu(cpu) {
Ingo Molnarc7aafc52008-05-12 21:20:45 +02001144 if (!head_page(tr->data[cpu]))
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001145 continue;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001146
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001147 ent = trace_entry_idx(tr, tr->data[cpu], iter, cpu);
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001148
1149 if (ent && ent->type == TRACE_CONT) {
1150 struct trace_array_cpu *data = tr->data[cpu];
1151
1152 if (!inc)
1153 ent = trace_entry_next(tr, data, iter, cpu);
1154 else {
1155 while (ent && ent->type == TRACE_CONT) {
Steven Rostedt5a90f572008-09-03 17:42:51 -04001156 __trace_iterator_increment(iter, cpu);
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001157 ent = trace_entry_idx(tr, tr->data[cpu],
1158 iter, cpu);
1159 }
1160 }
1161 }
1162
Ingo Molnarcdd31cd2008-05-12 21:20:46 +02001163 /*
1164 * Pick the entry with the smallest timestamp:
1165 */
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001166 if (ent && (!next || ent->field.t < next->field.t)) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001167 next = ent;
1168 next_cpu = cpu;
1169 }
1170 }
1171
1172 if (ent_cpu)
1173 *ent_cpu = next_cpu;
1174
1175 return next;
1176}
1177
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001178/* Find the next real entry, without updating the iterator itself */
1179static struct trace_entry *
1180find_next_entry(struct trace_iterator *iter, int *ent_cpu)
Steven Rostedtb3806b42008-05-12 21:20:46 +02001181{
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001182 return __find_next_entry(iter, ent_cpu, 0);
1183}
Ingo Molnar8c523a92008-05-12 21:20:46 +02001184
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001185/* Find the next real entry, and increment the iterator to the next entry */
1186static void *find_next_entry_inc(struct trace_iterator *iter)
1187{
1188 struct trace_entry *next;
1189 int next_cpu = -1;
Steven Rostedtb3806b42008-05-12 21:20:46 +02001190
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001191 next = __find_next_entry(iter, &next_cpu, 1);
1192
1193 iter->prev_ent = iter->ent;
1194 iter->prev_cpu = iter->cpu;
1195
1196 iter->ent = next;
1197 iter->cpu = next_cpu;
1198
1199 if (next)
1200 trace_iterator_increment(iter, iter->cpu);
1201
1202 return next ? iter : NULL;
Steven Rostedtb3806b42008-05-12 21:20:46 +02001203}
1204
Ingo Molnare309b412008-05-12 21:20:51 +02001205static void trace_consume(struct trace_iterator *iter)
Steven Rostedtb3806b42008-05-12 21:20:46 +02001206{
1207 struct trace_array_cpu *data = iter->tr->data[iter->cpu];
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001208 struct trace_entry *ent;
Steven Rostedtb3806b42008-05-12 21:20:46 +02001209
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001210 again:
Steven Rostedtb3806b42008-05-12 21:20:46 +02001211 data->trace_tail_idx++;
1212 if (data->trace_tail_idx >= ENTRIES_PER_PAGE) {
1213 data->trace_tail = trace_next_page(data, data->trace_tail);
1214 data->trace_tail_idx = 0;
1215 }
1216
1217 /* Check if we empty it, then reset the index */
1218 if (data->trace_head == data->trace_tail &&
1219 data->trace_head_idx == data->trace_tail_idx)
1220 data->trace_idx = 0;
Steven Rostedtb3806b42008-05-12 21:20:46 +02001221
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001222 ent = trace_entry_idx(iter->tr, iter->tr->data[iter->cpu],
1223 iter, iter->cpu);
1224 if (ent && ent->type == TRACE_CONT)
1225 goto again;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001226}
1227
Ingo Molnare309b412008-05-12 21:20:51 +02001228static void *s_next(struct seq_file *m, void *v, loff_t *pos)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001229{
1230 struct trace_iterator *iter = m->private;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001231 int i = (int)*pos;
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001232 void *ent;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001233
1234 (*pos)++;
1235
1236 /* can't go backwards */
1237 if (iter->idx > i)
1238 return NULL;
1239
1240 if (iter->idx < 0)
1241 ent = find_next_entry_inc(iter);
1242 else
1243 ent = iter;
1244
1245 while (ent && iter->idx < i)
1246 ent = find_next_entry_inc(iter);
1247
1248 iter->pos = *pos;
1249
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001250 return ent;
1251}
1252
1253static void *s_start(struct seq_file *m, loff_t *pos)
1254{
1255 struct trace_iterator *iter = m->private;
1256 void *p = NULL;
1257 loff_t l = 0;
1258 int i;
1259
1260 mutex_lock(&trace_types_lock);
1261
Steven Rostedtd15f57f2008-05-12 21:20:56 +02001262 if (!current_trace || current_trace != iter->trace) {
1263 mutex_unlock(&trace_types_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001264 return NULL;
Steven Rostedtd15f57f2008-05-12 21:20:56 +02001265 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001266
1267 atomic_inc(&trace_record_cmdline_disabled);
1268
1269 /* let the tracer grab locks here if needed */
1270 if (current_trace->start)
1271 current_trace->start(iter);
1272
1273 if (*pos != iter->pos) {
1274 iter->ent = NULL;
1275 iter->cpu = 0;
1276 iter->idx = -1;
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001277 iter->prev_ent = NULL;
1278 iter->prev_cpu = -1;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001279
Steven Rostedtab464282008-05-12 21:21:00 +02001280 for_each_tracing_cpu(i) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001281 iter->next_idx[i] = 0;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001282 iter->next_page[i] = NULL;
1283 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001284
1285 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1286 ;
1287
1288 } else {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001289 l = *pos - 1;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001290 p = s_next(m, p, &l);
1291 }
1292
1293 return p;
1294}
1295
1296static void s_stop(struct seq_file *m, void *p)
1297{
1298 struct trace_iterator *iter = m->private;
1299
1300 atomic_dec(&trace_record_cmdline_disabled);
1301
1302 /* let the tracer release locks here if needed */
1303 if (current_trace && current_trace == iter->trace && iter->trace->stop)
1304 iter->trace->stop(iter);
1305
1306 mutex_unlock(&trace_types_lock);
1307}
1308
Abhishek Sagar76094a22008-05-28 00:03:18 +05301309#define KRETPROBE_MSG "[unknown/kretprobe'd]"
1310
1311#ifdef CONFIG_KRETPROBES
1312static inline int kretprobed(unsigned long addr)
1313{
1314 return addr == (unsigned long)kretprobe_trampoline;
1315}
1316#else
1317static inline int kretprobed(unsigned long addr)
1318{
1319 return 0;
1320}
1321#endif /* CONFIG_KRETPROBES */
1322
Steven Rostedtb3806b42008-05-12 21:20:46 +02001323static int
Steven Rostedt214023c2008-05-12 21:20:46 +02001324seq_print_sym_short(struct trace_seq *s, const char *fmt, unsigned long address)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001325{
1326#ifdef CONFIG_KALLSYMS
1327 char str[KSYM_SYMBOL_LEN];
1328
1329 kallsyms_lookup(address, NULL, NULL, NULL, str);
1330
Steven Rostedtb3806b42008-05-12 21:20:46 +02001331 return trace_seq_printf(s, fmt, str);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001332#endif
Steven Rostedtb3806b42008-05-12 21:20:46 +02001333 return 1;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001334}
1335
Steven Rostedtb3806b42008-05-12 21:20:46 +02001336static int
Steven Rostedt214023c2008-05-12 21:20:46 +02001337seq_print_sym_offset(struct trace_seq *s, const char *fmt,
1338 unsigned long address)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001339{
1340#ifdef CONFIG_KALLSYMS
1341 char str[KSYM_SYMBOL_LEN];
1342
1343 sprint_symbol(str, address);
Steven Rostedtb3806b42008-05-12 21:20:46 +02001344 return trace_seq_printf(s, fmt, str);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001345#endif
Steven Rostedtb3806b42008-05-12 21:20:46 +02001346 return 1;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001347}
1348
1349#ifndef CONFIG_64BIT
1350# define IP_FMT "%08lx"
1351#else
1352# define IP_FMT "%016lx"
1353#endif
1354
Ingo Molnare309b412008-05-12 21:20:51 +02001355static int
Steven Rostedt214023c2008-05-12 21:20:46 +02001356seq_print_ip_sym(struct trace_seq *s, unsigned long ip, unsigned long sym_flags)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001357{
Steven Rostedtb3806b42008-05-12 21:20:46 +02001358 int ret;
1359
1360 if (!ip)
1361 return trace_seq_printf(s, "0");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001362
1363 if (sym_flags & TRACE_ITER_SYM_OFFSET)
Steven Rostedtb3806b42008-05-12 21:20:46 +02001364 ret = seq_print_sym_offset(s, "%s", ip);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001365 else
Steven Rostedtb3806b42008-05-12 21:20:46 +02001366 ret = seq_print_sym_short(s, "%s", ip);
1367
1368 if (!ret)
1369 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001370
1371 if (sym_flags & TRACE_ITER_SYM_ADDR)
Steven Rostedtb3806b42008-05-12 21:20:46 +02001372 ret = trace_seq_printf(s, " <" IP_FMT ">", ip);
1373 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001374}
1375
Ingo Molnare309b412008-05-12 21:20:51 +02001376static void print_lat_help_header(struct seq_file *m)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001377{
Michael Ellermana6168352008-08-20 16:36:11 -07001378 seq_puts(m, "# _------=> CPU# \n");
1379 seq_puts(m, "# / _-----=> irqs-off \n");
1380 seq_puts(m, "# | / _----=> need-resched \n");
1381 seq_puts(m, "# || / _---=> hardirq/softirq \n");
1382 seq_puts(m, "# ||| / _--=> preempt-depth \n");
1383 seq_puts(m, "# |||| / \n");
1384 seq_puts(m, "# ||||| delay \n");
1385 seq_puts(m, "# cmd pid ||||| time | caller \n");
1386 seq_puts(m, "# \\ / ||||| \\ | / \n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001387}
1388
Ingo Molnare309b412008-05-12 21:20:51 +02001389static void print_func_help_header(struct seq_file *m)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001390{
Michael Ellermana6168352008-08-20 16:36:11 -07001391 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1392 seq_puts(m, "# | | | | |\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001393}
1394
1395
Ingo Molnare309b412008-05-12 21:20:51 +02001396static void
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001397print_trace_header(struct seq_file *m, struct trace_iterator *iter)
1398{
1399 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1400 struct trace_array *tr = iter->tr;
1401 struct trace_array_cpu *data = tr->data[tr->cpu];
1402 struct tracer *type = current_trace;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001403 unsigned long total = 0;
1404 unsigned long entries = 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001405 int cpu;
1406 const char *name = "preemption";
1407
1408 if (type)
1409 name = type->name;
1410
Steven Rostedtab464282008-05-12 21:21:00 +02001411 for_each_tracing_cpu(cpu) {
Ingo Molnarc7aafc52008-05-12 21:20:45 +02001412 if (head_page(tr->data[cpu])) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001413 total += tr->data[cpu]->trace_idx;
1414 if (tr->data[cpu]->trace_idx > tr->entries)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001415 entries += tr->entries;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001416 else
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001417 entries += tr->data[cpu]->trace_idx;
1418 }
1419 }
1420
1421 seq_printf(m, "%s latency trace v1.1.5 on %s\n",
1422 name, UTS_RELEASE);
1423 seq_puts(m, "-----------------------------------"
1424 "---------------------------------\n");
1425 seq_printf(m, " latency: %lu us, #%lu/%lu, CPU#%d |"
1426 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
Steven Rostedt57f50be2008-05-12 21:20:44 +02001427 nsecs_to_usecs(data->saved_latency),
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001428 entries,
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001429 total,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001430 tr->cpu,
1431#if defined(CONFIG_PREEMPT_NONE)
1432 "server",
1433#elif defined(CONFIG_PREEMPT_VOLUNTARY)
1434 "desktop",
Steven Rostedtb5c21b42008-07-10 20:58:12 -04001435#elif defined(CONFIG_PREEMPT)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001436 "preempt",
1437#else
1438 "unknown",
1439#endif
1440 /* These are reserved for later use */
1441 0, 0, 0, 0);
1442#ifdef CONFIG_SMP
1443 seq_printf(m, " #P:%d)\n", num_online_cpus());
1444#else
1445 seq_puts(m, ")\n");
1446#endif
1447 seq_puts(m, " -----------------\n");
1448 seq_printf(m, " | task: %.16s-%d "
1449 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1450 data->comm, data->pid, data->uid, data->nice,
1451 data->policy, data->rt_priority);
1452 seq_puts(m, " -----------------\n");
1453
1454 if (data->critical_start) {
1455 seq_puts(m, " => started at: ");
Steven Rostedt214023c2008-05-12 21:20:46 +02001456 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
1457 trace_print_seq(m, &iter->seq);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001458 seq_puts(m, "\n => ended at: ");
Steven Rostedt214023c2008-05-12 21:20:46 +02001459 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
1460 trace_print_seq(m, &iter->seq);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001461 seq_puts(m, "\n");
1462 }
1463
1464 seq_puts(m, "\n");
1465}
1466
Ingo Molnare309b412008-05-12 21:20:51 +02001467static void
Steven Rostedt214023c2008-05-12 21:20:46 +02001468lat_print_generic(struct trace_seq *s, struct trace_entry *entry, int cpu)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001469{
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001470 struct trace_field *field = &entry->field;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001471 int hardirq, softirq;
1472 char *comm;
1473
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001474 comm = trace_find_cmdline(field->pid);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001475
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001476 trace_seq_printf(s, "%8.8s-%-5d ", comm, field->pid);
Michael Ellermana6168352008-08-20 16:36:11 -07001477 trace_seq_printf(s, "%3d", cpu);
Steven Rostedt214023c2008-05-12 21:20:46 +02001478 trace_seq_printf(s, "%c%c",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001479 (field->flags & TRACE_FLAG_IRQS_OFF) ? 'd' : '.',
1480 ((field->flags & TRACE_FLAG_NEED_RESCHED) ? 'N' : '.'));
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001481
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001482 hardirq = field->flags & TRACE_FLAG_HARDIRQ;
1483 softirq = field->flags & TRACE_FLAG_SOFTIRQ;
Ingo Molnarafc2abc2008-05-12 21:21:00 +02001484 if (hardirq && softirq) {
Steven Rostedt214023c2008-05-12 21:20:46 +02001485 trace_seq_putc(s, 'H');
Ingo Molnarafc2abc2008-05-12 21:21:00 +02001486 } else {
1487 if (hardirq) {
Steven Rostedt214023c2008-05-12 21:20:46 +02001488 trace_seq_putc(s, 'h');
Ingo Molnarafc2abc2008-05-12 21:21:00 +02001489 } else {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001490 if (softirq)
Steven Rostedt214023c2008-05-12 21:20:46 +02001491 trace_seq_putc(s, 's');
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001492 else
Steven Rostedt214023c2008-05-12 21:20:46 +02001493 trace_seq_putc(s, '.');
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001494 }
1495 }
1496
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001497 if (field->preempt_count)
1498 trace_seq_printf(s, "%x", field->preempt_count);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001499 else
Steven Rostedt214023c2008-05-12 21:20:46 +02001500 trace_seq_puts(s, ".");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001501}
1502
1503unsigned long preempt_mark_thresh = 100;
1504
Ingo Molnare309b412008-05-12 21:20:51 +02001505static void
Steven Rostedt214023c2008-05-12 21:20:46 +02001506lat_print_timestamp(struct trace_seq *s, unsigned long long abs_usecs,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001507 unsigned long rel_usecs)
1508{
Steven Rostedt214023c2008-05-12 21:20:46 +02001509 trace_seq_printf(s, " %4lldus", abs_usecs);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001510 if (rel_usecs > preempt_mark_thresh)
Steven Rostedt214023c2008-05-12 21:20:46 +02001511 trace_seq_puts(s, "!: ");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001512 else if (rel_usecs > 1)
Steven Rostedt214023c2008-05-12 21:20:46 +02001513 trace_seq_puts(s, "+: ");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001514 else
Steven Rostedt214023c2008-05-12 21:20:46 +02001515 trace_seq_puts(s, " : ");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001516}
1517
1518static const char state_to_char[] = TASK_STATE_TO_CHAR_STR;
1519
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001520static void
1521trace_seq_print_cont(struct trace_seq *s, struct trace_iterator *iter)
1522{
1523 struct trace_array *tr = iter->tr;
1524 struct trace_array_cpu *data = tr->data[iter->cpu];
1525 struct trace_entry *ent;
1526
1527 ent = trace_entry_idx(tr, data, iter, iter->cpu);
1528 if (!ent || ent->type != TRACE_CONT) {
1529 trace_seq_putc(s, '\n');
1530 return;
1531 }
1532
1533 do {
1534 trace_seq_printf(s, "%s", ent->cont.buf);
Steven Rostedt5a90f572008-09-03 17:42:51 -04001535 __trace_iterator_increment(iter, iter->cpu);
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001536 ent = trace_entry_idx(tr, data, iter, iter->cpu);
1537 } while (ent && ent->type == TRACE_CONT);
1538}
1539
Ingo Molnare309b412008-05-12 21:20:51 +02001540static int
Steven Rostedt214023c2008-05-12 21:20:46 +02001541print_lat_fmt(struct trace_iterator *iter, unsigned int trace_idx, int cpu)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001542{
Steven Rostedt214023c2008-05-12 21:20:46 +02001543 struct trace_seq *s = &iter->seq;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001544 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1545 struct trace_entry *next_entry = find_next_entry(iter, NULL);
1546 unsigned long verbose = (trace_flags & TRACE_ITER_VERBOSE);
1547 struct trace_entry *entry = iter->ent;
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001548 struct trace_field *field = &entry->field;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001549 unsigned long abs_usecs;
1550 unsigned long rel_usecs;
1551 char *comm;
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001552 int S, T;
Ingo Molnar86387f72008-05-12 21:20:51 +02001553 int i;
Ankita Gargd17d9692008-05-12 21:20:58 +02001554 unsigned state;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001555
1556 if (!next_entry)
1557 next_entry = entry;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001558
1559 if (entry->type == TRACE_CONT)
1560 return 1;
1561
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001562 rel_usecs = ns2usecs(next_entry->field.t - entry->field.t);
1563 abs_usecs = ns2usecs(entry->field.t - iter->tr->time_start);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001564
1565 if (verbose) {
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001566 comm = trace_find_cmdline(field->pid);
Michael Ellermana6168352008-08-20 16:36:11 -07001567 trace_seq_printf(s, "%16s %5d %3d %d %08x %08x [%08lx]"
Steven Rostedt214023c2008-05-12 21:20:46 +02001568 " %ld.%03ldms (+%ld.%03ldms): ",
1569 comm,
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001570 field->pid, cpu, field->flags,
1571 field->preempt_count, trace_idx,
1572 ns2usecs(field->t),
Steven Rostedt214023c2008-05-12 21:20:46 +02001573 abs_usecs/1000,
1574 abs_usecs % 1000, rel_usecs/1000,
1575 rel_usecs % 1000);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001576 } else {
Ingo Molnarf29c73f2008-05-12 21:20:53 +02001577 lat_print_generic(s, entry, cpu);
1578 lat_print_timestamp(s, abs_usecs, rel_usecs);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001579 }
1580 switch (entry->type) {
1581 case TRACE_FN:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001582 seq_print_ip_sym(s, field->fn.ip, sym_flags);
Steven Rostedt214023c2008-05-12 21:20:46 +02001583 trace_seq_puts(s, " (");
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001584 if (kretprobed(field->fn.parent_ip))
Abhishek Sagar76094a22008-05-28 00:03:18 +05301585 trace_seq_puts(s, KRETPROBE_MSG);
1586 else
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001587 seq_print_ip_sym(s, field->fn.parent_ip, sym_flags);
Steven Rostedt214023c2008-05-12 21:20:46 +02001588 trace_seq_puts(s, ")\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001589 break;
1590 case TRACE_CTX:
Ingo Molnar57422792008-05-12 21:20:51 +02001591 case TRACE_WAKE:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001592 T = field->ctx.next_state < sizeof(state_to_char) ?
1593 state_to_char[field->ctx.next_state] : 'X';
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001594
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001595 state = field->ctx.prev_state ?
1596 __ffs(field->ctx.prev_state) + 1 : 0;
Ankita Gargd17d9692008-05-12 21:20:58 +02001597 S = state < sizeof(state_to_char) - 1 ? state_to_char[state] : 'X';
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001598 comm = trace_find_cmdline(field->ctx.next_pid);
Peter Zijlstra80b5e942008-09-04 10:24:16 +02001599 trace_seq_printf(s, " %5d:%3d:%c %s [%03d] %5d:%3d:%c %s\n",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001600 field->ctx.prev_pid,
1601 field->ctx.prev_prio,
Ingo Molnar57422792008-05-12 21:20:51 +02001602 S, entry->type == TRACE_CTX ? "==>" : " +",
Peter Zijlstra80b5e942008-09-04 10:24:16 +02001603 field->ctx.next_cpu,
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001604 field->ctx.next_pid,
1605 field->ctx.next_prio,
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001606 T, comm);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001607 break;
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001608 case TRACE_SPECIAL:
Ingo Molnar88a42162008-05-12 21:20:53 +02001609 trace_seq_printf(s, "# %ld %ld %ld\n",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001610 field->special.arg1,
1611 field->special.arg2,
1612 field->special.arg3);
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001613 break;
Ingo Molnar86387f72008-05-12 21:20:51 +02001614 case TRACE_STACK:
1615 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1616 if (i)
1617 trace_seq_puts(s, " <= ");
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001618 seq_print_ip_sym(s, field->stack.caller[i], sym_flags);
Ingo Molnar86387f72008-05-12 21:20:51 +02001619 }
1620 trace_seq_puts(s, "\n");
1621 break;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001622 case TRACE_PRINT:
1623 seq_print_ip_sym(s, field->print.ip, sym_flags);
1624 trace_seq_printf(s, ": %s", field->print.buf);
Steven Rostedt652567a2008-09-03 17:42:50 -04001625 if (field->flags & TRACE_FLAG_CONT)
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001626 trace_seq_print_cont(s, iter);
1627 break;
Steven Rostedt89b2f972008-05-12 21:20:44 +02001628 default:
Steven Rostedt214023c2008-05-12 21:20:46 +02001629 trace_seq_printf(s, "Unknown type %d\n", entry->type);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001630 }
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001631 return 1;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001632}
1633
Ingo Molnare309b412008-05-12 21:20:51 +02001634static int print_trace_fmt(struct trace_iterator *iter)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001635{
Steven Rostedt214023c2008-05-12 21:20:46 +02001636 struct trace_seq *s = &iter->seq;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001637 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001638 struct trace_entry *entry;
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001639 struct trace_field *field;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001640 unsigned long usec_rem;
1641 unsigned long long t;
1642 unsigned long secs;
1643 char *comm;
Steven Rostedtb3806b42008-05-12 21:20:46 +02001644 int ret;
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001645 int S, T;
Ingo Molnar86387f72008-05-12 21:20:51 +02001646 int i;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001647
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001648 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001649
1650 if (entry->type == TRACE_CONT)
1651 return 1;
1652
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001653 field = &entry->field;
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001654
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001655 comm = trace_find_cmdline(iter->ent->field.pid);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001656
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001657 t = ns2usecs(field->t);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001658 usec_rem = do_div(t, 1000000ULL);
1659 secs = (unsigned long)t;
1660
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001661 ret = trace_seq_printf(s, "%16s-%-5d ", comm, field->pid);
Ingo Molnarf29c73f2008-05-12 21:20:53 +02001662 if (!ret)
1663 return 0;
Michael Ellermana6168352008-08-20 16:36:11 -07001664 ret = trace_seq_printf(s, "[%03d] ", iter->cpu);
Ingo Molnarf29c73f2008-05-12 21:20:53 +02001665 if (!ret)
1666 return 0;
1667 ret = trace_seq_printf(s, "%5lu.%06lu: ", secs, usec_rem);
1668 if (!ret)
1669 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001670
1671 switch (entry->type) {
1672 case TRACE_FN:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001673 ret = seq_print_ip_sym(s, field->fn.ip, sym_flags);
Steven Rostedtb3806b42008-05-12 21:20:46 +02001674 if (!ret)
1675 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001676 if ((sym_flags & TRACE_ITER_PRINT_PARENT) &&
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001677 field->fn.parent_ip) {
Steven Rostedtb3806b42008-05-12 21:20:46 +02001678 ret = trace_seq_printf(s, " <-");
1679 if (!ret)
1680 return 0;
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001681 if (kretprobed(field->fn.parent_ip))
Abhishek Sagar76094a22008-05-28 00:03:18 +05301682 ret = trace_seq_puts(s, KRETPROBE_MSG);
1683 else
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001684 ret = seq_print_ip_sym(s,
1685 field->fn.parent_ip,
Abhishek Sagar76094a22008-05-28 00:03:18 +05301686 sym_flags);
Steven Rostedtb3806b42008-05-12 21:20:46 +02001687 if (!ret)
1688 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001689 }
Steven Rostedtb3806b42008-05-12 21:20:46 +02001690 ret = trace_seq_printf(s, "\n");
1691 if (!ret)
1692 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001693 break;
1694 case TRACE_CTX:
Ingo Molnar57422792008-05-12 21:20:51 +02001695 case TRACE_WAKE:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001696 S = field->ctx.prev_state < sizeof(state_to_char) ?
1697 state_to_char[field->ctx.prev_state] : 'X';
1698 T = field->ctx.next_state < sizeof(state_to_char) ?
1699 state_to_char[field->ctx.next_state] : 'X';
Peter Zijlstra80b5e942008-09-04 10:24:16 +02001700 ret = trace_seq_printf(s, " %5d:%3d:%c %s [%03d] %5d:%3d:%c\n",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001701 field->ctx.prev_pid,
1702 field->ctx.prev_prio,
Steven Rostedtb3806b42008-05-12 21:20:46 +02001703 S,
Ingo Molnar57422792008-05-12 21:20:51 +02001704 entry->type == TRACE_CTX ? "==>" : " +",
Peter Zijlstra80b5e942008-09-04 10:24:16 +02001705 field->ctx.next_cpu,
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001706 field->ctx.next_pid,
1707 field->ctx.next_prio,
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001708 T);
Steven Rostedtb3806b42008-05-12 21:20:46 +02001709 if (!ret)
1710 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001711 break;
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001712 case TRACE_SPECIAL:
Ingo Molnar88a42162008-05-12 21:20:53 +02001713 ret = trace_seq_printf(s, "# %ld %ld %ld\n",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001714 field->special.arg1,
1715 field->special.arg2,
1716 field->special.arg3);
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001717 if (!ret)
1718 return 0;
1719 break;
Ingo Molnar86387f72008-05-12 21:20:51 +02001720 case TRACE_STACK:
1721 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1722 if (i) {
1723 ret = trace_seq_puts(s, " <= ");
1724 if (!ret)
1725 return 0;
1726 }
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001727 ret = seq_print_ip_sym(s, field->stack.caller[i],
Ingo Molnar86387f72008-05-12 21:20:51 +02001728 sym_flags);
1729 if (!ret)
1730 return 0;
1731 }
1732 ret = trace_seq_puts(s, "\n");
1733 if (!ret)
1734 return 0;
1735 break;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001736 case TRACE_PRINT:
1737 seq_print_ip_sym(s, field->print.ip, sym_flags);
1738 trace_seq_printf(s, ": %s", field->print.buf);
Steven Rostedt652567a2008-09-03 17:42:50 -04001739 if (field->flags & TRACE_FLAG_CONT)
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001740 trace_seq_print_cont(s, iter);
1741 break;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001742 }
Steven Rostedtb3806b42008-05-12 21:20:46 +02001743 return 1;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001744}
1745
Ingo Molnare309b412008-05-12 21:20:51 +02001746static int print_raw_fmt(struct trace_iterator *iter)
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001747{
1748 struct trace_seq *s = &iter->seq;
1749 struct trace_entry *entry;
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001750 struct trace_field *field;
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001751 int ret;
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001752 int S, T;
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001753
1754 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001755
1756 if (entry->type == TRACE_CONT)
1757 return 1;
1758
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001759 field = &entry->field;
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001760
1761 ret = trace_seq_printf(s, "%d %d %llu ",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001762 field->pid, iter->cpu, field->t);
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001763 if (!ret)
1764 return 0;
1765
1766 switch (entry->type) {
1767 case TRACE_FN:
1768 ret = trace_seq_printf(s, "%x %x\n",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001769 field->fn.ip,
1770 field->fn.parent_ip);
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001771 if (!ret)
1772 return 0;
1773 break;
1774 case TRACE_CTX:
Ingo Molnar57422792008-05-12 21:20:51 +02001775 case TRACE_WAKE:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001776 S = field->ctx.prev_state < sizeof(state_to_char) ?
1777 state_to_char[field->ctx.prev_state] : 'X';
1778 T = field->ctx.next_state < sizeof(state_to_char) ?
1779 state_to_char[field->ctx.next_state] : 'X';
Ingo Molnar57422792008-05-12 21:20:51 +02001780 if (entry->type == TRACE_WAKE)
1781 S = '+';
Peter Zijlstra80b5e942008-09-04 10:24:16 +02001782 ret = trace_seq_printf(s, "%d %d %c %d %d %d %c\n",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001783 field->ctx.prev_pid,
1784 field->ctx.prev_prio,
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001785 S,
Peter Zijlstra80b5e942008-09-04 10:24:16 +02001786 field->ctx.next_cpu,
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001787 field->ctx.next_pid,
1788 field->ctx.next_prio,
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001789 T);
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001790 if (!ret)
1791 return 0;
1792 break;
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001793 case TRACE_SPECIAL:
Ingo Molnar86387f72008-05-12 21:20:51 +02001794 case TRACE_STACK:
Ingo Molnar88a42162008-05-12 21:20:53 +02001795 ret = trace_seq_printf(s, "# %ld %ld %ld\n",
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001796 field->special.arg1,
1797 field->special.arg2,
1798 field->special.arg3);
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001799 if (!ret)
1800 return 0;
1801 break;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001802 case TRACE_PRINT:
1803 trace_seq_printf(s, "# %lx %s",
1804 field->print.ip, field->print.buf);
Steven Rostedt652567a2008-09-03 17:42:50 -04001805 if (field->flags & TRACE_FLAG_CONT)
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001806 trace_seq_print_cont(s, iter);
1807 break;
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001808 }
1809 return 1;
1810}
1811
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001812#define SEQ_PUT_FIELD_RET(s, x) \
1813do { \
1814 if (!trace_seq_putmem(s, &(x), sizeof(x))) \
1815 return 0; \
1816} while (0)
1817
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001818#define SEQ_PUT_HEX_FIELD_RET(s, x) \
1819do { \
1820 if (!trace_seq_putmem_hex(s, &(x), sizeof(x))) \
1821 return 0; \
1822} while (0)
1823
Ingo Molnare309b412008-05-12 21:20:51 +02001824static int print_hex_fmt(struct trace_iterator *iter)
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001825{
1826 struct trace_seq *s = &iter->seq;
1827 unsigned char newline = '\n';
1828 struct trace_entry *entry;
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001829 struct trace_field *field;
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001830 int S, T;
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001831
1832 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001833
1834 if (entry->type == TRACE_CONT)
1835 return 1;
1836
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001837 field = &entry->field;
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001838
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001839 SEQ_PUT_HEX_FIELD_RET(s, field->pid);
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001840 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001841 SEQ_PUT_HEX_FIELD_RET(s, field->t);
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001842
1843 switch (entry->type) {
1844 case TRACE_FN:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001845 SEQ_PUT_HEX_FIELD_RET(s, field->fn.ip);
1846 SEQ_PUT_HEX_FIELD_RET(s, field->fn.parent_ip);
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001847 break;
1848 case TRACE_CTX:
Ingo Molnar57422792008-05-12 21:20:51 +02001849 case TRACE_WAKE:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001850 S = field->ctx.prev_state < sizeof(state_to_char) ?
1851 state_to_char[field->ctx.prev_state] : 'X';
1852 T = field->ctx.next_state < sizeof(state_to_char) ?
1853 state_to_char[field->ctx.next_state] : 'X';
Ingo Molnar57422792008-05-12 21:20:51 +02001854 if (entry->type == TRACE_WAKE)
1855 S = '+';
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001856 SEQ_PUT_HEX_FIELD_RET(s, field->ctx.prev_pid);
1857 SEQ_PUT_HEX_FIELD_RET(s, field->ctx.prev_prio);
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001858 SEQ_PUT_HEX_FIELD_RET(s, S);
Peter Zijlstra80b5e942008-09-04 10:24:16 +02001859 SEQ_PUT_HEX_FIELD_RET(s, field->ctx.next_cpu);
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001860 SEQ_PUT_HEX_FIELD_RET(s, field->ctx.next_pid);
1861 SEQ_PUT_HEX_FIELD_RET(s, field->ctx.next_prio);
Peter Zijlstrabac524d2008-05-12 21:20:53 +02001862 SEQ_PUT_HEX_FIELD_RET(s, T);
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001863 break;
1864 case TRACE_SPECIAL:
Ingo Molnar86387f72008-05-12 21:20:51 +02001865 case TRACE_STACK:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001866 SEQ_PUT_HEX_FIELD_RET(s, field->special.arg1);
1867 SEQ_PUT_HEX_FIELD_RET(s, field->special.arg2);
1868 SEQ_PUT_HEX_FIELD_RET(s, field->special.arg3);
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001869 break;
1870 }
1871 SEQ_PUT_FIELD_RET(s, newline);
1872
1873 return 1;
1874}
1875
Ingo Molnare309b412008-05-12 21:20:51 +02001876static int print_bin_fmt(struct trace_iterator *iter)
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001877{
1878 struct trace_seq *s = &iter->seq;
1879 struct trace_entry *entry;
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001880 struct trace_field *field;
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001881
1882 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001883
1884 if (entry->type == TRACE_CONT)
1885 return 1;
1886
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001887 field = &entry->field;
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001888
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001889 SEQ_PUT_FIELD_RET(s, field->pid);
1890 SEQ_PUT_FIELD_RET(s, field->cpu);
1891 SEQ_PUT_FIELD_RET(s, field->t);
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001892
1893 switch (entry->type) {
1894 case TRACE_FN:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001895 SEQ_PUT_FIELD_RET(s, field->fn.ip);
1896 SEQ_PUT_FIELD_RET(s, field->fn.parent_ip);
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001897 break;
1898 case TRACE_CTX:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001899 SEQ_PUT_FIELD_RET(s, field->ctx.prev_pid);
1900 SEQ_PUT_FIELD_RET(s, field->ctx.prev_prio);
1901 SEQ_PUT_FIELD_RET(s, field->ctx.prev_state);
1902 SEQ_PUT_FIELD_RET(s, field->ctx.next_pid);
1903 SEQ_PUT_FIELD_RET(s, field->ctx.next_prio);
1904 SEQ_PUT_FIELD_RET(s, field->ctx.next_state);
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001905 break;
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001906 case TRACE_SPECIAL:
Ingo Molnar86387f72008-05-12 21:20:51 +02001907 case TRACE_STACK:
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001908 SEQ_PUT_FIELD_RET(s, field->special.arg1);
1909 SEQ_PUT_FIELD_RET(s, field->special.arg2);
1910 SEQ_PUT_FIELD_RET(s, field->special.arg3);
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001911 break;
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001912 }
1913 return 1;
1914}
1915
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001916static int trace_empty(struct trace_iterator *iter)
1917{
1918 struct trace_array_cpu *data;
1919 int cpu;
1920
Steven Rostedtab464282008-05-12 21:21:00 +02001921 for_each_tracing_cpu(cpu) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001922 data = iter->tr->data[cpu];
1923
Steven Rostedtb3806b42008-05-12 21:20:46 +02001924 if (head_page(data) && data->trace_idx &&
1925 (data->trace_tail != data->trace_head ||
1926 data->trace_tail_idx != data->trace_head_idx))
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001927 return 0;
1928 }
1929 return 1;
1930}
1931
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001932static int print_trace_line(struct trace_iterator *iter)
1933{
Thomas Gleixner72829bc2008-05-23 21:37:28 +02001934 if (iter->trace && iter->trace->print_line)
1935 return iter->trace->print_line(iter);
1936
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02001937 if (trace_flags & TRACE_ITER_BIN)
1938 return print_bin_fmt(iter);
1939
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001940 if (trace_flags & TRACE_ITER_HEX)
1941 return print_hex_fmt(iter);
1942
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001943 if (trace_flags & TRACE_ITER_RAW)
1944 return print_raw_fmt(iter);
1945
1946 if (iter->iter_flags & TRACE_FILE_LAT_FMT)
1947 return print_lat_fmt(iter, iter->idx, iter->cpu);
1948
1949 return print_trace_fmt(iter);
1950}
1951
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001952static int s_show(struct seq_file *m, void *v)
1953{
1954 struct trace_iterator *iter = v;
1955
1956 if (iter->ent == NULL) {
1957 if (iter->tr) {
1958 seq_printf(m, "# tracer: %s\n", iter->trace->name);
1959 seq_puts(m, "#\n");
1960 }
1961 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
1962 /* print nothing if the buffers are empty */
1963 if (trace_empty(iter))
1964 return 0;
1965 print_trace_header(m, iter);
1966 if (!(trace_flags & TRACE_ITER_VERBOSE))
1967 print_lat_help_header(m);
1968 } else {
1969 if (!(trace_flags & TRACE_ITER_VERBOSE))
1970 print_func_help_header(m);
1971 }
1972 } else {
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001973 print_trace_line(iter);
Steven Rostedt214023c2008-05-12 21:20:46 +02001974 trace_print_seq(m, &iter->seq);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001975 }
1976
1977 return 0;
1978}
1979
1980static struct seq_operations tracer_seq_ops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02001981 .start = s_start,
1982 .next = s_next,
1983 .stop = s_stop,
1984 .show = s_show,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001985};
1986
Ingo Molnare309b412008-05-12 21:20:51 +02001987static struct trace_iterator *
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001988__tracing_open(struct inode *inode, struct file *file, int *ret)
1989{
1990 struct trace_iterator *iter;
1991
Steven Rostedt60a11772008-05-12 21:20:44 +02001992 if (tracing_disabled) {
1993 *ret = -ENODEV;
1994 return NULL;
1995 }
1996
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001997 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1998 if (!iter) {
1999 *ret = -ENOMEM;
2000 goto out;
2001 }
2002
2003 mutex_lock(&trace_types_lock);
2004 if (current_trace && current_trace->print_max)
2005 iter->tr = &max_tr;
2006 else
2007 iter->tr = inode->i_private;
2008 iter->trace = current_trace;
2009 iter->pos = -1;
2010
2011 /* TODO stop tracer */
2012 *ret = seq_open(file, &tracer_seq_ops);
2013 if (!*ret) {
2014 struct seq_file *m = file->private_data;
2015 m->private = iter;
2016
2017 /* stop the trace while dumping */
Steven Rostedt60bc0802008-07-10 20:58:16 -04002018 if (iter->tr->ctrl) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002019 tracer_enabled = 0;
Steven Rostedt60bc0802008-07-10 20:58:16 -04002020 ftrace_function_enabled = 0;
2021 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002022
2023 if (iter->trace && iter->trace->open)
2024 iter->trace->open(iter);
2025 } else {
2026 kfree(iter);
2027 iter = NULL;
2028 }
2029 mutex_unlock(&trace_types_lock);
2030
2031 out:
2032 return iter;
2033}
2034
2035int tracing_open_generic(struct inode *inode, struct file *filp)
2036{
Steven Rostedt60a11772008-05-12 21:20:44 +02002037 if (tracing_disabled)
2038 return -ENODEV;
2039
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002040 filp->private_data = inode->i_private;
2041 return 0;
2042}
2043
2044int tracing_release(struct inode *inode, struct file *file)
2045{
2046 struct seq_file *m = (struct seq_file *)file->private_data;
2047 struct trace_iterator *iter = m->private;
2048
2049 mutex_lock(&trace_types_lock);
2050 if (iter->trace && iter->trace->close)
2051 iter->trace->close(iter);
2052
2053 /* reenable tracing if it was previously enabled */
Steven Rostedt60bc0802008-07-10 20:58:16 -04002054 if (iter->tr->ctrl) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002055 tracer_enabled = 1;
Steven Rostedt60bc0802008-07-10 20:58:16 -04002056 /*
2057 * It is safe to enable function tracing even if it
2058 * isn't used
2059 */
2060 ftrace_function_enabled = 1;
2061 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002062 mutex_unlock(&trace_types_lock);
2063
2064 seq_release(inode, file);
2065 kfree(iter);
2066 return 0;
2067}
2068
2069static int tracing_open(struct inode *inode, struct file *file)
2070{
2071 int ret;
2072
2073 __tracing_open(inode, file, &ret);
2074
2075 return ret;
2076}
2077
2078static int tracing_lt_open(struct inode *inode, struct file *file)
2079{
2080 struct trace_iterator *iter;
2081 int ret;
2082
2083 iter = __tracing_open(inode, file, &ret);
2084
2085 if (!ret)
2086 iter->iter_flags |= TRACE_FILE_LAT_FMT;
2087
2088 return ret;
2089}
2090
2091
Ingo Molnare309b412008-05-12 21:20:51 +02002092static void *
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002093t_next(struct seq_file *m, void *v, loff_t *pos)
2094{
2095 struct tracer *t = m->private;
2096
2097 (*pos)++;
2098
2099 if (t)
2100 t = t->next;
2101
2102 m->private = t;
2103
2104 return t;
2105}
2106
2107static void *t_start(struct seq_file *m, loff_t *pos)
2108{
2109 struct tracer *t = m->private;
2110 loff_t l = 0;
2111
2112 mutex_lock(&trace_types_lock);
2113 for (; t && l < *pos; t = t_next(m, t, &l))
2114 ;
2115
2116 return t;
2117}
2118
2119static void t_stop(struct seq_file *m, void *p)
2120{
2121 mutex_unlock(&trace_types_lock);
2122}
2123
2124static int t_show(struct seq_file *m, void *v)
2125{
2126 struct tracer *t = v;
2127
2128 if (!t)
2129 return 0;
2130
2131 seq_printf(m, "%s", t->name);
2132 if (t->next)
2133 seq_putc(m, ' ');
2134 else
2135 seq_putc(m, '\n');
2136
2137 return 0;
2138}
2139
2140static struct seq_operations show_traces_seq_ops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002141 .start = t_start,
2142 .next = t_next,
2143 .stop = t_stop,
2144 .show = t_show,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002145};
2146
2147static int show_traces_open(struct inode *inode, struct file *file)
2148{
2149 int ret;
2150
Steven Rostedt60a11772008-05-12 21:20:44 +02002151 if (tracing_disabled)
2152 return -ENODEV;
2153
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002154 ret = seq_open(file, &show_traces_seq_ops);
2155 if (!ret) {
2156 struct seq_file *m = file->private_data;
2157 m->private = trace_types;
2158 }
2159
2160 return ret;
2161}
2162
2163static struct file_operations tracing_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002164 .open = tracing_open,
2165 .read = seq_read,
2166 .llseek = seq_lseek,
2167 .release = tracing_release,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002168};
2169
2170static struct file_operations tracing_lt_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002171 .open = tracing_lt_open,
2172 .read = seq_read,
2173 .llseek = seq_lseek,
2174 .release = tracing_release,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002175};
2176
2177static struct file_operations show_traces_fops = {
Ingo Molnarc7078de2008-05-12 21:20:52 +02002178 .open = show_traces_open,
2179 .read = seq_read,
2180 .release = seq_release,
2181};
2182
Ingo Molnar36dfe922008-05-12 21:20:52 +02002183/*
2184 * Only trace on a CPU if the bitmask is set:
2185 */
2186static cpumask_t tracing_cpumask = CPU_MASK_ALL;
2187
2188/*
2189 * When tracing/tracing_cpu_mask is modified then this holds
2190 * the new bitmask we are about to install:
2191 */
2192static cpumask_t tracing_cpumask_new;
2193
2194/*
2195 * The tracer itself will not take this lock, but still we want
2196 * to provide a consistent cpumask to user-space:
2197 */
2198static DEFINE_MUTEX(tracing_cpumask_update_lock);
2199
2200/*
2201 * Temporary storage for the character representation of the
2202 * CPU bitmask (and one more byte for the newline):
2203 */
2204static char mask_str[NR_CPUS + 1];
2205
Ingo Molnarc7078de2008-05-12 21:20:52 +02002206static ssize_t
2207tracing_cpumask_read(struct file *filp, char __user *ubuf,
2208 size_t count, loff_t *ppos)
2209{
Ingo Molnar36dfe922008-05-12 21:20:52 +02002210 int len;
Ingo Molnarc7078de2008-05-12 21:20:52 +02002211
2212 mutex_lock(&tracing_cpumask_update_lock);
Ingo Molnar36dfe922008-05-12 21:20:52 +02002213
2214 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
2215 if (count - len < 2) {
2216 count = -EINVAL;
2217 goto out_err;
2218 }
2219 len += sprintf(mask_str + len, "\n");
2220 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
2221
2222out_err:
Ingo Molnarc7078de2008-05-12 21:20:52 +02002223 mutex_unlock(&tracing_cpumask_update_lock);
2224
2225 return count;
2226}
2227
2228static ssize_t
2229tracing_cpumask_write(struct file *filp, const char __user *ubuf,
2230 size_t count, loff_t *ppos)
2231{
Ingo Molnar36dfe922008-05-12 21:20:52 +02002232 int err, cpu;
Ingo Molnarc7078de2008-05-12 21:20:52 +02002233
2234 mutex_lock(&tracing_cpumask_update_lock);
Ingo Molnar36dfe922008-05-12 21:20:52 +02002235 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
2236 if (err)
2237 goto err_unlock;
2238
Steven Rostedt92205c22008-05-12 21:20:55 +02002239 raw_local_irq_disable();
2240 __raw_spin_lock(&ftrace_max_lock);
Steven Rostedtab464282008-05-12 21:21:00 +02002241 for_each_tracing_cpu(cpu) {
Ingo Molnar36dfe922008-05-12 21:20:52 +02002242 /*
2243 * Increase/decrease the disabled counter if we are
2244 * about to flip a bit in the cpumask:
2245 */
2246 if (cpu_isset(cpu, tracing_cpumask) &&
2247 !cpu_isset(cpu, tracing_cpumask_new)) {
2248 atomic_inc(&global_trace.data[cpu]->disabled);
2249 }
2250 if (!cpu_isset(cpu, tracing_cpumask) &&
2251 cpu_isset(cpu, tracing_cpumask_new)) {
2252 atomic_dec(&global_trace.data[cpu]->disabled);
2253 }
2254 }
Steven Rostedt92205c22008-05-12 21:20:55 +02002255 __raw_spin_unlock(&ftrace_max_lock);
2256 raw_local_irq_enable();
Ingo Molnar36dfe922008-05-12 21:20:52 +02002257
2258 tracing_cpumask = tracing_cpumask_new;
2259
Ingo Molnarc7078de2008-05-12 21:20:52 +02002260 mutex_unlock(&tracing_cpumask_update_lock);
2261
Ingo Molnarc7078de2008-05-12 21:20:52 +02002262 return count;
Ingo Molnar36dfe922008-05-12 21:20:52 +02002263
2264err_unlock:
2265 mutex_unlock(&tracing_cpumask_update_lock);
2266
2267 return err;
Ingo Molnarc7078de2008-05-12 21:20:52 +02002268}
2269
2270static struct file_operations tracing_cpumask_fops = {
2271 .open = tracing_open_generic,
2272 .read = tracing_cpumask_read,
2273 .write = tracing_cpumask_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002274};
2275
2276static ssize_t
2277tracing_iter_ctrl_read(struct file *filp, char __user *ubuf,
2278 size_t cnt, loff_t *ppos)
2279{
2280 char *buf;
2281 int r = 0;
2282 int len = 0;
2283 int i;
2284
2285 /* calulate max size */
2286 for (i = 0; trace_options[i]; i++) {
2287 len += strlen(trace_options[i]);
2288 len += 3; /* "no" and space */
2289 }
2290
2291 /* +2 for \n and \0 */
2292 buf = kmalloc(len + 2, GFP_KERNEL);
2293 if (!buf)
2294 return -ENOMEM;
2295
2296 for (i = 0; trace_options[i]; i++) {
2297 if (trace_flags & (1 << i))
2298 r += sprintf(buf + r, "%s ", trace_options[i]);
2299 else
2300 r += sprintf(buf + r, "no%s ", trace_options[i]);
2301 }
2302
2303 r += sprintf(buf + r, "\n");
2304 WARN_ON(r >= len + 2);
2305
Ingo Molnar36dfe922008-05-12 21:20:52 +02002306 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002307
2308 kfree(buf);
2309
2310 return r;
2311}
2312
2313static ssize_t
2314tracing_iter_ctrl_write(struct file *filp, const char __user *ubuf,
2315 size_t cnt, loff_t *ppos)
2316{
2317 char buf[64];
2318 char *cmp = buf;
2319 int neg = 0;
2320 int i;
2321
Steven Rostedtcffae432008-05-12 21:21:00 +02002322 if (cnt >= sizeof(buf))
2323 return -EINVAL;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002324
2325 if (copy_from_user(&buf, ubuf, cnt))
2326 return -EFAULT;
2327
2328 buf[cnt] = 0;
2329
2330 if (strncmp(buf, "no", 2) == 0) {
2331 neg = 1;
2332 cmp += 2;
2333 }
2334
2335 for (i = 0; trace_options[i]; i++) {
2336 int len = strlen(trace_options[i]);
2337
2338 if (strncmp(cmp, trace_options[i], len) == 0) {
2339 if (neg)
2340 trace_flags &= ~(1 << i);
2341 else
2342 trace_flags |= (1 << i);
2343 break;
2344 }
2345 }
Ingo Molnar442e5442008-05-12 21:20:53 +02002346 /*
2347 * If no option could be set, return an error:
2348 */
2349 if (!trace_options[i])
2350 return -EINVAL;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002351
2352 filp->f_pos += cnt;
2353
2354 return cnt;
2355}
2356
2357static struct file_operations tracing_iter_fops = {
Ingo Molnarc7078de2008-05-12 21:20:52 +02002358 .open = tracing_open_generic,
2359 .read = tracing_iter_ctrl_read,
2360 .write = tracing_iter_ctrl_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002361};
2362
Ingo Molnar7bd2f242008-05-12 21:20:45 +02002363static const char readme_msg[] =
2364 "tracing mini-HOWTO:\n\n"
2365 "# mkdir /debug\n"
2366 "# mount -t debugfs nodev /debug\n\n"
2367 "# cat /debug/tracing/available_tracers\n"
2368 "wakeup preemptirqsoff preemptoff irqsoff ftrace sched_switch none\n\n"
2369 "# cat /debug/tracing/current_tracer\n"
2370 "none\n"
2371 "# echo sched_switch > /debug/tracing/current_tracer\n"
2372 "# cat /debug/tracing/current_tracer\n"
2373 "sched_switch\n"
2374 "# cat /debug/tracing/iter_ctrl\n"
2375 "noprint-parent nosym-offset nosym-addr noverbose\n"
2376 "# echo print-parent > /debug/tracing/iter_ctrl\n"
2377 "# echo 1 > /debug/tracing/tracing_enabled\n"
2378 "# cat /debug/tracing/trace > /tmp/trace.txt\n"
2379 "echo 0 > /debug/tracing/tracing_enabled\n"
2380;
2381
2382static ssize_t
2383tracing_readme_read(struct file *filp, char __user *ubuf,
2384 size_t cnt, loff_t *ppos)
2385{
2386 return simple_read_from_buffer(ubuf, cnt, ppos,
2387 readme_msg, strlen(readme_msg));
2388}
2389
2390static struct file_operations tracing_readme_fops = {
Ingo Molnarc7078de2008-05-12 21:20:52 +02002391 .open = tracing_open_generic,
2392 .read = tracing_readme_read,
Ingo Molnar7bd2f242008-05-12 21:20:45 +02002393};
2394
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002395static ssize_t
2396tracing_ctrl_read(struct file *filp, char __user *ubuf,
2397 size_t cnt, loff_t *ppos)
2398{
2399 struct trace_array *tr = filp->private_data;
2400 char buf[64];
2401 int r;
2402
2403 r = sprintf(buf, "%ld\n", tr->ctrl);
Ingo Molnar4e3c3332008-05-12 21:20:45 +02002404 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002405}
2406
2407static ssize_t
2408tracing_ctrl_write(struct file *filp, const char __user *ubuf,
2409 size_t cnt, loff_t *ppos)
2410{
2411 struct trace_array *tr = filp->private_data;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002412 char buf[64];
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002413 long val;
2414 int ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002415
Steven Rostedtcffae432008-05-12 21:21:00 +02002416 if (cnt >= sizeof(buf))
2417 return -EINVAL;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002418
2419 if (copy_from_user(&buf, ubuf, cnt))
2420 return -EFAULT;
2421
2422 buf[cnt] = 0;
2423
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002424 ret = strict_strtoul(buf, 10, &val);
2425 if (ret < 0)
2426 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002427
2428 val = !!val;
2429
2430 mutex_lock(&trace_types_lock);
2431 if (tr->ctrl ^ val) {
2432 if (val)
2433 tracer_enabled = 1;
2434 else
2435 tracer_enabled = 0;
2436
2437 tr->ctrl = val;
2438
2439 if (current_trace && current_trace->ctrl_update)
2440 current_trace->ctrl_update(tr);
2441 }
2442 mutex_unlock(&trace_types_lock);
2443
2444 filp->f_pos += cnt;
2445
2446 return cnt;
2447}
2448
2449static ssize_t
2450tracing_set_trace_read(struct file *filp, char __user *ubuf,
2451 size_t cnt, loff_t *ppos)
2452{
2453 char buf[max_tracer_type_len+2];
2454 int r;
2455
2456 mutex_lock(&trace_types_lock);
2457 if (current_trace)
2458 r = sprintf(buf, "%s\n", current_trace->name);
2459 else
2460 r = sprintf(buf, "\n");
2461 mutex_unlock(&trace_types_lock);
2462
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002463 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002464}
2465
2466static ssize_t
2467tracing_set_trace_write(struct file *filp, const char __user *ubuf,
2468 size_t cnt, loff_t *ppos)
2469{
2470 struct trace_array *tr = &global_trace;
2471 struct tracer *t;
2472 char buf[max_tracer_type_len+1];
2473 int i;
2474
2475 if (cnt > max_tracer_type_len)
2476 cnt = max_tracer_type_len;
2477
2478 if (copy_from_user(&buf, ubuf, cnt))
2479 return -EFAULT;
2480
2481 buf[cnt] = 0;
2482
2483 /* strip ending whitespace. */
2484 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
2485 buf[i] = 0;
2486
2487 mutex_lock(&trace_types_lock);
2488 for (t = trace_types; t; t = t->next) {
2489 if (strcmp(t->name, buf) == 0)
2490 break;
2491 }
2492 if (!t || t == current_trace)
2493 goto out;
2494
2495 if (current_trace && current_trace->reset)
2496 current_trace->reset(tr);
2497
2498 current_trace = t;
2499 if (t->init)
2500 t->init(tr);
2501
2502 out:
2503 mutex_unlock(&trace_types_lock);
2504
2505 filp->f_pos += cnt;
2506
2507 return cnt;
2508}
2509
2510static ssize_t
2511tracing_max_lat_read(struct file *filp, char __user *ubuf,
2512 size_t cnt, loff_t *ppos)
2513{
2514 unsigned long *ptr = filp->private_data;
2515 char buf[64];
2516 int r;
2517
Steven Rostedtcffae432008-05-12 21:21:00 +02002518 r = snprintf(buf, sizeof(buf), "%ld\n",
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002519 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
Steven Rostedtcffae432008-05-12 21:21:00 +02002520 if (r > sizeof(buf))
2521 r = sizeof(buf);
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002522 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002523}
2524
2525static ssize_t
2526tracing_max_lat_write(struct file *filp, const char __user *ubuf,
2527 size_t cnt, loff_t *ppos)
2528{
2529 long *ptr = filp->private_data;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002530 char buf[64];
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002531 long val;
2532 int ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002533
Steven Rostedtcffae432008-05-12 21:21:00 +02002534 if (cnt >= sizeof(buf))
2535 return -EINVAL;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002536
2537 if (copy_from_user(&buf, ubuf, cnt))
2538 return -EFAULT;
2539
2540 buf[cnt] = 0;
2541
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002542 ret = strict_strtoul(buf, 10, &val);
2543 if (ret < 0)
2544 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002545
2546 *ptr = val * 1000;
2547
2548 return cnt;
2549}
2550
Steven Rostedtb3806b42008-05-12 21:20:46 +02002551static atomic_t tracing_reader;
2552
2553static int tracing_open_pipe(struct inode *inode, struct file *filp)
2554{
2555 struct trace_iterator *iter;
2556
2557 if (tracing_disabled)
2558 return -ENODEV;
2559
2560 /* We only allow for reader of the pipe */
2561 if (atomic_inc_return(&tracing_reader) != 1) {
2562 atomic_dec(&tracing_reader);
2563 return -EBUSY;
2564 }
2565
2566 /* create a buffer to store the information to pass to userspace */
2567 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2568 if (!iter)
2569 return -ENOMEM;
2570
Steven Rostedt107bad82008-05-12 21:21:01 +02002571 mutex_lock(&trace_types_lock);
Steven Rostedtb3806b42008-05-12 21:20:46 +02002572 iter->tr = &global_trace;
Thomas Gleixner72829bc2008-05-23 21:37:28 +02002573 iter->trace = current_trace;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002574 filp->private_data = iter;
2575
Steven Rostedt107bad82008-05-12 21:21:01 +02002576 if (iter->trace->pipe_open)
2577 iter->trace->pipe_open(iter);
2578 mutex_unlock(&trace_types_lock);
2579
Steven Rostedtb3806b42008-05-12 21:20:46 +02002580 return 0;
2581}
2582
2583static int tracing_release_pipe(struct inode *inode, struct file *file)
2584{
2585 struct trace_iterator *iter = file->private_data;
2586
2587 kfree(iter);
2588 atomic_dec(&tracing_reader);
2589
2590 return 0;
2591}
2592
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +02002593static unsigned int
2594tracing_poll_pipe(struct file *filp, poll_table *poll_table)
2595{
2596 struct trace_iterator *iter = filp->private_data;
2597
2598 if (trace_flags & TRACE_ITER_BLOCK) {
2599 /*
2600 * Always select as readable when in blocking mode
2601 */
2602 return POLLIN | POLLRDNORM;
Ingo Molnarafc2abc2008-05-12 21:21:00 +02002603 } else {
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +02002604 if (!trace_empty(iter))
2605 return POLLIN | POLLRDNORM;
2606 poll_wait(filp, &trace_wait, poll_table);
2607 if (!trace_empty(iter))
2608 return POLLIN | POLLRDNORM;
2609
2610 return 0;
2611 }
2612}
2613
Steven Rostedtb3806b42008-05-12 21:20:46 +02002614/*
2615 * Consumer reader.
2616 */
2617static ssize_t
2618tracing_read_pipe(struct file *filp, char __user *ubuf,
2619 size_t cnt, loff_t *ppos)
2620{
2621 struct trace_iterator *iter = filp->private_data;
2622 struct trace_array_cpu *data;
2623 static cpumask_t mask;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002624 unsigned long flags;
Ingo Molnar25770462008-05-12 21:20:49 +02002625#ifdef CONFIG_FTRACE
Ingo Molnar2e0f5762008-05-12 21:20:49 +02002626 int ftrace_save;
Ingo Molnar25770462008-05-12 21:20:49 +02002627#endif
Steven Rostedtb3806b42008-05-12 21:20:46 +02002628 int cpu;
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002629 ssize_t sret;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002630
2631 /* return any leftover data */
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002632 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2633 if (sret != -EBUSY)
2634 return sret;
2635 sret = 0;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002636
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002637 trace_seq_reset(&iter->seq);
Steven Rostedtb3806b42008-05-12 21:20:46 +02002638
Steven Rostedt107bad82008-05-12 21:21:01 +02002639 mutex_lock(&trace_types_lock);
2640 if (iter->trace->read) {
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002641 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
2642 if (sret)
Steven Rostedt107bad82008-05-12 21:21:01 +02002643 goto out;
Steven Rostedt107bad82008-05-12 21:21:01 +02002644 }
2645
Steven Rostedtb3806b42008-05-12 21:20:46 +02002646 while (trace_empty(iter)) {
Steven Rostedt2dc8f092008-05-12 21:20:58 +02002647
Steven Rostedt107bad82008-05-12 21:21:01 +02002648 if ((filp->f_flags & O_NONBLOCK)) {
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002649 sret = -EAGAIN;
Steven Rostedt107bad82008-05-12 21:21:01 +02002650 goto out;
2651 }
Steven Rostedt2dc8f092008-05-12 21:20:58 +02002652
Steven Rostedtb3806b42008-05-12 21:20:46 +02002653 /*
2654 * This is a make-shift waitqueue. The reason we don't use
2655 * an actual wait queue is because:
2656 * 1) we only ever have one waiter
2657 * 2) the tracing, traces all functions, we don't want
2658 * the overhead of calling wake_up and friends
2659 * (and tracing them too)
2660 * Anyway, this is really very primitive wakeup.
2661 */
2662 set_current_state(TASK_INTERRUPTIBLE);
2663 iter->tr->waiter = current;
2664
Steven Rostedt107bad82008-05-12 21:21:01 +02002665 mutex_unlock(&trace_types_lock);
2666
Ingo Molnar9fe068e2008-05-12 21:21:02 +02002667 /* sleep for 100 msecs, and try again. */
2668 schedule_timeout(HZ/10);
Steven Rostedtb3806b42008-05-12 21:20:46 +02002669
Steven Rostedt107bad82008-05-12 21:21:01 +02002670 mutex_lock(&trace_types_lock);
2671
Steven Rostedtb3806b42008-05-12 21:20:46 +02002672 iter->tr->waiter = NULL;
2673
Steven Rostedt107bad82008-05-12 21:21:01 +02002674 if (signal_pending(current)) {
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002675 sret = -EINTR;
Steven Rostedt107bad82008-05-12 21:21:01 +02002676 goto out;
2677 }
Steven Rostedtb3806b42008-05-12 21:20:46 +02002678
Steven Rostedt84527992008-05-12 21:20:58 +02002679 if (iter->trace != current_trace)
Steven Rostedt107bad82008-05-12 21:21:01 +02002680 goto out;
Steven Rostedt84527992008-05-12 21:20:58 +02002681
Steven Rostedtb3806b42008-05-12 21:20:46 +02002682 /*
2683 * We block until we read something and tracing is disabled.
2684 * We still block if tracing is disabled, but we have never
2685 * read anything. This allows a user to cat this file, and
2686 * then enable tracing. But after we have read something,
2687 * we give an EOF when tracing is again disabled.
2688 *
2689 * iter->pos will be 0 if we haven't read anything.
2690 */
2691 if (!tracer_enabled && iter->pos)
2692 break;
2693
2694 continue;
2695 }
2696
2697 /* stop when tracing is finished */
2698 if (trace_empty(iter))
Steven Rostedt107bad82008-05-12 21:21:01 +02002699 goto out;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002700
2701 if (cnt >= PAGE_SIZE)
2702 cnt = PAGE_SIZE - 1;
2703
Steven Rostedt53d0aa72008-05-12 21:21:01 +02002704 /* reset all but tr, trace, and overruns */
Steven Rostedt53d0aa72008-05-12 21:21:01 +02002705 memset(&iter->seq, 0,
2706 sizeof(struct trace_iterator) -
2707 offsetof(struct trace_iterator, seq));
Steven Rostedt4823ed72008-05-12 21:21:01 +02002708 iter->pos = -1;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002709
2710 /*
2711 * We need to stop all tracing on all CPUS to read the
2712 * the next buffer. This is a bit expensive, but is
2713 * not done often. We fill all what we can read,
2714 * and then release the locks again.
2715 */
2716
2717 cpus_clear(mask);
2718 local_irq_save(flags);
Ingo Molnar25770462008-05-12 21:20:49 +02002719#ifdef CONFIG_FTRACE
Ingo Molnar2e0f5762008-05-12 21:20:49 +02002720 ftrace_save = ftrace_enabled;
2721 ftrace_enabled = 0;
Ingo Molnar25770462008-05-12 21:20:49 +02002722#endif
Ingo Molnar2e0f5762008-05-12 21:20:49 +02002723 smp_wmb();
Steven Rostedtab464282008-05-12 21:21:00 +02002724 for_each_tracing_cpu(cpu) {
Steven Rostedtb3806b42008-05-12 21:20:46 +02002725 data = iter->tr->data[cpu];
2726
2727 if (!head_page(data) || !data->trace_idx)
2728 continue;
2729
2730 atomic_inc(&data->disabled);
Steven Rostedtb3806b42008-05-12 21:20:46 +02002731 cpu_set(cpu, mask);
2732 }
2733
Ingo Molnar2e0f5762008-05-12 21:20:49 +02002734 for_each_cpu_mask(cpu, mask) {
2735 data = iter->tr->data[cpu];
Steven Rostedt92205c22008-05-12 21:20:55 +02002736 __raw_spin_lock(&data->lock);
Steven Rostedt53d0aa72008-05-12 21:21:01 +02002737
2738 if (data->overrun > iter->last_overrun[cpu])
2739 iter->overrun[cpu] +=
2740 data->overrun - iter->last_overrun[cpu];
2741 iter->last_overrun[cpu] = data->overrun;
Ingo Molnar2e0f5762008-05-12 21:20:49 +02002742 }
2743
Steven Rostedt088b1e422008-05-12 21:20:48 +02002744 while (find_next_entry_inc(iter) != NULL) {
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002745 int ret;
Steven Rostedt088b1e422008-05-12 21:20:48 +02002746 int len = iter->seq.len;
2747
Ingo Molnarf9896bf2008-05-12 21:20:47 +02002748 ret = print_trace_line(iter);
Steven Rostedt088b1e422008-05-12 21:20:48 +02002749 if (!ret) {
2750 /* don't print partial lines */
2751 iter->seq.len = len;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002752 break;
Steven Rostedt088b1e422008-05-12 21:20:48 +02002753 }
Steven Rostedtb3806b42008-05-12 21:20:46 +02002754
2755 trace_consume(iter);
2756
2757 if (iter->seq.len >= cnt)
2758 break;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002759 }
2760
Ingo Molnard4c5a2f2008-05-12 21:20:46 +02002761 for_each_cpu_mask(cpu, mask) {
Steven Rostedtb3806b42008-05-12 21:20:46 +02002762 data = iter->tr->data[cpu];
Steven Rostedt92205c22008-05-12 21:20:55 +02002763 __raw_spin_unlock(&data->lock);
Ingo Molnar2e0f5762008-05-12 21:20:49 +02002764 }
2765
2766 for_each_cpu_mask(cpu, mask) {
2767 data = iter->tr->data[cpu];
Steven Rostedtb3806b42008-05-12 21:20:46 +02002768 atomic_dec(&data->disabled);
2769 }
Ingo Molnar25770462008-05-12 21:20:49 +02002770#ifdef CONFIG_FTRACE
Ingo Molnar2e0f5762008-05-12 21:20:49 +02002771 ftrace_enabled = ftrace_save;
Ingo Molnar25770462008-05-12 21:20:49 +02002772#endif
Steven Rostedtb3806b42008-05-12 21:20:46 +02002773 local_irq_restore(flags);
2774
2775 /* Now copy what we have to the user */
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002776 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2777 if (iter->seq.readpos >= iter->seq.len)
Steven Rostedtb3806b42008-05-12 21:20:46 +02002778 trace_seq_reset(&iter->seq);
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002779 if (sret == -EBUSY)
2780 sret = 0;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002781
Steven Rostedt107bad82008-05-12 21:21:01 +02002782out:
2783 mutex_unlock(&trace_types_lock);
2784
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02002785 return sret;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002786}
2787
Steven Rostedta98a3c32008-05-12 21:20:59 +02002788static ssize_t
2789tracing_entries_read(struct file *filp, char __user *ubuf,
2790 size_t cnt, loff_t *ppos)
2791{
2792 struct trace_array *tr = filp->private_data;
2793 char buf[64];
2794 int r;
2795
2796 r = sprintf(buf, "%lu\n", tr->entries);
2797 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2798}
2799
2800static ssize_t
2801tracing_entries_write(struct file *filp, const char __user *ubuf,
2802 size_t cnt, loff_t *ppos)
2803{
2804 unsigned long val;
2805 char buf[64];
Steven Rostedt19384c02008-05-22 00:22:16 -04002806 int i, ret;
Steven Rostedta98a3c32008-05-12 21:20:59 +02002807
Steven Rostedtcffae432008-05-12 21:21:00 +02002808 if (cnt >= sizeof(buf))
2809 return -EINVAL;
Steven Rostedta98a3c32008-05-12 21:20:59 +02002810
2811 if (copy_from_user(&buf, ubuf, cnt))
2812 return -EFAULT;
2813
2814 buf[cnt] = 0;
2815
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002816 ret = strict_strtoul(buf, 10, &val);
2817 if (ret < 0)
2818 return ret;
Steven Rostedta98a3c32008-05-12 21:20:59 +02002819
2820 /* must have at least 1 entry */
2821 if (!val)
2822 return -EINVAL;
2823
2824 mutex_lock(&trace_types_lock);
2825
2826 if (current_trace != &no_tracer) {
2827 cnt = -EBUSY;
2828 pr_info("ftrace: set current_tracer to none"
2829 " before modifying buffer size\n");
2830 goto out;
2831 }
2832
2833 if (val > global_trace.entries) {
Steven Rostedt3eefae92008-05-12 21:21:04 +02002834 long pages_requested;
2835 unsigned long freeable_pages;
2836
2837 /* make sure we have enough memory before mapping */
2838 pages_requested =
2839 (val + (ENTRIES_PER_PAGE-1)) / ENTRIES_PER_PAGE;
2840
2841 /* account for each buffer (and max_tr) */
2842 pages_requested *= tracing_nr_buffers * 2;
2843
2844 /* Check for overflow */
2845 if (pages_requested < 0) {
2846 cnt = -ENOMEM;
2847 goto out;
2848 }
2849
2850 freeable_pages = determine_dirtyable_memory();
2851
2852 /* we only allow to request 1/4 of useable memory */
2853 if (pages_requested >
2854 ((freeable_pages + tracing_pages_allocated) / 4)) {
2855 cnt = -ENOMEM;
2856 goto out;
2857 }
2858
Steven Rostedta98a3c32008-05-12 21:20:59 +02002859 while (global_trace.entries < val) {
2860 if (trace_alloc_page()) {
2861 cnt = -ENOMEM;
2862 goto out;
2863 }
Steven Rostedt3eefae92008-05-12 21:21:04 +02002864 /* double check that we don't go over the known pages */
2865 if (tracing_pages_allocated > pages_requested)
2866 break;
Steven Rostedta98a3c32008-05-12 21:20:59 +02002867 }
Steven Rostedt3eefae92008-05-12 21:21:04 +02002868
Steven Rostedta98a3c32008-05-12 21:20:59 +02002869 } else {
2870 /* include the number of entries in val (inc of page entries) */
2871 while (global_trace.entries > val + (ENTRIES_PER_PAGE - 1))
2872 trace_free_page();
2873 }
2874
Steven Rostedt19384c02008-05-22 00:22:16 -04002875 /* check integrity */
2876 for_each_tracing_cpu(i)
2877 check_pages(global_trace.data[i]);
2878
Steven Rostedta98a3c32008-05-12 21:20:59 +02002879 filp->f_pos += cnt;
2880
Steven Rostedt19384c02008-05-22 00:22:16 -04002881 /* If check pages failed, return ENOMEM */
2882 if (tracing_disabled)
2883 cnt = -ENOMEM;
Steven Rostedta98a3c32008-05-12 21:20:59 +02002884 out:
2885 max_tr.entries = global_trace.entries;
2886 mutex_unlock(&trace_types_lock);
2887
2888 return cnt;
2889}
2890
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002891static struct file_operations tracing_max_lat_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002892 .open = tracing_open_generic,
2893 .read = tracing_max_lat_read,
2894 .write = tracing_max_lat_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002895};
2896
2897static struct file_operations tracing_ctrl_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002898 .open = tracing_open_generic,
2899 .read = tracing_ctrl_read,
2900 .write = tracing_ctrl_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002901};
2902
2903static struct file_operations set_tracer_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002904 .open = tracing_open_generic,
2905 .read = tracing_set_trace_read,
2906 .write = tracing_set_trace_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002907};
2908
Steven Rostedtb3806b42008-05-12 21:20:46 +02002909static struct file_operations tracing_pipe_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002910 .open = tracing_open_pipe,
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +02002911 .poll = tracing_poll_pipe,
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002912 .read = tracing_read_pipe,
2913 .release = tracing_release_pipe,
Steven Rostedtb3806b42008-05-12 21:20:46 +02002914};
2915
Steven Rostedta98a3c32008-05-12 21:20:59 +02002916static struct file_operations tracing_entries_fops = {
2917 .open = tracing_open_generic,
2918 .read = tracing_entries_read,
2919 .write = tracing_entries_write,
2920};
2921
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002922#ifdef CONFIG_DYNAMIC_FTRACE
2923
2924static ssize_t
2925tracing_read_long(struct file *filp, char __user *ubuf,
2926 size_t cnt, loff_t *ppos)
2927{
2928 unsigned long *p = filp->private_data;
2929 char buf[64];
2930 int r;
2931
2932 r = sprintf(buf, "%ld\n", *p);
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002933
2934 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002935}
2936
2937static struct file_operations tracing_read_long_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002938 .open = tracing_open_generic,
2939 .read = tracing_read_long,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002940};
2941#endif
2942
2943static struct dentry *d_tracer;
2944
2945struct dentry *tracing_init_dentry(void)
2946{
2947 static int once;
2948
2949 if (d_tracer)
2950 return d_tracer;
2951
2952 d_tracer = debugfs_create_dir("tracing", NULL);
2953
2954 if (!d_tracer && !once) {
2955 once = 1;
2956 pr_warning("Could not create debugfs directory 'tracing'\n");
2957 return NULL;
2958 }
2959
2960 return d_tracer;
2961}
2962
Steven Rostedt60a11772008-05-12 21:20:44 +02002963#ifdef CONFIG_FTRACE_SELFTEST
2964/* Let selftest have access to static functions in this file */
2965#include "trace_selftest.c"
2966#endif
2967
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002968static __init void tracer_init_debugfs(void)
2969{
2970 struct dentry *d_tracer;
2971 struct dentry *entry;
2972
2973 d_tracer = tracing_init_dentry();
2974
2975 entry = debugfs_create_file("tracing_enabled", 0644, d_tracer,
2976 &global_trace, &tracing_ctrl_fops);
2977 if (!entry)
2978 pr_warning("Could not create debugfs 'tracing_enabled' entry\n");
2979
2980 entry = debugfs_create_file("iter_ctrl", 0644, d_tracer,
2981 NULL, &tracing_iter_fops);
2982 if (!entry)
2983 pr_warning("Could not create debugfs 'iter_ctrl' entry\n");
2984
Ingo Molnarc7078de2008-05-12 21:20:52 +02002985 entry = debugfs_create_file("tracing_cpumask", 0644, d_tracer,
2986 NULL, &tracing_cpumask_fops);
2987 if (!entry)
2988 pr_warning("Could not create debugfs 'tracing_cpumask' entry\n");
2989
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002990 entry = debugfs_create_file("latency_trace", 0444, d_tracer,
2991 &global_trace, &tracing_lt_fops);
2992 if (!entry)
2993 pr_warning("Could not create debugfs 'latency_trace' entry\n");
2994
2995 entry = debugfs_create_file("trace", 0444, d_tracer,
2996 &global_trace, &tracing_fops);
2997 if (!entry)
2998 pr_warning("Could not create debugfs 'trace' entry\n");
2999
3000 entry = debugfs_create_file("available_tracers", 0444, d_tracer,
3001 &global_trace, &show_traces_fops);
3002 if (!entry)
Frédéric Weisbecker98a983a2008-08-15 21:08:22 +02003003 pr_warning("Could not create debugfs 'available_tracers' entry\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003004
3005 entry = debugfs_create_file("current_tracer", 0444, d_tracer,
3006 &global_trace, &set_tracer_fops);
3007 if (!entry)
Frédéric Weisbecker98a983a2008-08-15 21:08:22 +02003008 pr_warning("Could not create debugfs 'current_tracer' entry\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003009
3010 entry = debugfs_create_file("tracing_max_latency", 0644, d_tracer,
3011 &tracing_max_latency,
3012 &tracing_max_lat_fops);
3013 if (!entry)
3014 pr_warning("Could not create debugfs "
3015 "'tracing_max_latency' entry\n");
3016
3017 entry = debugfs_create_file("tracing_thresh", 0644, d_tracer,
3018 &tracing_thresh, &tracing_max_lat_fops);
3019 if (!entry)
3020 pr_warning("Could not create debugfs "
Frédéric Weisbecker98a983a2008-08-15 21:08:22 +02003021 "'tracing_thresh' entry\n");
Ingo Molnar7bd2f242008-05-12 21:20:45 +02003022 entry = debugfs_create_file("README", 0644, d_tracer,
3023 NULL, &tracing_readme_fops);
3024 if (!entry)
3025 pr_warning("Could not create debugfs 'README' entry\n");
3026
Steven Rostedtb3806b42008-05-12 21:20:46 +02003027 entry = debugfs_create_file("trace_pipe", 0644, d_tracer,
3028 NULL, &tracing_pipe_fops);
3029 if (!entry)
3030 pr_warning("Could not create debugfs "
Frédéric Weisbecker98a983a2008-08-15 21:08:22 +02003031 "'trace_pipe' entry\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003032
Steven Rostedta98a3c32008-05-12 21:20:59 +02003033 entry = debugfs_create_file("trace_entries", 0644, d_tracer,
3034 &global_trace, &tracing_entries_fops);
3035 if (!entry)
3036 pr_warning("Could not create debugfs "
Frédéric Weisbecker98a983a2008-08-15 21:08:22 +02003037 "'trace_entries' entry\n");
Steven Rostedta98a3c32008-05-12 21:20:59 +02003038
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003039#ifdef CONFIG_DYNAMIC_FTRACE
3040 entry = debugfs_create_file("dyn_ftrace_total_info", 0444, d_tracer,
3041 &ftrace_update_tot_cnt,
3042 &tracing_read_long_fops);
3043 if (!entry)
3044 pr_warning("Could not create debugfs "
3045 "'dyn_ftrace_total_info' entry\n");
3046#endif
Ingo Molnard618b3e2008-05-12 21:20:49 +02003047#ifdef CONFIG_SYSPROF_TRACER
3048 init_tracer_sysprof_debugfs(d_tracer);
3049#endif
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003050}
3051
Steven Rostedtdd0e5452008-08-01 12:26:41 -04003052#define TRACE_BUF_SIZE 1024
3053#define TRACE_PRINT_BUF_SIZE \
3054 (sizeof(struct trace_field) - offsetof(struct trace_field, print.buf))
3055#define TRACE_CONT_BUF_SIZE sizeof(struct trace_field)
3056
Steven Rostedtdd0e5452008-08-01 12:26:41 -04003057int __ftrace_printk(unsigned long ip, const char *fmt, ...)
3058{
Steven Rostedtdd0e5452008-08-01 12:26:41 -04003059 static DEFINE_SPINLOCK(trace_buf_lock);
3060 static char trace_buf[TRACE_BUF_SIZE];
Peter Zijlstraf09ce572008-09-04 10:24:14 +02003061
3062 struct trace_array *tr = &global_trace;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04003063 struct trace_array_cpu *data;
3064 struct trace_entry *entry;
3065 unsigned long flags;
3066 long disabled;
3067 va_list ap;
3068 int cpu, len = 0, write, written = 0;
3069
Peter Zijlstraf09ce572008-09-04 10:24:14 +02003070 if (!(trace_flags & TRACE_ITER_PRINTK) || !tr->ctrl || tracing_disabled)
Steven Rostedtdd0e5452008-08-01 12:26:41 -04003071 return 0;
3072
3073 local_irq_save(flags);
3074 cpu = raw_smp_processor_id();
3075 data = tr->data[cpu];
3076 disabled = atomic_inc_return(&data->disabled);
3077
Peter Zijlstraf09ce572008-09-04 10:24:14 +02003078 if (unlikely(disabled != 1))
Steven Rostedtdd0e5452008-08-01 12:26:41 -04003079 goto out;
3080
3081 spin_lock(&trace_buf_lock);
3082 va_start(ap, fmt);
3083 len = vsnprintf(trace_buf, TRACE_BUF_SIZE, fmt, ap);
3084 va_end(ap);
3085
3086 len = min(len, TRACE_BUF_SIZE-1);
3087 trace_buf[len] = 0;
3088
3089 __raw_spin_lock(&data->lock);
3090 entry = tracing_get_trace_entry(tr, data);
3091 tracing_generic_entry_update(entry, flags);
3092 entry->type = TRACE_PRINT;
3093 entry->field.print.ip = ip;
3094
3095 write = min(len, (int)(TRACE_PRINT_BUF_SIZE-1));
3096
3097 memcpy(&entry->field.print.buf, trace_buf, write);
3098 entry->field.print.buf[write] = 0;
3099 written = write;
3100
3101 if (written != len)
3102 entry->field.flags |= TRACE_FLAG_CONT;
3103
3104 while (written != len) {
3105 entry = tracing_get_trace_entry(tr, data);
3106
3107 entry->type = TRACE_CONT;
3108 write = min(len - written, (int)(TRACE_CONT_BUF_SIZE-1));
3109 memcpy(&entry->cont.buf, trace_buf+written, write);
3110 entry->cont.buf[write] = 0;
3111 written += write;
3112 }
3113 __raw_spin_unlock(&data->lock);
3114
3115 spin_unlock(&trace_buf_lock);
3116
3117 out:
3118 atomic_dec(&data->disabled);
3119 local_irq_restore(flags);
3120
3121 return len;
3122}
3123EXPORT_SYMBOL_GPL(__ftrace_printk);
3124
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04003125static int trace_panic_handler(struct notifier_block *this,
3126 unsigned long event, void *unused)
3127{
3128 ftrace_dump();
3129 return NOTIFY_OK;
3130}
3131
3132static struct notifier_block trace_panic_notifier = {
3133 .notifier_call = trace_panic_handler,
3134 .next = NULL,
3135 .priority = 150 /* priority: INT_MAX >= x >= 0 */
3136};
3137
3138static int trace_die_handler(struct notifier_block *self,
3139 unsigned long val,
3140 void *data)
3141{
3142 switch (val) {
3143 case DIE_OOPS:
3144 ftrace_dump();
3145 break;
3146 default:
3147 break;
3148 }
3149 return NOTIFY_OK;
3150}
3151
3152static struct notifier_block trace_die_notifier = {
3153 .notifier_call = trace_die_handler,
3154 .priority = 200
3155};
3156
3157/*
3158 * printk is set to max of 1024, we really don't need it that big.
3159 * Nothing should be printing 1000 characters anyway.
3160 */
3161#define TRACE_MAX_PRINT 1000
3162
3163/*
3164 * Define here KERN_TRACE so that we have one place to modify
3165 * it if we decide to change what log level the ftrace dump
3166 * should be at.
3167 */
3168#define KERN_TRACE KERN_INFO
3169
3170static void
3171trace_printk_seq(struct trace_seq *s)
3172{
3173 /* Probably should print a warning here. */
3174 if (s->len >= 1000)
3175 s->len = 1000;
3176
3177 /* should be zero ended, but we are paranoid. */
3178 s->buffer[s->len] = 0;
3179
3180 printk(KERN_TRACE "%s", s->buffer);
3181
3182 trace_seq_reset(s);
3183}
3184
3185
3186void ftrace_dump(void)
3187{
3188 static DEFINE_SPINLOCK(ftrace_dump_lock);
3189 /* use static because iter can be a bit big for the stack */
3190 static struct trace_iterator iter;
3191 struct trace_array_cpu *data;
3192 static cpumask_t mask;
3193 static int dump_ran;
3194 unsigned long flags;
3195 int cnt = 0;
3196 int cpu;
3197
3198 /* only one dump */
3199 spin_lock_irqsave(&ftrace_dump_lock, flags);
3200 if (dump_ran)
3201 goto out;
3202
3203 dump_ran = 1;
3204
3205 /* No turning back! */
3206 ftrace_kill_atomic();
3207
3208 printk(KERN_TRACE "Dumping ftrace buffer:\n");
3209
3210 iter.tr = &global_trace;
3211 iter.trace = current_trace;
3212
3213 /*
3214 * We need to stop all tracing on all CPUS to read the
3215 * the next buffer. This is a bit expensive, but is
3216 * not done often. We fill all what we can read,
3217 * and then release the locks again.
3218 */
3219
3220 cpus_clear(mask);
3221
3222 for_each_tracing_cpu(cpu) {
3223 data = iter.tr->data[cpu];
3224
3225 if (!head_page(data) || !data->trace_idx)
3226 continue;
3227
3228 atomic_inc(&data->disabled);
3229 cpu_set(cpu, mask);
3230 }
3231
3232 for_each_cpu_mask(cpu, mask) {
3233 data = iter.tr->data[cpu];
3234 __raw_spin_lock(&data->lock);
3235
3236 if (data->overrun > iter.last_overrun[cpu])
3237 iter.overrun[cpu] +=
3238 data->overrun - iter.last_overrun[cpu];
3239 iter.last_overrun[cpu] = data->overrun;
3240 }
3241
3242 while (!trace_empty(&iter)) {
3243
3244 if (!cnt)
3245 printk(KERN_TRACE "---------------------------------\n");
3246
3247 cnt++;
3248
3249 /* reset all but tr, trace, and overruns */
3250 memset(&iter.seq, 0,
3251 sizeof(struct trace_iterator) -
3252 offsetof(struct trace_iterator, seq));
3253 iter.iter_flags |= TRACE_FILE_LAT_FMT;
3254 iter.pos = -1;
3255
3256 if (find_next_entry_inc(&iter) != NULL) {
3257 print_trace_line(&iter);
3258 trace_consume(&iter);
3259 }
3260
3261 trace_printk_seq(&iter.seq);
3262 }
3263
3264 if (!cnt)
3265 printk(KERN_TRACE " (ftrace buffer empty)\n");
3266 else
3267 printk(KERN_TRACE "---------------------------------\n");
3268
3269 for_each_cpu_mask(cpu, mask) {
3270 data = iter.tr->data[cpu];
3271 __raw_spin_unlock(&data->lock);
3272 }
3273
3274 for_each_cpu_mask(cpu, mask) {
3275 data = iter.tr->data[cpu];
3276 atomic_dec(&data->disabled);
3277 }
3278
3279
3280 out:
3281 spin_unlock_irqrestore(&ftrace_dump_lock, flags);
3282}
3283
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003284static int trace_alloc_page(void)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003285{
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003286 struct trace_array_cpu *data;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003287 struct page *page, *tmp;
3288 LIST_HEAD(pages);
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003289 void *array;
Steven Rostedt3eefae92008-05-12 21:21:04 +02003290 unsigned pages_allocated = 0;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003291 int i;
3292
3293 /* first allocate a page for each CPU */
Steven Rostedtab464282008-05-12 21:21:00 +02003294 for_each_tracing_cpu(i) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003295 array = (void *)__get_free_page(GFP_KERNEL);
3296 if (array == NULL) {
3297 printk(KERN_ERR "tracer: failed to allocate page"
3298 "for trace buffer!\n");
3299 goto free_pages;
3300 }
3301
Steven Rostedt3eefae92008-05-12 21:21:04 +02003302 pages_allocated++;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003303 page = virt_to_page(array);
3304 list_add(&page->lru, &pages);
3305
3306/* Only allocate if we are actually using the max trace */
3307#ifdef CONFIG_TRACER_MAX_TRACE
3308 array = (void *)__get_free_page(GFP_KERNEL);
3309 if (array == NULL) {
3310 printk(KERN_ERR "tracer: failed to allocate page"
3311 "for trace buffer!\n");
3312 goto free_pages;
3313 }
Steven Rostedt3eefae92008-05-12 21:21:04 +02003314 pages_allocated++;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003315 page = virt_to_page(array);
3316 list_add(&page->lru, &pages);
3317#endif
3318 }
3319
3320 /* Now that we successfully allocate a page per CPU, add them */
Steven Rostedtab464282008-05-12 21:21:00 +02003321 for_each_tracing_cpu(i) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003322 data = global_trace.data[i];
3323 page = list_entry(pages.next, struct page, lru);
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003324 list_del_init(&page->lru);
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003325 list_add_tail(&page->lru, &data->trace_pages);
3326 ClearPageLRU(page);
3327
3328#ifdef CONFIG_TRACER_MAX_TRACE
3329 data = max_tr.data[i];
3330 page = list_entry(pages.next, struct page, lru);
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003331 list_del_init(&page->lru);
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003332 list_add_tail(&page->lru, &data->trace_pages);
3333 SetPageLRU(page);
3334#endif
3335 }
Steven Rostedt3eefae92008-05-12 21:21:04 +02003336 tracing_pages_allocated += pages_allocated;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003337 global_trace.entries += ENTRIES_PER_PAGE;
3338
3339 return 0;
3340
3341 free_pages:
3342 list_for_each_entry_safe(page, tmp, &pages, lru) {
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003343 list_del_init(&page->lru);
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003344 __free_page(page);
3345 }
3346 return -ENOMEM;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003347}
3348
Steven Rostedta98a3c32008-05-12 21:20:59 +02003349static int trace_free_page(void)
3350{
3351 struct trace_array_cpu *data;
3352 struct page *page;
3353 struct list_head *p;
3354 int i;
3355 int ret = 0;
3356
3357 /* free one page from each buffer */
Steven Rostedtab464282008-05-12 21:21:00 +02003358 for_each_tracing_cpu(i) {
Steven Rostedta98a3c32008-05-12 21:20:59 +02003359 data = global_trace.data[i];
3360 p = data->trace_pages.next;
3361 if (p == &data->trace_pages) {
3362 /* should never happen */
3363 WARN_ON(1);
3364 tracing_disabled = 1;
3365 ret = -1;
3366 break;
3367 }
3368 page = list_entry(p, struct page, lru);
3369 ClearPageLRU(page);
3370 list_del(&page->lru);
Steven Rostedt3eefae92008-05-12 21:21:04 +02003371 tracing_pages_allocated--;
3372 tracing_pages_allocated--;
Steven Rostedta98a3c32008-05-12 21:20:59 +02003373 __free_page(page);
3374
3375 tracing_reset(data);
3376
3377#ifdef CONFIG_TRACER_MAX_TRACE
3378 data = max_tr.data[i];
3379 p = data->trace_pages.next;
3380 if (p == &data->trace_pages) {
3381 /* should never happen */
3382 WARN_ON(1);
3383 tracing_disabled = 1;
3384 ret = -1;
3385 break;
3386 }
3387 page = list_entry(p, struct page, lru);
3388 ClearPageLRU(page);
3389 list_del(&page->lru);
3390 __free_page(page);
3391
3392 tracing_reset(data);
3393#endif
3394 }
3395 global_trace.entries -= ENTRIES_PER_PAGE;
3396
3397 return ret;
3398}
3399
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003400__init static int tracer_alloc_buffers(void)
3401{
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003402 struct trace_array_cpu *data;
3403 void *array;
3404 struct page *page;
3405 int pages = 0;
Steven Rostedt60a11772008-05-12 21:20:44 +02003406 int ret = -ENOMEM;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003407 int i;
3408
Steven Rostedtab464282008-05-12 21:21:00 +02003409 /* TODO: make the number of buffers hot pluggable with CPUS */
3410 tracing_nr_buffers = num_possible_cpus();
3411 tracing_buffer_mask = cpu_possible_map;
3412
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003413 /* Allocate the first page for all buffers */
Steven Rostedtab464282008-05-12 21:21:00 +02003414 for_each_tracing_cpu(i) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003415 data = global_trace.data[i] = &per_cpu(global_trace_cpu, i);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003416 max_tr.data[i] = &per_cpu(max_data, i);
3417
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003418 array = (void *)__get_free_page(GFP_KERNEL);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003419 if (array == NULL) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003420 printk(KERN_ERR "tracer: failed to allocate page"
3421 "for trace buffer!\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003422 goto free_buffers;
3423 }
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003424
3425 /* set the array to the list */
3426 INIT_LIST_HEAD(&data->trace_pages);
3427 page = virt_to_page(array);
3428 list_add(&page->lru, &data->trace_pages);
3429 /* use the LRU flag to differentiate the two buffers */
3430 ClearPageLRU(page);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003431
Steven Rostedta98a3c32008-05-12 21:20:59 +02003432 data->lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
3433 max_tr.data[i]->lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
3434
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003435/* Only allocate if we are actually using the max trace */
3436#ifdef CONFIG_TRACER_MAX_TRACE
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003437 array = (void *)__get_free_page(GFP_KERNEL);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003438 if (array == NULL) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003439 printk(KERN_ERR "tracer: failed to allocate page"
3440 "for trace buffer!\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003441 goto free_buffers;
3442 }
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003443
3444 INIT_LIST_HEAD(&max_tr.data[i]->trace_pages);
3445 page = virt_to_page(array);
3446 list_add(&page->lru, &max_tr.data[i]->trace_pages);
3447 SetPageLRU(page);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003448#endif
3449 }
3450
3451 /*
3452 * Since we allocate by orders of pages, we may be able to
3453 * round up a bit.
3454 */
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003455 global_trace.entries = ENTRIES_PER_PAGE;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003456 pages++;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003457
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003458 while (global_trace.entries < trace_nr_entries) {
3459 if (trace_alloc_page())
3460 break;
3461 pages++;
3462 }
Steven Rostedt89b2f972008-05-12 21:20:44 +02003463 max_tr.entries = global_trace.entries;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003464
Jiri Slaby20764ff2008-06-12 11:27:03 +02003465 pr_info("tracer: %d pages allocated for %ld entries of %ld bytes\n",
3466 pages, trace_nr_entries, (long)TRACE_ENTRY_SIZE);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003467 pr_info(" actual entries %ld\n", global_trace.entries);
3468
3469 tracer_init_debugfs();
3470
3471 trace_init_cmdlines();
3472
3473 register_tracer(&no_tracer);
3474 current_trace = &no_tracer;
3475
Steven Rostedt60a11772008-05-12 21:20:44 +02003476 /* All seems OK, enable tracing */
Steven Rostedt4902f882008-05-22 00:22:18 -04003477 global_trace.ctrl = tracer_enabled;
Steven Rostedt60a11772008-05-12 21:20:44 +02003478 tracing_disabled = 0;
3479
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04003480 atomic_notifier_chain_register(&panic_notifier_list,
3481 &trace_panic_notifier);
3482
3483 register_die_notifier(&trace_die_notifier);
3484
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003485 return 0;
3486
3487 free_buffers:
3488 for (i-- ; i >= 0; i--) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003489 struct page *page, *tmp;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003490 struct trace_array_cpu *data = global_trace.data[i];
3491
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003492 if (data) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003493 list_for_each_entry_safe(page, tmp,
3494 &data->trace_pages, lru) {
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003495 list_del_init(&page->lru);
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003496 __free_page(page);
3497 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003498 }
3499
3500#ifdef CONFIG_TRACER_MAX_TRACE
3501 data = max_tr.data[i];
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003502 if (data) {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003503 list_for_each_entry_safe(page, tmp,
3504 &data->trace_pages, lru) {
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003505 list_del_init(&page->lru);
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02003506 __free_page(page);
3507 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003508 }
3509#endif
3510 }
Steven Rostedt60a11772008-05-12 21:20:44 +02003511 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003512}
Steven Rostedt60a11772008-05-12 21:20:44 +02003513fs_initcall(tracer_alloc_buffers);