tracing/events: add support for modules to TRACE_EVENT
[safe/jmp/linux-2.6] / include / linux / trace_seq.h
1 #ifndef _LINUX_TRACE_SEQ_H
2 #define _LINUX_TRACE_SEQ_H
3
4 #include <linux/fs.h>
5
6 /*
7  * Trace sequences are used to allow a function to call several other functions
8  * to create a string of data to use (up to a max of PAGE_SIZE.
9  */
10
11 struct trace_seq {
12         unsigned char           buffer[PAGE_SIZE];
13         unsigned int            len;
14         unsigned int            readpos;
15 };
16
17 static inline void
18 trace_seq_init(struct trace_seq *s)
19 {
20         s->len = 0;
21         s->readpos = 0;
22 }
23
24 /*
25  * Currently only defined when tracing is enabled.
26  */
27 #ifdef CONFIG_TRACING
28 extern int trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
29         __attribute__ ((format (printf, 2, 3)));
30 extern int
31 trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary);
32 extern void trace_print_seq(struct seq_file *m, struct trace_seq *s);
33 extern ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
34                                  size_t cnt);
35 extern int trace_seq_puts(struct trace_seq *s, const char *str);
36 extern int trace_seq_putc(struct trace_seq *s, unsigned char c);
37 extern int trace_seq_putmem(struct trace_seq *s, const void *mem, size_t len);
38 extern int trace_seq_putmem_hex(struct trace_seq *s, const void *mem,
39                                 size_t len);
40 extern void *trace_seq_reserve(struct trace_seq *s, size_t len);
41 extern int trace_seq_path(struct trace_seq *s, struct path *path);
42
43 #else /* CONFIG_TRACING */
44 static inline int trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
45         __attribute__ ((format (printf, 2, 3)))
46 {
47         return 0;
48 }
49 static inline int
50 trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary)
51 {
52         return 0;
53 }
54
55 static inline void trace_print_seq(struct seq_file *m, struct trace_seq *s)
56 {
57 }
58 static inline ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
59                                  size_t cnt)
60 {
61         return 0;
62 }
63 static inline int trace_seq_puts(struct trace_seq *s, const char *str)
64 {
65         return 0;
66 }
67 static inline int trace_seq_putc(struct trace_seq *s, unsigned char c);
68 {
69         return 0;
70 }
71 static inline int
72 trace_seq_putmem(struct trace_seq *s, const void *mem, size_t len)
73 {
74         return 0;
75 }
76 static inline int trace_seq_putmem_hex(struct trace_seq *s, const void *mem,
77                                        size_t len)
78 {
79         return 0;
80 }
81 static inline void *trace_seq_reserve(struct trace_seq *s, size_t len)
82 {
83         return NULL;
84 }
85 static inline int trace_seq_path(struct trace_seq *s, struct path *path)
86 {
87         return 0;
88 }
89 #endif /* CONFIG_TRACING */
90
91 #endif /* _LINUX_TRACE_SEQ_H */