GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / kernel / trace / trace_output.c
blob02272baa22065c14c98e1c7394d2486a4d6a473e
1 /*
2 * trace_output.c
4 * Copyright (C) 2008 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
6 */
8 #include <linux/module.h>
9 #include <linux/mutex.h>
10 #include <linux/ftrace.h>
12 #include "trace_output.h"
14 /* must be a power of 2 */
15 #define EVENT_HASHSIZE 128
17 DECLARE_RWSEM(trace_event_mutex);
19 static struct hlist_head event_hash[EVENT_HASHSIZE] __read_mostly;
21 static int next_event_type = __TRACE_LAST_TYPE + 1;
23 int trace_print_seq(struct seq_file *m, struct trace_seq *s)
25 int len = s->len >= PAGE_SIZE ? PAGE_SIZE - 1 : s->len;
26 int ret;
28 ret = seq_write(m, s->buffer, len);
31 * Only reset this buffer if we successfully wrote to the
32 * seq_file buffer.
34 if (!ret)
35 trace_seq_init(s);
37 return ret;
40 enum print_line_t trace_print_bprintk_msg_only(struct trace_iterator *iter)
42 struct trace_seq *s = &iter->seq;
43 struct trace_entry *entry = iter->ent;
44 struct bprint_entry *field;
45 int ret;
47 trace_assign_type(field, entry);
49 ret = trace_seq_bprintf(s, field->fmt, field->buf);
50 if (!ret)
51 return TRACE_TYPE_PARTIAL_LINE;
53 return TRACE_TYPE_HANDLED;
56 enum print_line_t trace_print_printk_msg_only(struct trace_iterator *iter)
58 struct trace_seq *s = &iter->seq;
59 struct trace_entry *entry = iter->ent;
60 struct print_entry *field;
61 int ret;
63 trace_assign_type(field, entry);
65 ret = trace_seq_printf(s, "%s", field->buf);
66 if (!ret)
67 return TRACE_TYPE_PARTIAL_LINE;
69 return TRACE_TYPE_HANDLED;
72 /**
73 * trace_seq_printf - sequence printing of trace information
74 * @s: trace sequence descriptor
75 * @fmt: printf format string
77 * It returns 0 if the trace oversizes the buffer's free
78 * space, 1 otherwise.
80 * The tracer may use either sequence operations or its own
81 * copy to user routines. To simplify formating of a trace
82 * trace_seq_printf is used to store strings into a special
83 * buffer (@s). Then the output may be either used by
84 * the sequencer or pulled into another buffer.
86 int
87 trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
89 int len = (PAGE_SIZE - 1) - s->len;
90 va_list ap;
91 int ret;
93 if (s->full || !len)
94 return 0;
96 va_start(ap, fmt);
97 ret = vsnprintf(s->buffer + s->len, len, fmt, ap);
98 va_end(ap);
100 /* If we can't write it all, don't bother writing anything */
101 if (ret >= len) {
102 s->full = 1;
103 return 0;
106 s->len += ret;
108 return 1;
110 EXPORT_SYMBOL_GPL(trace_seq_printf);
113 * trace_seq_vprintf - sequence printing of trace information
114 * @s: trace sequence descriptor
115 * @fmt: printf format string
117 * The tracer may use either sequence operations or its own
118 * copy to user routines. To simplify formating of a trace
119 * trace_seq_printf is used to store strings into a special
120 * buffer (@s). Then the output may be either used by
121 * the sequencer or pulled into another buffer.
124 trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args)
126 int len = (PAGE_SIZE - 1) - s->len;
127 int ret;
129 if (s->full || !len)
130 return 0;
132 ret = vsnprintf(s->buffer + s->len, len, fmt, args);
134 /* If we can't write it all, don't bother writing anything */
135 if (ret >= len) {
136 s->full = 1;
137 return 0;
140 s->len += ret;
142 return len;
144 EXPORT_SYMBOL_GPL(trace_seq_vprintf);
146 int trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary)
148 int len = (PAGE_SIZE - 1) - s->len;
149 int ret;
151 if (s->full || !len)
152 return 0;
154 ret = bstr_printf(s->buffer + s->len, len, fmt, binary);
156 /* If we can't write it all, don't bother writing anything */
157 if (ret >= len) {
158 s->full = 1;
159 return 0;
162 s->len += ret;
164 return len;
168 * trace_seq_puts - trace sequence printing of simple string
169 * @s: trace sequence descriptor
170 * @str: simple string to record
172 * The tracer may use either the sequence operations or its own
173 * copy to user routines. This function records a simple string
174 * into a special buffer (@s) for later retrieval by a sequencer
175 * or other mechanism.
177 int trace_seq_puts(struct trace_seq *s, const char *str)
179 int len = strlen(str);
181 if (s->full)
182 return 0;
184 if (len > ((PAGE_SIZE - 1) - s->len)) {
185 s->full = 1;
186 return 0;
189 memcpy(s->buffer + s->len, str, len);
190 s->len += len;
192 return len;
195 int trace_seq_putc(struct trace_seq *s, unsigned char c)
197 if (s->full)
198 return 0;
200 if (s->len >= (PAGE_SIZE - 1)) {
201 s->full = 1;
202 return 0;
205 s->buffer[s->len++] = c;
207 return 1;
209 EXPORT_SYMBOL(trace_seq_putc);
211 int trace_seq_putmem(struct trace_seq *s, const void *mem, size_t len)
213 if (s->full)
214 return 0;
216 if (len > ((PAGE_SIZE - 1) - s->len)) {
217 s->full = 1;
218 return 0;
221 memcpy(s->buffer + s->len, mem, len);
222 s->len += len;
224 return len;
227 int trace_seq_putmem_hex(struct trace_seq *s, const void *mem, size_t len)
229 unsigned char hex[HEX_CHARS];
230 const unsigned char *data = mem;
231 int i, j;
233 if (s->full)
234 return 0;
236 #ifdef __BIG_ENDIAN
237 for (i = 0, j = 0; i < len; i++) {
238 #else
239 for (i = len-1, j = 0; i >= 0; i--) {
240 #endif
241 hex[j++] = hex_asc_hi(data[i]);
242 hex[j++] = hex_asc_lo(data[i]);
244 hex[j++] = ' ';
246 return trace_seq_putmem(s, hex, j);
249 void *trace_seq_reserve(struct trace_seq *s, size_t len)
251 void *ret;
253 if (s->full)
254 return NULL;
256 if (len > ((PAGE_SIZE - 1) - s->len)) {
257 s->full = 1;
258 return NULL;
261 ret = s->buffer + s->len;
262 s->len += len;
264 return ret;
267 int trace_seq_path(struct trace_seq *s, struct path *path)
269 unsigned char *p;
271 if (s->full)
272 return 0;
274 if (s->len >= (PAGE_SIZE - 1)) {
275 s->full = 1;
276 return 0;
279 p = d_path(path, s->buffer + s->len, PAGE_SIZE - s->len);
280 if (!IS_ERR(p)) {
281 p = mangle_path(s->buffer + s->len, p, "\n");
282 if (p) {
283 s->len = p - s->buffer;
284 return 1;
286 } else {
287 s->buffer[s->len++] = '?';
288 return 1;
291 s->full = 1;
292 return 0;
295 const char *
296 ftrace_print_flags_seq(struct trace_seq *p, const char *delim,
297 unsigned long flags,
298 const struct trace_print_flags *flag_array)
300 unsigned long mask;
301 const char *str;
302 const char *ret = p->buffer + p->len;
303 int i;
305 for (i = 0; flag_array[i].name && flags; i++) {
307 mask = flag_array[i].mask;
308 if ((flags & mask) != mask)
309 continue;
311 str = flag_array[i].name;
312 flags &= ~mask;
313 if (p->len && delim)
314 trace_seq_puts(p, delim);
315 trace_seq_puts(p, str);
318 /* check for left over flags */
319 if (flags) {
320 if (p->len && delim)
321 trace_seq_puts(p, delim);
322 trace_seq_printf(p, "0x%lx", flags);
325 trace_seq_putc(p, 0);
327 return ret;
329 EXPORT_SYMBOL(ftrace_print_flags_seq);
331 const char *
332 ftrace_print_symbols_seq(struct trace_seq *p, unsigned long val,
333 const struct trace_print_flags *symbol_array)
335 int i;
336 const char *ret = p->buffer + p->len;
338 for (i = 0; symbol_array[i].name; i++) {
340 if (val != symbol_array[i].mask)
341 continue;
343 trace_seq_puts(p, symbol_array[i].name);
344 break;
347 if (!p->len)
348 trace_seq_printf(p, "0x%lx", val);
350 trace_seq_putc(p, 0);
352 return ret;
354 EXPORT_SYMBOL(ftrace_print_symbols_seq);
356 const char *
357 ftrace_print_hex_seq(struct trace_seq *p, const unsigned char *buf, int buf_len)
359 int i;
360 const char *ret = p->buffer + p->len;
362 for (i = 0; i < buf_len; i++)
363 trace_seq_printf(p, "%s%2.2x", i == 0 ? "" : " ", buf[i]);
365 trace_seq_putc(p, 0);
367 return ret;
369 EXPORT_SYMBOL(ftrace_print_hex_seq);
371 #ifdef CONFIG_KRETPROBES
372 static inline const char *kretprobed(const char *name)
374 static const char tramp_name[] = "kretprobe_trampoline";
375 int size = sizeof(tramp_name);
377 if (strncmp(tramp_name, name, size) == 0)
378 return "[unknown/kretprobe'd]";
379 return name;
381 #else
382 static inline const char *kretprobed(const char *name)
384 return name;
386 #endif /* CONFIG_KRETPROBES */
388 static int
389 seq_print_sym_short(struct trace_seq *s, const char *fmt, unsigned long address)
391 #ifdef CONFIG_KALLSYMS
392 char str[KSYM_SYMBOL_LEN];
393 const char *name;
395 kallsyms_lookup(address, NULL, NULL, NULL, str);
397 name = kretprobed(str);
399 return trace_seq_printf(s, fmt, name);
400 #endif
401 return 1;
404 static int
405 seq_print_sym_offset(struct trace_seq *s, const char *fmt,
406 unsigned long address)
408 #ifdef CONFIG_KALLSYMS
409 char str[KSYM_SYMBOL_LEN];
410 const char *name;
412 sprint_symbol(str, address);
413 name = kretprobed(str);
415 return trace_seq_printf(s, fmt, name);
416 #endif
417 return 1;
420 #ifndef CONFIG_64BIT
421 # define IP_FMT "%08lx"
422 #else
423 # define IP_FMT "%016lx"
424 #endif
426 int seq_print_user_ip(struct trace_seq *s, struct mm_struct *mm,
427 unsigned long ip, unsigned long sym_flags)
429 struct file *file = NULL;
430 unsigned long vmstart = 0;
431 int ret = 1;
433 if (s->full)
434 return 0;
436 if (mm) {
437 const struct vm_area_struct *vma;
439 down_read(&mm->mmap_sem);
440 vma = find_vma(mm, ip);
441 if (vma) {
442 file = vma->vm_file;
443 vmstart = vma->vm_start;
445 if (file) {
446 ret = trace_seq_path(s, &file->f_path);
447 if (ret)
448 ret = trace_seq_printf(s, "[+0x%lx]",
449 ip - vmstart);
451 up_read(&mm->mmap_sem);
453 if (ret && ((sym_flags & TRACE_ITER_SYM_ADDR) || !file))
454 ret = trace_seq_printf(s, " <" IP_FMT ">", ip);
455 return ret;
459 seq_print_userip_objs(const struct userstack_entry *entry, struct trace_seq *s,
460 unsigned long sym_flags)
462 struct mm_struct *mm = NULL;
463 int ret = 1;
464 unsigned int i;
466 if (trace_flags & TRACE_ITER_SYM_USEROBJ) {
467 struct task_struct *task;
469 * we do the lookup on the thread group leader,
470 * since individual threads might have already quit!
472 rcu_read_lock();
473 task = find_task_by_vpid(entry->tgid);
474 if (task)
475 mm = get_task_mm(task);
476 rcu_read_unlock();
479 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
480 unsigned long ip = entry->caller[i];
482 if (ip == ULONG_MAX || !ret)
483 break;
484 if (ret)
485 ret = trace_seq_puts(s, " => ");
486 if (!ip) {
487 if (ret)
488 ret = trace_seq_puts(s, "??");
489 if (ret)
490 ret = trace_seq_puts(s, "\n");
491 continue;
493 if (!ret)
494 break;
495 if (ret)
496 ret = seq_print_user_ip(s, mm, ip, sym_flags);
497 ret = trace_seq_puts(s, "\n");
500 if (mm)
501 mmput(mm);
502 return ret;
506 seq_print_ip_sym(struct trace_seq *s, unsigned long ip, unsigned long sym_flags)
508 int ret;
510 if (!ip)
511 return trace_seq_printf(s, "0");
513 if (sym_flags & TRACE_ITER_SYM_OFFSET)
514 ret = seq_print_sym_offset(s, "%s", ip);
515 else
516 ret = seq_print_sym_short(s, "%s", ip);
518 if (!ret)
519 return 0;
521 if (sym_flags & TRACE_ITER_SYM_ADDR)
522 ret = trace_seq_printf(s, " <" IP_FMT ">", ip);
523 return ret;
527 * trace_print_lat_fmt - print the irq, preempt and lockdep fields
528 * @s: trace seq struct to write to
529 * @entry: The trace entry field from the ring buffer
531 * Prints the generic fields of irqs off, in hard or softirq, preempt
532 * count and lock depth.
534 int trace_print_lat_fmt(struct trace_seq *s, struct trace_entry *entry)
536 int hardirq, softirq;
537 int ret;
539 hardirq = entry->flags & TRACE_FLAG_HARDIRQ;
540 softirq = entry->flags & TRACE_FLAG_SOFTIRQ;
542 if (!trace_seq_printf(s, "%c%c%c",
543 (entry->flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
544 (entry->flags & TRACE_FLAG_IRQS_NOSUPPORT) ?
545 'X' : '.',
546 (entry->flags & TRACE_FLAG_NEED_RESCHED) ?
547 'N' : '.',
548 (hardirq && softirq) ? 'H' :
549 hardirq ? 'h' : softirq ? 's' : '.'))
550 return 0;
552 if (entry->preempt_count)
553 ret = trace_seq_printf(s, "%x", entry->preempt_count);
554 else
555 ret = trace_seq_putc(s, '.');
557 if (!ret)
558 return 0;
560 if (entry->lock_depth < 0)
561 return trace_seq_putc(s, '.');
563 return trace_seq_printf(s, "%d", entry->lock_depth);
566 static int
567 lat_print_generic(struct trace_seq *s, struct trace_entry *entry, int cpu)
569 char comm[TASK_COMM_LEN];
571 trace_find_cmdline(entry->pid, comm);
573 if (!trace_seq_printf(s, "%8.8s-%-5d %3d",
574 comm, entry->pid, cpu))
575 return 0;
577 return trace_print_lat_fmt(s, entry);
580 static unsigned long preempt_mark_thresh = 100;
582 static int
583 lat_print_timestamp(struct trace_seq *s, u64 abs_usecs,
584 unsigned long rel_usecs)
586 return trace_seq_printf(s, " %4lldus%c: ", abs_usecs,
587 rel_usecs > preempt_mark_thresh ? '!' :
588 rel_usecs > 1 ? '+' : ' ');
591 int trace_print_context(struct trace_iterator *iter)
593 struct trace_seq *s = &iter->seq;
594 struct trace_entry *entry = iter->ent;
595 unsigned long long t = ns2usecs(iter->ts);
596 unsigned long usec_rem = do_div(t, USEC_PER_SEC);
597 unsigned long secs = (unsigned long)t;
598 char comm[TASK_COMM_LEN];
600 trace_find_cmdline(entry->pid, comm);
602 return trace_seq_printf(s, "%16s-%-5d [%03d] %5lu.%06lu: ",
603 comm, entry->pid, iter->cpu, secs, usec_rem);
606 int trace_print_lat_context(struct trace_iterator *iter)
608 u64 next_ts;
609 int ret;
610 struct trace_seq *s = &iter->seq;
611 struct trace_entry *entry = iter->ent,
612 *next_entry = trace_find_next_entry(iter, NULL,
613 &next_ts);
614 unsigned long verbose = (trace_flags & TRACE_ITER_VERBOSE);
615 unsigned long abs_usecs = ns2usecs(iter->ts - iter->tr->time_start);
616 unsigned long rel_usecs;
618 if (!next_entry)
619 next_ts = iter->ts;
620 rel_usecs = ns2usecs(next_ts - iter->ts);
622 if (verbose) {
623 char comm[TASK_COMM_LEN];
625 trace_find_cmdline(entry->pid, comm);
627 ret = trace_seq_printf(s, "%16s %5d %3d %d %08x %08lx [%08llx]"
628 " %ld.%03ldms (+%ld.%03ldms): ", comm,
629 entry->pid, iter->cpu, entry->flags,
630 entry->preempt_count, iter->idx,
631 ns2usecs(iter->ts),
632 abs_usecs / USEC_PER_MSEC,
633 abs_usecs % USEC_PER_MSEC,
634 rel_usecs / USEC_PER_MSEC,
635 rel_usecs % USEC_PER_MSEC);
636 } else {
637 ret = lat_print_generic(s, entry, iter->cpu);
638 if (ret)
639 ret = lat_print_timestamp(s, abs_usecs, rel_usecs);
642 return ret;
645 static const char state_to_char[] = TASK_STATE_TO_CHAR_STR;
647 static int task_state_char(unsigned long state)
649 int bit = state ? __ffs(state) + 1 : 0;
651 return bit < sizeof(state_to_char) - 1 ? state_to_char[bit] : '?';
655 * ftrace_find_event - find a registered event
656 * @type: the type of event to look for
658 * Returns an event of type @type otherwise NULL
659 * Called with trace_event_read_lock() held.
661 struct trace_event *ftrace_find_event(int type)
663 struct trace_event *event;
664 struct hlist_node *n;
665 unsigned key;
667 key = type & (EVENT_HASHSIZE - 1);
669 hlist_for_each_entry(event, n, &event_hash[key], node) {
670 if (event->type == type)
671 return event;
674 return NULL;
677 static LIST_HEAD(ftrace_event_list);
679 static int trace_search_list(struct list_head **list)
681 struct trace_event *e;
682 int last = __TRACE_LAST_TYPE;
684 if (list_empty(&ftrace_event_list)) {
685 *list = &ftrace_event_list;
686 return last + 1;
690 * We used up all possible max events,
691 * lets see if somebody freed one.
693 list_for_each_entry(e, &ftrace_event_list, list) {
694 if (e->type != last + 1)
695 break;
696 last++;
699 /* Did we used up all 65 thousand events??? */
700 if ((last + 1) > FTRACE_MAX_EVENT)
701 return 0;
703 *list = &e->list;
704 return last + 1;
707 void trace_event_read_lock(void)
709 down_read(&trace_event_mutex);
712 void trace_event_read_unlock(void)
714 up_read(&trace_event_mutex);
718 * register_ftrace_event - register output for an event type
719 * @event: the event type to register
721 * Event types are stored in a hash and this hash is used to
722 * find a way to print an event. If the @event->type is set
723 * then it will use that type, otherwise it will assign a
724 * type to use.
726 * If you assign your own type, please make sure it is added
727 * to the trace_type enum in trace.h, to avoid collisions
728 * with the dynamic types.
730 * Returns the event type number or zero on error.
732 int register_ftrace_event(struct trace_event *event)
734 unsigned key;
735 int ret = 0;
737 down_write(&trace_event_mutex);
739 if (WARN_ON(!event))
740 goto out;
742 if (WARN_ON(!event->funcs))
743 goto out;
745 INIT_LIST_HEAD(&event->list);
747 if (!event->type) {
748 struct list_head *list = NULL;
750 if (next_event_type > FTRACE_MAX_EVENT) {
752 event->type = trace_search_list(&list);
753 if (!event->type)
754 goto out;
756 } else {
758 event->type = next_event_type++;
759 list = &ftrace_event_list;
762 if (WARN_ON(ftrace_find_event(event->type)))
763 goto out;
765 list_add_tail(&event->list, list);
767 } else if (event->type > __TRACE_LAST_TYPE) {
768 printk(KERN_WARNING "Need to add type to trace.h\n");
769 WARN_ON(1);
770 goto out;
771 } else {
772 /* Is this event already used */
773 if (ftrace_find_event(event->type))
774 goto out;
777 if (event->funcs->trace == NULL)
778 event->funcs->trace = trace_nop_print;
779 if (event->funcs->raw == NULL)
780 event->funcs->raw = trace_nop_print;
781 if (event->funcs->hex == NULL)
782 event->funcs->hex = trace_nop_print;
783 if (event->funcs->binary == NULL)
784 event->funcs->binary = trace_nop_print;
786 key = event->type & (EVENT_HASHSIZE - 1);
788 hlist_add_head(&event->node, &event_hash[key]);
790 ret = event->type;
791 out:
792 up_write(&trace_event_mutex);
794 return ret;
796 EXPORT_SYMBOL_GPL(register_ftrace_event);
799 * Used by module code with the trace_event_mutex held for write.
801 int __unregister_ftrace_event(struct trace_event *event)
803 hlist_del(&event->node);
804 list_del(&event->list);
805 return 0;
809 * unregister_ftrace_event - remove a no longer used event
810 * @event: the event to remove
812 int unregister_ftrace_event(struct trace_event *event)
814 down_write(&trace_event_mutex);
815 __unregister_ftrace_event(event);
816 up_write(&trace_event_mutex);
818 return 0;
820 EXPORT_SYMBOL_GPL(unregister_ftrace_event);
823 * Standard events
826 enum print_line_t trace_nop_print(struct trace_iterator *iter, int flags,
827 struct trace_event *event)
829 return TRACE_TYPE_HANDLED;
832 /* TRACE_FN */
833 static enum print_line_t trace_fn_trace(struct trace_iterator *iter, int flags,
834 struct trace_event *event)
836 struct ftrace_entry *field;
837 struct trace_seq *s = &iter->seq;
839 trace_assign_type(field, iter->ent);
841 if (!seq_print_ip_sym(s, field->ip, flags))
842 goto partial;
844 if ((flags & TRACE_ITER_PRINT_PARENT) && field->parent_ip) {
845 if (!trace_seq_printf(s, " <-"))
846 goto partial;
847 if (!seq_print_ip_sym(s,
848 field->parent_ip,
849 flags))
850 goto partial;
852 if (!trace_seq_printf(s, "\n"))
853 goto partial;
855 return TRACE_TYPE_HANDLED;
857 partial:
858 return TRACE_TYPE_PARTIAL_LINE;
861 static enum print_line_t trace_fn_raw(struct trace_iterator *iter, int flags,
862 struct trace_event *event)
864 struct ftrace_entry *field;
866 trace_assign_type(field, iter->ent);
868 if (!trace_seq_printf(&iter->seq, "%lx %lx\n",
869 field->ip,
870 field->parent_ip))
871 return TRACE_TYPE_PARTIAL_LINE;
873 return TRACE_TYPE_HANDLED;
876 static enum print_line_t trace_fn_hex(struct trace_iterator *iter, int flags,
877 struct trace_event *event)
879 struct ftrace_entry *field;
880 struct trace_seq *s = &iter->seq;
882 trace_assign_type(field, iter->ent);
884 SEQ_PUT_HEX_FIELD_RET(s, field->ip);
885 SEQ_PUT_HEX_FIELD_RET(s, field->parent_ip);
887 return TRACE_TYPE_HANDLED;
890 static enum print_line_t trace_fn_bin(struct trace_iterator *iter, int flags,
891 struct trace_event *event)
893 struct ftrace_entry *field;
894 struct trace_seq *s = &iter->seq;
896 trace_assign_type(field, iter->ent);
898 SEQ_PUT_FIELD_RET(s, field->ip);
899 SEQ_PUT_FIELD_RET(s, field->parent_ip);
901 return TRACE_TYPE_HANDLED;
904 static struct trace_event_functions trace_fn_funcs = {
905 .trace = trace_fn_trace,
906 .raw = trace_fn_raw,
907 .hex = trace_fn_hex,
908 .binary = trace_fn_bin,
911 static struct trace_event trace_fn_event = {
912 .type = TRACE_FN,
913 .funcs = &trace_fn_funcs,
916 /* TRACE_CTX an TRACE_WAKE */
917 static enum print_line_t trace_ctxwake_print(struct trace_iterator *iter,
918 char *delim)
920 struct ctx_switch_entry *field;
921 char comm[TASK_COMM_LEN];
922 int S, T;
925 trace_assign_type(field, iter->ent);
927 T = task_state_char(field->next_state);
928 S = task_state_char(field->prev_state);
929 trace_find_cmdline(field->next_pid, comm);
930 if (!trace_seq_printf(&iter->seq,
931 " %5d:%3d:%c %s [%03d] %5d:%3d:%c %s\n",
932 field->prev_pid,
933 field->prev_prio,
934 S, delim,
935 field->next_cpu,
936 field->next_pid,
937 field->next_prio,
938 T, comm))
939 return TRACE_TYPE_PARTIAL_LINE;
941 return TRACE_TYPE_HANDLED;
944 static enum print_line_t trace_ctx_print(struct trace_iterator *iter, int flags,
945 struct trace_event *event)
947 return trace_ctxwake_print(iter, "==>");
950 static enum print_line_t trace_wake_print(struct trace_iterator *iter,
951 int flags, struct trace_event *event)
953 return trace_ctxwake_print(iter, " +");
956 static int trace_ctxwake_raw(struct trace_iterator *iter, char S)
958 struct ctx_switch_entry *field;
959 int T;
961 trace_assign_type(field, iter->ent);
963 if (!S)
964 S = task_state_char(field->prev_state);
965 T = task_state_char(field->next_state);
966 if (!trace_seq_printf(&iter->seq, "%d %d %c %d %d %d %c\n",
967 field->prev_pid,
968 field->prev_prio,
970 field->next_cpu,
971 field->next_pid,
972 field->next_prio,
974 return TRACE_TYPE_PARTIAL_LINE;
976 return TRACE_TYPE_HANDLED;
979 static enum print_line_t trace_ctx_raw(struct trace_iterator *iter, int flags,
980 struct trace_event *event)
982 return trace_ctxwake_raw(iter, 0);
985 static enum print_line_t trace_wake_raw(struct trace_iterator *iter, int flags,
986 struct trace_event *event)
988 return trace_ctxwake_raw(iter, '+');
992 static int trace_ctxwake_hex(struct trace_iterator *iter, char S)
994 struct ctx_switch_entry *field;
995 struct trace_seq *s = &iter->seq;
996 int T;
998 trace_assign_type(field, iter->ent);
1000 if (!S)
1001 S = task_state_char(field->prev_state);
1002 T = task_state_char(field->next_state);
1004 SEQ_PUT_HEX_FIELD_RET(s, field->prev_pid);
1005 SEQ_PUT_HEX_FIELD_RET(s, field->prev_prio);
1006 SEQ_PUT_HEX_FIELD_RET(s, S);
1007 SEQ_PUT_HEX_FIELD_RET(s, field->next_cpu);
1008 SEQ_PUT_HEX_FIELD_RET(s, field->next_pid);
1009 SEQ_PUT_HEX_FIELD_RET(s, field->next_prio);
1010 SEQ_PUT_HEX_FIELD_RET(s, T);
1012 return TRACE_TYPE_HANDLED;
1015 static enum print_line_t trace_ctx_hex(struct trace_iterator *iter, int flags,
1016 struct trace_event *event)
1018 return trace_ctxwake_hex(iter, 0);
1021 static enum print_line_t trace_wake_hex(struct trace_iterator *iter, int flags,
1022 struct trace_event *event)
1024 return trace_ctxwake_hex(iter, '+');
1027 static enum print_line_t trace_ctxwake_bin(struct trace_iterator *iter,
1028 int flags, struct trace_event *event)
1030 struct ctx_switch_entry *field;
1031 struct trace_seq *s = &iter->seq;
1033 trace_assign_type(field, iter->ent);
1035 SEQ_PUT_FIELD_RET(s, field->prev_pid);
1036 SEQ_PUT_FIELD_RET(s, field->prev_prio);
1037 SEQ_PUT_FIELD_RET(s, field->prev_state);
1038 SEQ_PUT_FIELD_RET(s, field->next_pid);
1039 SEQ_PUT_FIELD_RET(s, field->next_prio);
1040 SEQ_PUT_FIELD_RET(s, field->next_state);
1042 return TRACE_TYPE_HANDLED;
1045 static struct trace_event_functions trace_ctx_funcs = {
1046 .trace = trace_ctx_print,
1047 .raw = trace_ctx_raw,
1048 .hex = trace_ctx_hex,
1049 .binary = trace_ctxwake_bin,
1052 static struct trace_event trace_ctx_event = {
1053 .type = TRACE_CTX,
1054 .funcs = &trace_ctx_funcs,
1057 static struct trace_event_functions trace_wake_funcs = {
1058 .trace = trace_wake_print,
1059 .raw = trace_wake_raw,
1060 .hex = trace_wake_hex,
1061 .binary = trace_ctxwake_bin,
1064 static struct trace_event trace_wake_event = {
1065 .type = TRACE_WAKE,
1066 .funcs = &trace_wake_funcs,
1069 /* TRACE_STACK */
1071 static enum print_line_t trace_stack_print(struct trace_iterator *iter,
1072 int flags, struct trace_event *event)
1074 struct stack_entry *field;
1075 struct trace_seq *s = &iter->seq;
1076 int i;
1078 trace_assign_type(field, iter->ent);
1080 if (!trace_seq_puts(s, "<stack trace>\n"))
1081 goto partial;
1082 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1083 if (!field->caller[i] || (field->caller[i] == ULONG_MAX))
1084 break;
1085 if (!trace_seq_puts(s, " => "))
1086 goto partial;
1088 if (!seq_print_ip_sym(s, field->caller[i], flags))
1089 goto partial;
1090 if (!trace_seq_puts(s, "\n"))
1091 goto partial;
1094 return TRACE_TYPE_HANDLED;
1096 partial:
1097 return TRACE_TYPE_PARTIAL_LINE;
1100 static struct trace_event_functions trace_stack_funcs = {
1101 .trace = trace_stack_print,
1104 static struct trace_event trace_stack_event = {
1105 .type = TRACE_STACK,
1106 .funcs = &trace_stack_funcs,
1109 /* TRACE_USER_STACK */
1110 static enum print_line_t trace_user_stack_print(struct trace_iterator *iter,
1111 int flags, struct trace_event *event)
1113 struct userstack_entry *field;
1114 struct trace_seq *s = &iter->seq;
1116 trace_assign_type(field, iter->ent);
1118 if (!trace_seq_puts(s, "<user stack trace>\n"))
1119 goto partial;
1121 if (!seq_print_userip_objs(field, s, flags))
1122 goto partial;
1124 return TRACE_TYPE_HANDLED;
1126 partial:
1127 return TRACE_TYPE_PARTIAL_LINE;
1130 static struct trace_event_functions trace_user_stack_funcs = {
1131 .trace = trace_user_stack_print,
1134 static struct trace_event trace_user_stack_event = {
1135 .type = TRACE_USER_STACK,
1136 .funcs = &trace_user_stack_funcs,
1139 /* TRACE_BPRINT */
1140 static enum print_line_t
1141 trace_bprint_print(struct trace_iterator *iter, int flags,
1142 struct trace_event *event)
1144 struct trace_entry *entry = iter->ent;
1145 struct trace_seq *s = &iter->seq;
1146 struct bprint_entry *field;
1148 trace_assign_type(field, entry);
1150 if (!seq_print_ip_sym(s, field->ip, flags))
1151 goto partial;
1153 if (!trace_seq_puts(s, ": "))
1154 goto partial;
1156 if (!trace_seq_bprintf(s, field->fmt, field->buf))
1157 goto partial;
1159 return TRACE_TYPE_HANDLED;
1161 partial:
1162 return TRACE_TYPE_PARTIAL_LINE;
1166 static enum print_line_t
1167 trace_bprint_raw(struct trace_iterator *iter, int flags,
1168 struct trace_event *event)
1170 struct bprint_entry *field;
1171 struct trace_seq *s = &iter->seq;
1173 trace_assign_type(field, iter->ent);
1175 if (!trace_seq_printf(s, ": %lx : ", field->ip))
1176 goto partial;
1178 if (!trace_seq_bprintf(s, field->fmt, field->buf))
1179 goto partial;
1181 return TRACE_TYPE_HANDLED;
1183 partial:
1184 return TRACE_TYPE_PARTIAL_LINE;
1187 static struct trace_event_functions trace_bprint_funcs = {
1188 .trace = trace_bprint_print,
1189 .raw = trace_bprint_raw,
1192 static struct trace_event trace_bprint_event = {
1193 .type = TRACE_BPRINT,
1194 .funcs = &trace_bprint_funcs,
1197 /* TRACE_PRINT */
1198 static enum print_line_t trace_print_print(struct trace_iterator *iter,
1199 int flags, struct trace_event *event)
1201 struct print_entry *field;
1202 struct trace_seq *s = &iter->seq;
1204 trace_assign_type(field, iter->ent);
1206 if (!seq_print_ip_sym(s, field->ip, flags))
1207 goto partial;
1209 if (!trace_seq_printf(s, ": %s", field->buf))
1210 goto partial;
1212 return TRACE_TYPE_HANDLED;
1214 partial:
1215 return TRACE_TYPE_PARTIAL_LINE;
1218 static enum print_line_t trace_print_raw(struct trace_iterator *iter, int flags,
1219 struct trace_event *event)
1221 struct print_entry *field;
1223 trace_assign_type(field, iter->ent);
1225 if (!trace_seq_printf(&iter->seq, "# %lx %s", field->ip, field->buf))
1226 goto partial;
1228 return TRACE_TYPE_HANDLED;
1230 partial:
1231 return TRACE_TYPE_PARTIAL_LINE;
1234 static struct trace_event_functions trace_print_funcs = {
1235 .trace = trace_print_print,
1236 .raw = trace_print_raw,
1239 static struct trace_event trace_print_event = {
1240 .type = TRACE_PRINT,
1241 .funcs = &trace_print_funcs,
1245 static struct trace_event *events[] __initdata = {
1246 &trace_fn_event,
1247 &trace_ctx_event,
1248 &trace_wake_event,
1249 &trace_stack_event,
1250 &trace_user_stack_event,
1251 &trace_bprint_event,
1252 &trace_print_event,
1253 NULL
1256 __init static int init_events(void)
1258 struct trace_event *event;
1259 int i, ret;
1261 for (i = 0; events[i]; i++) {
1262 event = events[i];
1264 ret = register_ftrace_event(event);
1265 if (!ret) {
1266 printk(KERN_WARNING "event %d failed to register\n",
1267 event->type);
1268 WARN_ON_ONCE(1);
1272 return 0;
1274 device_initcall(init_events);