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 /* trace_find_next_entry will reset ent_size */
654 int ent_size
= iter
->ent_size
;
655 struct trace_seq
*s
= &iter
->seq
;
656 struct trace_entry
*entry
= iter
->ent
,
657 *next_entry
= trace_find_next_entry(iter
, NULL
,
659 unsigned long verbose
= (trace_flags
& TRACE_ITER_VERBOSE
);
660 unsigned long abs_usecs
= ns2usecs(iter
->ts
- iter
->tr
->time_start
);
661 unsigned long rel_usecs
;
663 /* Restore the original ent_size */
664 iter
->ent_size
= ent_size
;
668 rel_usecs
= ns2usecs(next_ts
- iter
->ts
);
671 char comm
[TASK_COMM_LEN
];
673 trace_find_cmdline(entry
->pid
, comm
);
675 ret
= trace_seq_printf(s
, "%16s %5d %3d %d %08x %08lx [%08llx]"
676 " %ld.%03ldms (+%ld.%03ldms): ", comm
,
677 entry
->pid
, iter
->cpu
, entry
->flags
,
678 entry
->preempt_count
, iter
->idx
,
680 abs_usecs
/ USEC_PER_MSEC
,
681 abs_usecs
% USEC_PER_MSEC
,
682 rel_usecs
/ USEC_PER_MSEC
,
683 rel_usecs
% USEC_PER_MSEC
);
685 ret
= lat_print_generic(s
, entry
, iter
->cpu
);
687 ret
= lat_print_timestamp(s
, abs_usecs
, rel_usecs
);
693 static const char state_to_char
[] = TASK_STATE_TO_CHAR_STR
;
695 static int task_state_char(unsigned long state
)
697 int bit
= state
? __ffs(state
) + 1 : 0;
699 return bit
< sizeof(state_to_char
) - 1 ? state_to_char
[bit
] : '?';
703 * ftrace_find_event - find a registered event
704 * @type: the type of event to look for
706 * Returns an event of type @type otherwise NULL
707 * Called with trace_event_read_lock() held.
709 struct trace_event
*ftrace_find_event(int type
)
711 struct trace_event
*event
;
712 struct hlist_node
*n
;
715 key
= type
& (EVENT_HASHSIZE
- 1);
717 hlist_for_each_entry(event
, n
, &event_hash
[key
], node
) {
718 if (event
->type
== type
)
725 static LIST_HEAD(ftrace_event_list
);
727 static int trace_search_list(struct list_head
**list
)
729 struct trace_event
*e
;
730 int last
= __TRACE_LAST_TYPE
;
732 if (list_empty(&ftrace_event_list
)) {
733 *list
= &ftrace_event_list
;
738 * We used up all possible max events,
739 * lets see if somebody freed one.
741 list_for_each_entry(e
, &ftrace_event_list
, list
) {
742 if (e
->type
!= last
+ 1)
747 /* Did we used up all 65 thousand events??? */
748 if ((last
+ 1) > FTRACE_MAX_EVENT
)
755 void trace_event_read_lock(void)
757 down_read(&trace_event_mutex
);
760 void trace_event_read_unlock(void)
762 up_read(&trace_event_mutex
);
766 * register_ftrace_event - register output for an event type
767 * @event: the event type to register
769 * Event types are stored in a hash and this hash is used to
770 * find a way to print an event. If the @event->type is set
771 * then it will use that type, otherwise it will assign a
774 * If you assign your own type, please make sure it is added
775 * to the trace_type enum in trace.h, to avoid collisions
776 * with the dynamic types.
778 * Returns the event type number or zero on error.
780 int register_ftrace_event(struct trace_event
*event
)
785 down_write(&trace_event_mutex
);
790 if (WARN_ON(!event
->funcs
))
793 INIT_LIST_HEAD(&event
->list
);
796 struct list_head
*list
= NULL
;
798 if (next_event_type
> FTRACE_MAX_EVENT
) {
800 event
->type
= trace_search_list(&list
);
806 event
->type
= next_event_type
++;
807 list
= &ftrace_event_list
;
810 if (WARN_ON(ftrace_find_event(event
->type
)))
813 list_add_tail(&event
->list
, list
);
815 } else if (event
->type
> __TRACE_LAST_TYPE
) {
816 printk(KERN_WARNING
"Need to add type to trace.h\n");
820 /* Is this event already used */
821 if (ftrace_find_event(event
->type
))
825 if (event
->funcs
->trace
== NULL
)
826 event
->funcs
->trace
= trace_nop_print
;
827 if (event
->funcs
->raw
== NULL
)
828 event
->funcs
->raw
= trace_nop_print
;
829 if (event
->funcs
->hex
== NULL
)
830 event
->funcs
->hex
= trace_nop_print
;
831 if (event
->funcs
->binary
== NULL
)
832 event
->funcs
->binary
= trace_nop_print
;
834 key
= event
->type
& (EVENT_HASHSIZE
- 1);
836 hlist_add_head(&event
->node
, &event_hash
[key
]);
840 up_write(&trace_event_mutex
);
844 EXPORT_SYMBOL_GPL(register_ftrace_event
);
847 * Used by module code with the trace_event_mutex held for write.
849 int __unregister_ftrace_event(struct trace_event
*event
)
851 hlist_del(&event
->node
);
852 list_del(&event
->list
);
857 * unregister_ftrace_event - remove a no longer used event
858 * @event: the event to remove
860 int unregister_ftrace_event(struct trace_event
*event
)
862 down_write(&trace_event_mutex
);
863 __unregister_ftrace_event(event
);
864 up_write(&trace_event_mutex
);
868 EXPORT_SYMBOL_GPL(unregister_ftrace_event
);
874 enum print_line_t
trace_nop_print(struct trace_iterator
*iter
, int flags
,
875 struct trace_event
*event
)
877 if (!trace_seq_printf(&iter
->seq
, "type: %d\n", iter
->ent
->type
))
878 return TRACE_TYPE_PARTIAL_LINE
;
880 return TRACE_TYPE_HANDLED
;
884 static enum print_line_t
trace_fn_trace(struct trace_iterator
*iter
, int flags
,
885 struct trace_event
*event
)
887 struct ftrace_entry
*field
;
888 struct trace_seq
*s
= &iter
->seq
;
890 trace_assign_type(field
, iter
->ent
);
892 if (!seq_print_ip_sym(s
, field
->ip
, flags
))
895 if ((flags
& TRACE_ITER_PRINT_PARENT
) && field
->parent_ip
) {
896 if (!trace_seq_printf(s
, " <-"))
898 if (!seq_print_ip_sym(s
,
903 if (!trace_seq_printf(s
, "\n"))
906 return TRACE_TYPE_HANDLED
;
909 return TRACE_TYPE_PARTIAL_LINE
;
912 static enum print_line_t
trace_fn_raw(struct trace_iterator
*iter
, int flags
,
913 struct trace_event
*event
)
915 struct ftrace_entry
*field
;
917 trace_assign_type(field
, iter
->ent
);
919 if (!trace_seq_printf(&iter
->seq
, "%lx %lx\n",
922 return TRACE_TYPE_PARTIAL_LINE
;
924 return TRACE_TYPE_HANDLED
;
927 static enum print_line_t
trace_fn_hex(struct trace_iterator
*iter
, int flags
,
928 struct trace_event
*event
)
930 struct ftrace_entry
*field
;
931 struct trace_seq
*s
= &iter
->seq
;
933 trace_assign_type(field
, iter
->ent
);
935 SEQ_PUT_HEX_FIELD_RET(s
, field
->ip
);
936 SEQ_PUT_HEX_FIELD_RET(s
, field
->parent_ip
);
938 return TRACE_TYPE_HANDLED
;
941 static enum print_line_t
trace_fn_bin(struct trace_iterator
*iter
, int flags
,
942 struct trace_event
*event
)
944 struct ftrace_entry
*field
;
945 struct trace_seq
*s
= &iter
->seq
;
947 trace_assign_type(field
, iter
->ent
);
949 SEQ_PUT_FIELD_RET(s
, field
->ip
);
950 SEQ_PUT_FIELD_RET(s
, field
->parent_ip
);
952 return TRACE_TYPE_HANDLED
;
955 static struct trace_event_functions trace_fn_funcs
= {
956 .trace
= trace_fn_trace
,
959 .binary
= trace_fn_bin
,
962 static struct trace_event trace_fn_event
= {
964 .funcs
= &trace_fn_funcs
,
967 /* TRACE_CTX an TRACE_WAKE */
968 static enum print_line_t
trace_ctxwake_print(struct trace_iterator
*iter
,
971 struct ctx_switch_entry
*field
;
972 char comm
[TASK_COMM_LEN
];
976 trace_assign_type(field
, iter
->ent
);
978 T
= task_state_char(field
->next_state
);
979 S
= task_state_char(field
->prev_state
);
980 trace_find_cmdline(field
->next_pid
, comm
);
981 if (!trace_seq_printf(&iter
->seq
,
982 " %5d:%3d:%c %s [%03d] %5d:%3d:%c %s\n",
990 return TRACE_TYPE_PARTIAL_LINE
;
992 return TRACE_TYPE_HANDLED
;
995 static enum print_line_t
trace_ctx_print(struct trace_iterator
*iter
, int flags
,
996 struct trace_event
*event
)
998 return trace_ctxwake_print(iter
, "==>");
1001 static enum print_line_t
trace_wake_print(struct trace_iterator
*iter
,
1002 int flags
, struct trace_event
*event
)
1004 return trace_ctxwake_print(iter
, " +");
1007 static int trace_ctxwake_raw(struct trace_iterator
*iter
, char S
)
1009 struct ctx_switch_entry
*field
;
1012 trace_assign_type(field
, iter
->ent
);
1015 S
= task_state_char(field
->prev_state
);
1016 T
= task_state_char(field
->next_state
);
1017 if (!trace_seq_printf(&iter
->seq
, "%d %d %c %d %d %d %c\n",
1025 return TRACE_TYPE_PARTIAL_LINE
;
1027 return TRACE_TYPE_HANDLED
;
1030 static enum print_line_t
trace_ctx_raw(struct trace_iterator
*iter
, int flags
,
1031 struct trace_event
*event
)
1033 return trace_ctxwake_raw(iter
, 0);
1036 static enum print_line_t
trace_wake_raw(struct trace_iterator
*iter
, int flags
,
1037 struct trace_event
*event
)
1039 return trace_ctxwake_raw(iter
, '+');
1043 static int trace_ctxwake_hex(struct trace_iterator
*iter
, char S
)
1045 struct ctx_switch_entry
*field
;
1046 struct trace_seq
*s
= &iter
->seq
;
1049 trace_assign_type(field
, iter
->ent
);
1052 S
= task_state_char(field
->prev_state
);
1053 T
= task_state_char(field
->next_state
);
1055 SEQ_PUT_HEX_FIELD_RET(s
, field
->prev_pid
);
1056 SEQ_PUT_HEX_FIELD_RET(s
, field
->prev_prio
);
1057 SEQ_PUT_HEX_FIELD_RET(s
, S
);
1058 SEQ_PUT_HEX_FIELD_RET(s
, field
->next_cpu
);
1059 SEQ_PUT_HEX_FIELD_RET(s
, field
->next_pid
);
1060 SEQ_PUT_HEX_FIELD_RET(s
, field
->next_prio
);
1061 SEQ_PUT_HEX_FIELD_RET(s
, T
);
1063 return TRACE_TYPE_HANDLED
;
1066 static enum print_line_t
trace_ctx_hex(struct trace_iterator
*iter
, int flags
,
1067 struct trace_event
*event
)
1069 return trace_ctxwake_hex(iter
, 0);
1072 static enum print_line_t
trace_wake_hex(struct trace_iterator
*iter
, int flags
,
1073 struct trace_event
*event
)
1075 return trace_ctxwake_hex(iter
, '+');
1078 static enum print_line_t
trace_ctxwake_bin(struct trace_iterator
*iter
,
1079 int flags
, struct trace_event
*event
)
1081 struct ctx_switch_entry
*field
;
1082 struct trace_seq
*s
= &iter
->seq
;
1084 trace_assign_type(field
, iter
->ent
);
1086 SEQ_PUT_FIELD_RET(s
, field
->prev_pid
);
1087 SEQ_PUT_FIELD_RET(s
, field
->prev_prio
);
1088 SEQ_PUT_FIELD_RET(s
, field
->prev_state
);
1089 SEQ_PUT_FIELD_RET(s
, field
->next_pid
);
1090 SEQ_PUT_FIELD_RET(s
, field
->next_prio
);
1091 SEQ_PUT_FIELD_RET(s
, field
->next_state
);
1093 return TRACE_TYPE_HANDLED
;
1096 static struct trace_event_functions trace_ctx_funcs
= {
1097 .trace
= trace_ctx_print
,
1098 .raw
= trace_ctx_raw
,
1099 .hex
= trace_ctx_hex
,
1100 .binary
= trace_ctxwake_bin
,
1103 static struct trace_event trace_ctx_event
= {
1105 .funcs
= &trace_ctx_funcs
,
1108 static struct trace_event_functions trace_wake_funcs
= {
1109 .trace
= trace_wake_print
,
1110 .raw
= trace_wake_raw
,
1111 .hex
= trace_wake_hex
,
1112 .binary
= trace_ctxwake_bin
,
1115 static struct trace_event trace_wake_event
= {
1117 .funcs
= &trace_wake_funcs
,
1122 static enum print_line_t
trace_stack_print(struct trace_iterator
*iter
,
1123 int flags
, struct trace_event
*event
)
1125 struct stack_entry
*field
;
1126 struct trace_seq
*s
= &iter
->seq
;
1130 trace_assign_type(field
, iter
->ent
);
1131 end
= (unsigned long *)((long)iter
->ent
+ iter
->ent_size
);
1133 if (!trace_seq_puts(s
, "<stack trace>\n"))
1136 for (p
= field
->caller
; p
&& *p
!= ULONG_MAX
&& p
< end
; p
++) {
1137 if (!trace_seq_puts(s
, " => "))
1140 if (!seq_print_ip_sym(s
, *p
, flags
))
1142 if (!trace_seq_puts(s
, "\n"))
1146 return TRACE_TYPE_HANDLED
;
1149 return TRACE_TYPE_PARTIAL_LINE
;
1152 static struct trace_event_functions trace_stack_funcs
= {
1153 .trace
= trace_stack_print
,
1156 static struct trace_event trace_stack_event
= {
1157 .type
= TRACE_STACK
,
1158 .funcs
= &trace_stack_funcs
,
1161 /* TRACE_USER_STACK */
1162 static enum print_line_t
trace_user_stack_print(struct trace_iterator
*iter
,
1163 int flags
, struct trace_event
*event
)
1165 struct userstack_entry
*field
;
1166 struct trace_seq
*s
= &iter
->seq
;
1168 trace_assign_type(field
, iter
->ent
);
1170 if (!trace_seq_puts(s
, "<user stack trace>\n"))
1173 if (!seq_print_userip_objs(field
, s
, flags
))
1176 return TRACE_TYPE_HANDLED
;
1179 return TRACE_TYPE_PARTIAL_LINE
;
1182 static struct trace_event_functions trace_user_stack_funcs
= {
1183 .trace
= trace_user_stack_print
,
1186 static struct trace_event trace_user_stack_event
= {
1187 .type
= TRACE_USER_STACK
,
1188 .funcs
= &trace_user_stack_funcs
,
1192 static enum print_line_t
1193 trace_bprint_print(struct trace_iterator
*iter
, int flags
,
1194 struct trace_event
*event
)
1196 struct trace_entry
*entry
= iter
->ent
;
1197 struct trace_seq
*s
= &iter
->seq
;
1198 struct bprint_entry
*field
;
1200 trace_assign_type(field
, entry
);
1202 if (!seq_print_ip_sym(s
, field
->ip
, flags
))
1205 if (!trace_seq_puts(s
, ": "))
1208 if (!trace_seq_bprintf(s
, field
->fmt
, field
->buf
))
1211 return TRACE_TYPE_HANDLED
;
1214 return TRACE_TYPE_PARTIAL_LINE
;
1218 static enum print_line_t
1219 trace_bprint_raw(struct trace_iterator
*iter
, int flags
,
1220 struct trace_event
*event
)
1222 struct bprint_entry
*field
;
1223 struct trace_seq
*s
= &iter
->seq
;
1225 trace_assign_type(field
, iter
->ent
);
1227 if (!trace_seq_printf(s
, ": %lx : ", field
->ip
))
1230 if (!trace_seq_bprintf(s
, field
->fmt
, field
->buf
))
1233 return TRACE_TYPE_HANDLED
;
1236 return TRACE_TYPE_PARTIAL_LINE
;
1239 static struct trace_event_functions trace_bprint_funcs
= {
1240 .trace
= trace_bprint_print
,
1241 .raw
= trace_bprint_raw
,
1244 static struct trace_event trace_bprint_event
= {
1245 .type
= TRACE_BPRINT
,
1246 .funcs
= &trace_bprint_funcs
,
1250 static enum print_line_t
trace_print_print(struct trace_iterator
*iter
,
1251 int flags
, struct trace_event
*event
)
1253 struct print_entry
*field
;
1254 struct trace_seq
*s
= &iter
->seq
;
1256 trace_assign_type(field
, iter
->ent
);
1258 if (!seq_print_ip_sym(s
, field
->ip
, flags
))
1261 if (!trace_seq_printf(s
, ": %s", field
->buf
))
1264 return TRACE_TYPE_HANDLED
;
1267 return TRACE_TYPE_PARTIAL_LINE
;
1270 static enum print_line_t
trace_print_raw(struct trace_iterator
*iter
, int flags
,
1271 struct trace_event
*event
)
1273 struct print_entry
*field
;
1275 trace_assign_type(field
, iter
->ent
);
1277 if (!trace_seq_printf(&iter
->seq
, "# %lx %s", field
->ip
, field
->buf
))
1280 return TRACE_TYPE_HANDLED
;
1283 return TRACE_TYPE_PARTIAL_LINE
;
1286 static struct trace_event_functions trace_print_funcs
= {
1287 .trace
= trace_print_print
,
1288 .raw
= trace_print_raw
,
1291 static struct trace_event trace_print_event
= {
1292 .type
= TRACE_PRINT
,
1293 .funcs
= &trace_print_funcs
,
1297 static struct trace_event
*events
[] __initdata
= {
1302 &trace_user_stack_event
,
1303 &trace_bprint_event
,
1308 __init
static int init_events(void)
1310 struct trace_event
*event
;
1313 for (i
= 0; events
[i
]; i
++) {
1316 ret
= register_ftrace_event(event
);
1318 printk(KERN_WARNING
"event %d failed to register\n",
1326 device_initcall(init_events
);