aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/trace/trace_output.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/trace/trace_output.h')
-rw-r--r--kernel/trace/trace_output.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/kernel/trace/trace_output.h b/kernel/trace/trace_output.h
new file mode 100644
index 000000000000..3b90e6ade1aa
--- /dev/null
+++ b/kernel/trace/trace_output.h
@@ -0,0 +1,63 @@
1#ifndef __TRACE_EVENTS_H
2#define __TRACE_EVENTS_H
3
4#include "trace.h"
5
6typedef enum print_line_t (*trace_print_func)(struct trace_iterator *iter,
7 int flags);
8
9struct trace_event {
10 struct hlist_node node;
11 int type;
12 trace_print_func trace;
13 trace_print_func raw;
14 trace_print_func hex;
15 trace_print_func binary;
16};
17
18extern int trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
19 __attribute__ ((format (printf, 2, 3)));
20extern int
21trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary);
22extern int
23seq_print_ip_sym(struct trace_seq *s, unsigned long ip,
24 unsigned long sym_flags);
25extern ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
26 size_t cnt);
27int trace_seq_puts(struct trace_seq *s, const char *str);
28int trace_seq_putc(struct trace_seq *s, unsigned char c);
29int trace_seq_putmem(struct trace_seq *s, void *mem, size_t len);
30int trace_seq_putmem_hex(struct trace_seq *s, void *mem, size_t len);
31int trace_seq_path(struct trace_seq *s, struct path *path);
32int seq_print_userip_objs(const struct userstack_entry *entry,
33 struct trace_seq *s, unsigned long sym_flags);
34int seq_print_user_ip(struct trace_seq *s, struct mm_struct *mm,
35 unsigned long ip, unsigned long sym_flags);
36
37int trace_print_context(struct trace_iterator *iter);
38int trace_print_lat_context(struct trace_iterator *iter);
39
40struct trace_event *ftrace_find_event(int type);
41int register_ftrace_event(struct trace_event *event);
42int unregister_ftrace_event(struct trace_event *event);
43
44enum print_line_t trace_nop_print(struct trace_iterator *iter, int flags);
45
46#define MAX_MEMHEX_BYTES 8
47#define HEX_CHARS (MAX_MEMHEX_BYTES*2 + 1)
48
49#define SEQ_PUT_FIELD_RET(s, x) \
50do { \
51 if (!trace_seq_putmem(s, &(x), sizeof(x))) \
52 return TRACE_TYPE_PARTIAL_LINE; \
53} while (0)
54
55#define SEQ_PUT_HEX_FIELD_RET(s, x) \
56do { \
57 BUILD_BUG_ON(sizeof(x) > MAX_MEMHEX_BYTES); \
58 if (!trace_seq_putmem_hex(s, &(x), sizeof(x))) \
59 return TRACE_TYPE_PARTIAL_LINE; \
60} while (0)
61
62#endif
63