tracing: make print_(b)printk_msg_only global
[deliverable/linux.git] / kernel / trace / trace_output.h
CommitLineData
f0868d1e
SR
1#ifndef __TRACE_EVENTS_H
2#define __TRACE_EVENTS_H
3
4#include "trace.h"
5
ae7462b4
ACM
6typedef enum print_line_t (*trace_print_func)(struct trace_iterator *iter,
7 int flags);
f0868d1e
SR
8
9struct trace_event {
10 struct hlist_node node;
11 int type;
12 trace_print_func trace;
f0868d1e
SR
13 trace_print_func raw;
14 trace_print_func hex;
15 trace_print_func binary;
16};
17
5ef841f6
SR
18extern enum print_line_t
19trace_print_bprintk_msg_only(struct trace_iterator *iter);
20extern enum print_line_t
21trace_print_printk_msg_only(struct trace_iterator *iter);
22
c37abc55
SR
23extern int trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
24 __attribute__ ((format (printf, 2, 3)));
f0868d1e 25extern int
769b0441
FW
26trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary);
27extern int
f0868d1e
SR
28seq_print_ip_sym(struct trace_seq *s, unsigned long ip,
29 unsigned long sym_flags);
30extern ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
31 size_t cnt);
32int trace_seq_puts(struct trace_seq *s, const char *str);
33int trace_seq_putc(struct trace_seq *s, unsigned char c);
34int trace_seq_putmem(struct trace_seq *s, void *mem, size_t len);
35int trace_seq_putmem_hex(struct trace_seq *s, void *mem, size_t len);
36int trace_seq_path(struct trace_seq *s, struct path *path);
37int seq_print_userip_objs(const struct userstack_entry *entry,
38 struct trace_seq *s, unsigned long sym_flags);
39int seq_print_user_ip(struct trace_seq *s, struct mm_struct *mm,
40 unsigned long ip, unsigned long sym_flags);
41
c4a8e8be
FW
42int trace_print_context(struct trace_iterator *iter);
43int trace_print_lat_context(struct trace_iterator *iter);
44
f0868d1e
SR
45struct trace_event *ftrace_find_event(int type);
46int register_ftrace_event(struct trace_event *event);
47int unregister_ftrace_event(struct trace_event *event);
48
ae7462b4 49enum print_line_t trace_nop_print(struct trace_iterator *iter, int flags);
f633cef0 50
f0868d1e
SR
51#define MAX_MEMHEX_BYTES 8
52#define HEX_CHARS (MAX_MEMHEX_BYTES*2 + 1)
53
f633cef0
SR
54#define SEQ_PUT_FIELD_RET(s, x) \
55do { \
56 if (!trace_seq_putmem(s, &(x), sizeof(x))) \
6c1a99af 57 return TRACE_TYPE_PARTIAL_LINE; \
f633cef0
SR
58} while (0)
59
60#define SEQ_PUT_HEX_FIELD_RET(s, x) \
61do { \
62 BUILD_BUG_ON(sizeof(x) > MAX_MEMHEX_BYTES); \
63 if (!trace_seq_putmem_hex(s, &(x), sizeof(x))) \
6c1a99af 64 return TRACE_TYPE_PARTIAL_LINE; \
f633cef0
SR
65} while (0)
66
f0868d1e
SR
67#endif
68
This page took 0.035201 seconds and 5 git commands to generate.