4 * Copyright (C) 2008 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
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
;
28 ret
= seq_write(m
, s
->buffer
, len
);
31 * Only reset this buffer if we successfully wrote to the
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
;
47 trace_assign_type(field
, entry
);
49 ret
= trace_seq_bprintf(s
, field
->fmt
, field
->buf
);
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
;
63 trace_assign_type(field
, entry
);
65 ret
= trace_seq_printf(s
, "%s", field
->buf
);
67 return TRACE_TYPE_PARTIAL_LINE
;
69 return TRACE_TYPE_HANDLED
;
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
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.
87 trace_seq_printf(struct trace_seq
*s
, const char *fmt
, ...)
89 int len
= (PAGE_SIZE
- 1) - s
->len
;
97 ret
= vsnprintf(s
->buffer
+ s
->len
, len
, fmt
, ap
);
100 /* If we can't write it all, don't bother writing anything */
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
;
132 ret
= vsnprintf(s
->buffer
+ s
->len
, len
, fmt
, args
);
134 /* If we can't write it all, don't bother writing anything */
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
;
154 ret
= bstr_printf(s
->buffer
+ s
->len
, len
, fmt
, binary
);
156 /* If we can't write it all, don't bother writing anything */
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
);
184 if (len
> ((PAGE_SIZE
- 1) - s
->len
)) {
189 memcpy(s
->buffer
+ s
->len
, str
, len
);
195 int trace_seq_putc(struct trace_seq
*s
, unsigned char c
)
200 if (s
->len
>= (PAGE_SIZE
- 1)) {
205 s
->buffer
[s
->len
++] = c
;
209 EXPORT_SYMBOL(trace_seq_putc
);
211 int trace_seq_putmem(struct trace_seq
*s
, const void *mem
, size_t len
)
216 if (len
> ((PAGE_SIZE
- 1) - s
->len
)) {
221 memcpy(s
->buffer
+ s
->len
, mem
, 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
;
237 for (i
= 0, j
= 0; i
< len
; i
++) {
239 for (i
= len
-1, j
= 0; i
>= 0; i
--) {
241 hex
[j
++] = hex_asc_hi(data
[i
]);
242 hex
[j
++] = hex_asc_lo(data
[i
]);
246 return trace_seq_putmem(s
, hex
, j
);
249 void *trace_seq_reserve(struct trace_seq
*s
, size_t len
)
256 if (len
> ((PAGE_SIZE
- 1) - s
->len
)) {
261 ret
= s
->buffer
+ s
->len
;
267 int trace_seq_path(struct trace_seq
*s
, struct path
*path
)
274 if (s
->len
>= (PAGE_SIZE
- 1)) {
279 p
= d_path(path
, s
->buffer
+ s
->len
, PAGE_SIZE
- s
->len
);
281 p
= mangle_path(s
->buffer
+ s
->len
, p
, "\n");
283 s
->len
= p
- s
->buffer
;
287 s
->buffer
[s
->len
++] = '?';
296 ftrace_print_flags_seq(struct trace_seq
*p
, const char *delim
,
298 const struct trace_print_flags
*flag_array
)
302 const char *ret
= p
->buffer
+ p
->len
;
305 for (i
= 0; flag_array
[i
].name
&& flags
; i
++) {
307 mask
= flag_array
[i
].mask
;
308 if ((flags
& mask
) != mask
)
311 str
= flag_array
[i
].name
;
314 trace_seq_puts(p
, delim
);
315 trace_seq_puts(p
, str
);
318 /* check for left over flags */
321 trace_seq_puts(p
, delim
);
322 trace_seq_printf(p
, "0x%lx", flags
);
325 trace_seq_putc(p
, 0);
329 EXPORT_SYMBOL(ftrace_print_flags_seq
);
332 ftrace_print_symbols_seq(struct trace_seq
*p
, unsigned long val
,
333 const struct trace_print_flags
*symbol_array
)
336 const char *ret
= p
->buffer
+ p
->len
;
338 for (i
= 0; symbol_array
[i
].name
; i
++) {
340 if (val
!= symbol_array
[i
].mask
)
343 trace_seq_puts(p
, symbol_array
[i
].name
);
348 trace_seq_printf(p
, "0x%lx", val
);
350 trace_seq_putc(p
, 0);
354 EXPORT_SYMBOL(ftrace_print_symbols_seq
);
356 #if BITS_PER_LONG == 32
358 ftrace_print_symbols_seq_u64(struct trace_seq
*p
, unsigned long long val
,
359 const struct trace_print_flags_u64
*symbol_array
)
362 const char *ret
= p
->buffer
+ p
->len
;
364 for (i
= 0; symbol_array
[i
].name
; i
++) {
366 if (val
!= symbol_array
[i
].mask
)
369 trace_seq_puts(p
, symbol_array
[i
].name
);
374 trace_seq_printf(p
, "0x%llx", val
);
376 trace_seq_putc(p
, 0);
380 EXPORT_SYMBOL(ftrace_print_symbols_seq_u64
);
384 ftrace_print_hex_seq(struct trace_seq
*p
, const unsigned char *buf
, int buf_len
)
387 const char *ret
= p
->buffer
+ p
->len
;
389 for (i
= 0; i
< buf_len
; i
++)
390 trace_seq_printf(p
, "%s%2.2x", i
== 0 ? "" : " ", buf
[i
]);
392 trace_seq_putc(p
, 0);
396 EXPORT_SYMBOL(ftrace_print_hex_seq
);
398 #ifdef CONFIG_KRETPROBES
399 static inline const char *kretprobed(const char *name
)
401 static const char tramp_name
[] = "kretprobe_trampoline";
402 int size
= sizeof(tramp_name
);
404 if (strncmp(tramp_name
, name
, size
) == 0)
405 return "[unknown/kretprobe'd]";
409 static inline const char *kretprobed(const char *name
)
413 #endif /* CONFIG_KRETPROBES */
416 seq_print_sym_short(struct trace_seq
*s
, const char *fmt
, unsigned long address
)
418 #ifdef CONFIG_KALLSYMS
419 char str
[KSYM_SYMBOL_LEN
];
422 kallsyms_lookup(address
, NULL
, NULL
, NULL
, str
);
424 name
= kretprobed(str
);
426 return trace_seq_printf(s
, fmt
, name
);
432 seq_print_sym_offset(struct trace_seq
*s
, const char *fmt
,
433 unsigned long address
)
435 #ifdef CONFIG_KALLSYMS
436 char str
[KSYM_SYMBOL_LEN
];
439 sprint_symbol(str
, address
);
440 name
= kretprobed(str
);
442 return trace_seq_printf(s
, fmt
, name
);
448 # define IP_FMT "%08lx"
450 # define IP_FMT "%016lx"
453 int seq_print_user_ip(struct trace_seq
*s
, struct mm_struct
*mm
,
454 unsigned long ip
, unsigned long sym_flags
)
456 struct file
*file
= NULL
;
457 unsigned long vmstart
= 0;
464 const struct vm_area_struct
*vma
;
466 down_read(&mm
->mmap_sem
);
467 vma
= find_vma(mm
, ip
);
470 vmstart
= vma
->vm_start
;
473 ret
= trace_seq_path(s
, &file
->f_path
);
475 ret
= trace_seq_printf(s
, "[+0x%lx]",
478 up_read(&mm
->mmap_sem
);
480 if (ret
&& ((sym_flags
& TRACE_ITER_SYM_ADDR
) || !file
))
481 ret
= trace_seq_printf(s
, " <" IP_FMT
">", ip
);
486 seq_print_userip_objs(const struct userstack_entry
*entry
, struct trace_seq
*s
,
487 unsigned long sym_flags
)
489 struct mm_struct
*mm
= NULL
;
493 if (trace_flags
& TRACE_ITER_SYM_USEROBJ
) {
494 struct task_struct
*task
;
496 * we do the lookup on the thread group leader,
497 * since individual threads might have already quit!
500 task
= find_task_by_vpid(entry
->tgid
);
502 mm
= get_task_mm(task
);
506 for (i
= 0; i
< FTRACE_STACK_ENTRIES
; i
++) {
507 unsigned long ip
= entry
->caller
[i
];
509 if (ip
== ULONG_MAX
|| !ret
)
512 ret
= trace_seq_puts(s
, " => ");
515 ret
= trace_seq_puts(s
, "??");
517 ret
= trace_seq_puts(s
, "\n");
523 ret
= seq_print_user_ip(s
, mm
, ip
, sym_flags
);
524 ret
= trace_seq_puts(s
, "\n");
533 seq_print_ip_sym(struct trace_seq
*s
, unsigned long ip
, unsigned long sym_flags
)
538 return trace_seq_printf(s
, "0");
540 if (sym_flags
& TRACE_ITER_SYM_OFFSET
)
541 ret
= seq_print_sym_offset(s
, "%s", ip
);
543 ret
= seq_print_sym_short(s
, "%s", ip
);
548 if (sym_flags
& TRACE_ITER_SYM_ADDR
)
549 ret
= trace_seq_printf(s
, " <" IP_FMT
">", ip
);
554 * trace_print_lat_fmt - print the irq, preempt and lockdep fields
555 * @s: trace seq struct to write to
556 * @entry: The trace entry field from the ring buffer
558 * Prints the generic fields of irqs off, in hard or softirq, preempt
561 int trace_print_lat_fmt(struct trace_seq
*s
, struct trace_entry
*entry
)
570 hardirq
= entry
->flags
& TRACE_FLAG_HARDIRQ
;
571 softirq
= entry
->flags
& TRACE_FLAG_SOFTIRQ
;
574 (entry
->flags
& TRACE_FLAG_IRQS_OFF
) ? 'd' :
575 (entry
->flags
& TRACE_FLAG_IRQS_NOSUPPORT
) ? 'X' :
578 (entry
->flags
& TRACE_FLAG_NEED_RESCHED
) ? 'N' : '.';
580 (hardirq
&& softirq
) ? 'H' :
585 if (!trace_seq_printf(s
, "%c%c%c",
586 irqs_off
, need_resched
, hardsoft_irq
))
589 if (entry
->preempt_count
)
590 ret
= trace_seq_printf(s
, "%x", entry
->preempt_count
);
592 ret
= trace_seq_putc(s
, '.');
598 lat_print_generic(struct trace_seq
*s
, struct trace_entry
*entry
, int cpu
)
600 char comm
[TASK_COMM_LEN
];
602 trace_find_cmdline(entry
->pid
, comm
);
604 if (!trace_seq_printf(s
, "%8.8s-%-5d %3d",
605 comm
, entry
->pid
, cpu
))
608 return trace_print_lat_fmt(s
, entry
);
611 static unsigned long preempt_mark_thresh
= 100;
614 lat_print_timestamp(struct trace_seq
*s
, u64 abs_usecs
,
615 unsigned long rel_usecs
)
617 return trace_seq_printf(s
, " %4lldus%c: ", abs_usecs
,
618 rel_usecs
> preempt_mark_thresh
? '!' :
619 rel_usecs
> 1 ? '+' : ' ');
622 int trace_print_context(struct trace_iterator
*iter
)
624 struct trace_seq
*s
= &iter
->seq
;
625 struct trace_entry
*entry
= iter
->ent
;
626 unsigned long long t
= ns2usecs(iter
->ts
);
627 unsigned long usec_rem
= do_div(t
, USEC_PER_SEC
);
628 unsigned long secs
= (unsigned long)t
;
629 char comm
[TASK_COMM_LEN
];
632 trace_find_cmdline(entry
->pid
, comm
);
634 ret
= trace_seq_printf(s
, "%16s-%-5d [%03d] ",
635 comm
, entry
->pid
, iter
->cpu
);
639 if (trace_flags
& TRACE_ITER_IRQ_INFO
) {
640 ret
= trace_print_lat_fmt(s
, entry
);
645 return trace_seq_printf(s
, " %5lu.%06lu: ",
649 int trace_print_lat_context(struct trace_iterator
*iter
)
653 struct trace_seq
*s
= &iter
->seq
;
654 struct trace_entry
*entry
= iter
->ent
,
655 *next_entry
= trace_find_next_entry(iter
, NULL
,
657 unsigned long verbose
= (trace_flags
& TRACE_ITER_VERBOSE
);
658 unsigned long abs_usecs
= ns2usecs(iter
->ts
- iter
->tr
->time_start
);
659 unsigned long rel_usecs
;
663 rel_usecs
= ns2usecs(next_ts
- iter
->ts
);
666 char comm
[TASK_COMM_LEN
];
668 trace_find_cmdline(entry
->pid
, comm
);
670 ret
= trace_seq_printf(s
, "%16s %5d %3d %d %08x %08lx [%08llx]"
671 " %ld.%03ldms (+%ld.%03ldms): ", comm
,
672 entry
->pid
, iter
->cpu
, entry
->flags
,
673 entry
->preempt_count
, iter
->idx
,
675 abs_usecs
/ USEC_PER_MSEC
,
676 abs_usecs
% USEC_PER_MSEC
,
677 rel_usecs
/ USEC_PER_MSEC
,
678 rel_usecs
% USEC_PER_MSEC
);
680 ret
= lat_print_generic(s
, entry
, iter
->cpu
);
682 ret
= lat_print_timestamp(s
, abs_usecs
, rel_usecs
);
688 static const char state_to_char
[] = TASK_STATE_TO_CHAR_STR
;
690 static int task_state_char(unsigned long state
)
692 int bit
= state
? __ffs(state
) + 1 : 0;
694 return bit
< sizeof(state_to_char
) - 1 ? state_to_char
[bit
] : '?';
698 * ftrace_find_event - find a registered event
699 * @type: the type of event to look for
701 * Returns an event of type @type otherwise NULL
702 * Called with trace_event_read_lock() held.
704 struct trace_event
*ftrace_find_event(int type
)
706 struct trace_event
*event
;
707 struct hlist_node
*n
;
710 key
= type
& (EVENT_HASHSIZE
- 1);
712 hlist_for_each_entry(event
, n
, &event_hash
[key
], node
) {
713 if (event
->type
== type
)
720 static LIST_HEAD(ftrace_event_list
);
722 static int trace_search_list(struct list_head
**list
)
724 struct trace_event
*e
;
725 int last
= __TRACE_LAST_TYPE
;
727 if (list_empty(&ftrace_event_list
)) {
728 *list
= &ftrace_event_list
;
733 * We used up all possible max events,
734 * lets see if somebody freed one.
736 list_for_each_entry(e
, &ftrace_event_list
, list
) {
737 if (e
->type
!= last
+ 1)
742 /* Did we used up all 65 thousand events??? */
743 if ((last
+ 1) > FTRACE_MAX_EVENT
)
750 void trace_event_read_lock(void)
752 down_read(&trace_event_mutex
);
755 void trace_event_read_unlock(void)
757 up_read(&trace_event_mutex
);
761 * register_ftrace_event - register output for an event type
762 * @event: the event type to register
764 * Event types are stored in a hash and this hash is used to
765 * find a way to print an event. If the @event->type is set
766 * then it will use that type, otherwise it will assign a
769 * If you assign your own type, please make sure it is added
770 * to the trace_type enum in trace.h, to avoid collisions
771 * with the dynamic types.
773 * Returns the event type number or zero on error.
775 int register_ftrace_event(struct trace_event
*event
)
780 down_write(&trace_event_mutex
);
785 if (WARN_ON(!event
->funcs
))
788 INIT_LIST_HEAD(&event
->list
);
791 struct list_head
*list
= NULL
;
793 if (next_event_type
> FTRACE_MAX_EVENT
) {
795 event
->type
= trace_search_list(&list
);
801 event
->type
= next_event_type
++;
802 list
= &ftrace_event_list
;
805 if (WARN_ON(ftrace_find_event(event
->type
)))
808 list_add_tail(&event
->list
, list
);
810 } else if (event
->type
> __TRACE_LAST_TYPE
) {
811 printk(KERN_WARNING
"Need to add type to trace.h\n");
815 /* Is this event already used */
816 if (ftrace_find_event(event
->type
))
820 if (event
->funcs
->trace
== NULL
)
821 event
->funcs
->trace
= trace_nop_print
;
822 if (event
->funcs
->raw
== NULL
)
823 event
->funcs
->raw
= trace_nop_print
;
824 if (event
->funcs
->hex
== NULL
)
825 event
->funcs
->hex
= trace_nop_print
;
826 if (event
->funcs
->binary
== NULL
)
827 event
->funcs
->binary
= trace_nop_print
;
829 key
= event
->type
& (EVENT_HASHSIZE
- 1);
831 hlist_add_head(&event
->node
, &event_hash
[key
]);
835 up_write(&trace_event_mutex
);
839 EXPORT_SYMBOL_GPL(register_ftrace_event
);
842 * Used by module code with the trace_event_mutex held for write.
844 int __unregister_ftrace_event(struct trace_event
*event
)
846 hlist_del(&event
->node
);
847 list_del(&event
->list
);
852 * unregister_ftrace_event - remove a no longer used event
853 * @event: the event to remove
855 int unregister_ftrace_event(struct trace_event
*event
)
857 down_write(&trace_event_mutex
);
858 __unregister_ftrace_event(event
);
859 up_write(&trace_event_mutex
);
863 EXPORT_SYMBOL_GPL(unregister_ftrace_event
);
869 enum print_line_t
trace_nop_print(struct trace_iterator
*iter
, int flags
,
870 struct trace_event
*event
)
872 if (!trace_seq_printf(&iter
->seq
, "type: %d\n", iter
->ent
->type
))
873 return TRACE_TYPE_PARTIAL_LINE
;
875 return TRACE_TYPE_HANDLED
;
879 static enum print_line_t
trace_fn_trace(struct trace_iterator
*iter
, int flags
,
880 struct trace_event
*event
)
882 struct ftrace_entry
*field
;
883 struct trace_seq
*s
= &iter
->seq
;
885 trace_assign_type(field
, iter
->ent
);
887 if (!seq_print_ip_sym(s
, field
->ip
, flags
))
890 if ((flags
& TRACE_ITER_PRINT_PARENT
) && field
->parent_ip
) {
891 if (!trace_seq_printf(s
, " <-"))
893 if (!seq_print_ip_sym(s
,
898 if (!trace_seq_printf(s
, "\n"))
901 return TRACE_TYPE_HANDLED
;
904 return TRACE_TYPE_PARTIAL_LINE
;
907 static enum print_line_t
trace_fn_raw(struct trace_iterator
*iter
, int flags
,
908 struct trace_event
*event
)
910 struct ftrace_entry
*field
;
912 trace_assign_type(field
, iter
->ent
);
914 if (!trace_seq_printf(&iter
->seq
, "%lx %lx\n",
917 return TRACE_TYPE_PARTIAL_LINE
;
919 return TRACE_TYPE_HANDLED
;
922 static enum print_line_t
trace_fn_hex(struct trace_iterator
*iter
, int flags
,
923 struct trace_event
*event
)
925 struct ftrace_entry
*field
;
926 struct trace_seq
*s
= &iter
->seq
;
928 trace_assign_type(field
, iter
->ent
);
930 SEQ_PUT_HEX_FIELD_RET(s
, field
->ip
);
931 SEQ_PUT_HEX_FIELD_RET(s
, field
->parent_ip
);
933 return TRACE_TYPE_HANDLED
;
936 static enum print_line_t
trace_fn_bin(struct trace_iterator
*iter
, int flags
,
937 struct trace_event
*event
)
939 struct ftrace_entry
*field
;
940 struct trace_seq
*s
= &iter
->seq
;
942 trace_assign_type(field
, iter
->ent
);
944 SEQ_PUT_FIELD_RET(s
, field
->ip
);
945 SEQ_PUT_FIELD_RET(s
, field
->parent_ip
);
947 return TRACE_TYPE_HANDLED
;
950 static struct trace_event_functions trace_fn_funcs
= {
951 .trace
= trace_fn_trace
,
954 .binary
= trace_fn_bin
,
957 static struct trace_event trace_fn_event
= {
959 .funcs
= &trace_fn_funcs
,
962 /* TRACE_CTX an TRACE_WAKE */
963 static enum print_line_t
trace_ctxwake_print(struct trace_iterator
*iter
,
966 struct ctx_switch_entry
*field
;
967 char comm
[TASK_COMM_LEN
];
971 trace_assign_type(field
, iter
->ent
);
973 T
= task_state_char(field
->next_state
);
974 S
= task_state_char(field
->prev_state
);
975 trace_find_cmdline(field
->next_pid
, comm
);
976 if (!trace_seq_printf(&iter
->seq
,
977 " %5d:%3d:%c %s [%03d] %5d:%3d:%c %s\n",
985 return TRACE_TYPE_PARTIAL_LINE
;
987 return TRACE_TYPE_HANDLED
;
990 static enum print_line_t
trace_ctx_print(struct trace_iterator
*iter
, int flags
,
991 struct trace_event
*event
)
993 return trace_ctxwake_print(iter
, "==>");
996 static enum print_line_t
trace_wake_print(struct trace_iterator
*iter
,
997 int flags
, struct trace_event
*event
)
999 return trace_ctxwake_print(iter
, " +");
1002 static int trace_ctxwake_raw(struct trace_iterator
*iter
, char S
)
1004 struct ctx_switch_entry
*field
;
1007 trace_assign_type(field
, iter
->ent
);
1010 S
= task_state_char(field
->prev_state
);
1011 T
= task_state_char(field
->next_state
);
1012 if (!trace_seq_printf(&iter
->seq
, "%d %d %c %d %d %d %c\n",
1020 return TRACE_TYPE_PARTIAL_LINE
;
1022 return TRACE_TYPE_HANDLED
;
1025 static enum print_line_t
trace_ctx_raw(struct trace_iterator
*iter
, int flags
,
1026 struct trace_event
*event
)
1028 return trace_ctxwake_raw(iter
, 0);
1031 static enum print_line_t
trace_wake_raw(struct trace_iterator
*iter
, int flags
,
1032 struct trace_event
*event
)
1034 return trace_ctxwake_raw(iter
, '+');
1038 static int trace_ctxwake_hex(struct trace_iterator
*iter
, char S
)
1040 struct ctx_switch_entry
*field
;
1041 struct trace_seq
*s
= &iter
->seq
;
1044 trace_assign_type(field
, iter
->ent
);
1047 S
= task_state_char(field
->prev_state
);
1048 T
= task_state_char(field
->next_state
);
1050 SEQ_PUT_HEX_FIELD_RET(s
, field
->prev_pid
);
1051 SEQ_PUT_HEX_FIELD_RET(s
, field
->prev_prio
);
1052 SEQ_PUT_HEX_FIELD_RET(s
, S
);
1053 SEQ_PUT_HEX_FIELD_RET(s
, field
->next_cpu
);
1054 SEQ_PUT_HEX_FIELD_RET(s
, field
->next_pid
);
1055 SEQ_PUT_HEX_FIELD_RET(s
, field
->next_prio
);
1056 SEQ_PUT_HEX_FIELD_RET(s
, T
);
1058 return TRACE_TYPE_HANDLED
;
1061 static enum print_line_t
trace_ctx_hex(struct trace_iterator
*iter
, int flags
,
1062 struct trace_event
*event
)
1064 return trace_ctxwake_hex(iter
, 0);
1067 static enum print_line_t
trace_wake_hex(struct trace_iterator
*iter
, int flags
,
1068 struct trace_event
*event
)
1070 return trace_ctxwake_hex(iter
, '+');
1073 static enum print_line_t
trace_ctxwake_bin(struct trace_iterator
*iter
,
1074 int flags
, struct trace_event
*event
)
1076 struct ctx_switch_entry
*field
;
1077 struct trace_seq
*s
= &iter
->seq
;
1079 trace_assign_type(field
, iter
->ent
);
1081 SEQ_PUT_FIELD_RET(s
, field
->prev_pid
);
1082 SEQ_PUT_FIELD_RET(s
, field
->prev_prio
);
1083 SEQ_PUT_FIELD_RET(s
, field
->prev_state
);
1084 SEQ_PUT_FIELD_RET(s
, field
->next_pid
);
1085 SEQ_PUT_FIELD_RET(s
, field
->next_prio
);
1086 SEQ_PUT_FIELD_RET(s
, field
->next_state
);
1088 return TRACE_TYPE_HANDLED
;
1091 static struct trace_event_functions trace_ctx_funcs
= {
1092 .trace
= trace_ctx_print
,
1093 .raw
= trace_ctx_raw
,
1094 .hex
= trace_ctx_hex
,
1095 .binary
= trace_ctxwake_bin
,
1098 static struct trace_event trace_ctx_event
= {
1100 .funcs
= &trace_ctx_funcs
,
1103 static struct trace_event_functions trace_wake_funcs
= {
1104 .trace
= trace_wake_print
,
1105 .raw
= trace_wake_raw
,
1106 .hex
= trace_wake_hex
,
1107 .binary
= trace_ctxwake_bin
,
1110 static struct trace_event trace_wake_event
= {
1112 .funcs
= &trace_wake_funcs
,
1117 static enum print_line_t
trace_stack_print(struct trace_iterator
*iter
,
1118 int flags
, struct trace_event
*event
)
1120 struct stack_entry
*field
;
1121 struct trace_seq
*s
= &iter
->seq
;
1125 trace_assign_type(field
, iter
->ent
);
1126 end
= (unsigned long *)((long)iter
->ent
+ iter
->ent_size
);
1128 if (!trace_seq_puts(s
, "<stack trace>\n"))
1131 for (p
= field
->caller
; p
&& *p
!= ULONG_MAX
&& p
< end
; p
++) {
1132 if (!trace_seq_puts(s
, " => "))
1135 if (!seq_print_ip_sym(s
, *p
, flags
))
1137 if (!trace_seq_puts(s
, "\n"))
1141 return TRACE_TYPE_HANDLED
;
1144 return TRACE_TYPE_PARTIAL_LINE
;
1147 static struct trace_event_functions trace_stack_funcs
= {
1148 .trace
= trace_stack_print
,
1151 static struct trace_event trace_stack_event
= {
1152 .type
= TRACE_STACK
,
1153 .funcs
= &trace_stack_funcs
,
1156 /* TRACE_USER_STACK */
1157 static enum print_line_t
trace_user_stack_print(struct trace_iterator
*iter
,
1158 int flags
, struct trace_event
*event
)
1160 struct userstack_entry
*field
;
1161 struct trace_seq
*s
= &iter
->seq
;
1163 trace_assign_type(field
, iter
->ent
);
1165 if (!trace_seq_puts(s
, "<user stack trace>\n"))
1168 if (!seq_print_userip_objs(field
, s
, flags
))
1171 return TRACE_TYPE_HANDLED
;
1174 return TRACE_TYPE_PARTIAL_LINE
;
1177 static struct trace_event_functions trace_user_stack_funcs
= {
1178 .trace
= trace_user_stack_print
,
1181 static struct trace_event trace_user_stack_event
= {
1182 .type
= TRACE_USER_STACK
,
1183 .funcs
= &trace_user_stack_funcs
,
1187 static enum print_line_t
1188 trace_bprint_print(struct trace_iterator
*iter
, int flags
,
1189 struct trace_event
*event
)
1191 struct trace_entry
*entry
= iter
->ent
;
1192 struct trace_seq
*s
= &iter
->seq
;
1193 struct bprint_entry
*field
;
1195 trace_assign_type(field
, entry
);
1197 if (!seq_print_ip_sym(s
, field
->ip
, flags
))
1200 if (!trace_seq_puts(s
, ": "))
1203 if (!trace_seq_bprintf(s
, field
->fmt
, field
->buf
))
1206 return TRACE_TYPE_HANDLED
;
1209 return TRACE_TYPE_PARTIAL_LINE
;
1213 static enum print_line_t
1214 trace_bprint_raw(struct trace_iterator
*iter
, int flags
,
1215 struct trace_event
*event
)
1217 struct bprint_entry
*field
;
1218 struct trace_seq
*s
= &iter
->seq
;
1220 trace_assign_type(field
, iter
->ent
);
1222 if (!trace_seq_printf(s
, ": %lx : ", field
->ip
))
1225 if (!trace_seq_bprintf(s
, field
->fmt
, field
->buf
))
1228 return TRACE_TYPE_HANDLED
;
1231 return TRACE_TYPE_PARTIAL_LINE
;
1234 static struct trace_event_functions trace_bprint_funcs
= {
1235 .trace
= trace_bprint_print
,
1236 .raw
= trace_bprint_raw
,
1239 static struct trace_event trace_bprint_event
= {
1240 .type
= TRACE_BPRINT
,
1241 .funcs
= &trace_bprint_funcs
,
1245 static enum print_line_t
trace_print_print(struct trace_iterator
*iter
,
1246 int flags
, struct trace_event
*event
)
1248 struct print_entry
*field
;
1249 struct trace_seq
*s
= &iter
->seq
;
1251 trace_assign_type(field
, iter
->ent
);
1253 if (!seq_print_ip_sym(s
, field
->ip
, flags
))
1256 if (!trace_seq_printf(s
, ": %s", field
->buf
))
1259 return TRACE_TYPE_HANDLED
;
1262 return TRACE_TYPE_PARTIAL_LINE
;
1265 static enum print_line_t
trace_print_raw(struct trace_iterator
*iter
, int flags
,
1266 struct trace_event
*event
)
1268 struct print_entry
*field
;
1270 trace_assign_type(field
, iter
->ent
);
1272 if (!trace_seq_printf(&iter
->seq
, "# %lx %s", field
->ip
, field
->buf
))
1275 return TRACE_TYPE_HANDLED
;
1278 return TRACE_TYPE_PARTIAL_LINE
;
1281 static struct trace_event_functions trace_print_funcs
= {
1282 .trace
= trace_print_print
,
1283 .raw
= trace_print_raw
,
1286 static struct trace_event trace_print_event
= {
1287 .type
= TRACE_PRINT
,
1288 .funcs
= &trace_print_funcs
,
1292 static struct trace_event
*events
[] __initdata
= {
1297 &trace_user_stack_event
,
1298 &trace_bprint_event
,
1303 __init
static int init_events(void)
1305 struct trace_event
*event
;
1308 for (i
= 0; events
[i
]; i
++) {
1311 ret
= register_ftrace_event(event
);
1313 printk(KERN_WARNING
"event %d failed to register\n",
1321 device_initcall(init_events
);