Steven Rostedt | 9504504 | 2009-04-11 12:59:57 -0400 | [diff] [blame] | 1 | #ifndef _LINUX_TRACE_SEQ_H |
| 2 | #define _LINUX_TRACE_SEQ_H |
| 3 | |
Steven Rostedt | 6d72373 | 2009-04-10 14:53:50 -0400 | [diff] [blame] | 4 | #include <linux/fs.h> |
| 5 | |
Wu Zhangjin | 78be691 | 2009-06-14 14:52:30 +0800 | [diff] [blame] | 6 | #include <asm/page.h> |
| 7 | |
Steven Rostedt | 9504504 | 2009-04-11 12:59:57 -0400 | [diff] [blame] | 8 | /* |
| 9 | * Trace sequences are used to allow a function to call several other functions |
Jiri Olsa | 6d3f1e1 | 2009-10-23 19:36:19 -0400 | [diff] [blame] | 10 | * to create a string of data to use (up to a max of PAGE_SIZE). |
Steven Rostedt | 9504504 | 2009-04-11 12:59:57 -0400 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | struct trace_seq { |
| 14 | unsigned char buffer[PAGE_SIZE]; |
| 15 | unsigned int len; |
| 16 | unsigned int readpos; |
Johannes Berg | d184b31 | 2009-11-25 16:10:14 +0100 | [diff] [blame] | 17 | int full; |
Steven Rostedt | 9504504 | 2009-04-11 12:59:57 -0400 | [diff] [blame] | 18 | }; |
| 19 | |
| 20 | static inline void |
| 21 | trace_seq_init(struct trace_seq *s) |
| 22 | { |
| 23 | s->len = 0; |
| 24 | s->readpos = 0; |
Johannes Berg | d184b31 | 2009-11-25 16:10:14 +0100 | [diff] [blame] | 25 | s->full = 0; |
Steven Rostedt | 9504504 | 2009-04-11 12:59:57 -0400 | [diff] [blame] | 26 | } |
| 27 | |
| 28 | /* |
| 29 | * Currently only defined when tracing is enabled. |
| 30 | */ |
| 31 | #ifdef CONFIG_TRACING |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 32 | extern __printf(2, 3) |
| 33 | int trace_seq_printf(struct trace_seq *s, const char *fmt, ...); |
| 34 | extern __printf(2, 0) |
| 35 | int trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args); |
Steven Rostedt | 9504504 | 2009-04-11 12:59:57 -0400 | [diff] [blame] | 36 | extern int |
| 37 | trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary); |
Steven Rostedt | a63ce5b | 2009-12-07 09:11:39 -0500 | [diff] [blame] | 38 | extern int trace_print_seq(struct seq_file *m, struct trace_seq *s); |
Steven Rostedt | 9504504 | 2009-04-11 12:59:57 -0400 | [diff] [blame] | 39 | extern ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, |
| 40 | size_t cnt); |
| 41 | extern int trace_seq_puts(struct trace_seq *s, const char *str); |
| 42 | extern int trace_seq_putc(struct trace_seq *s, unsigned char c); |
| 43 | extern int trace_seq_putmem(struct trace_seq *s, const void *mem, size_t len); |
| 44 | extern int trace_seq_putmem_hex(struct trace_seq *s, const void *mem, |
| 45 | size_t len); |
| 46 | extern void *trace_seq_reserve(struct trace_seq *s, size_t len); |
Al Viro | 38eff28 | 2012-03-14 21:51:10 -0400 | [diff] [blame] | 47 | extern int trace_seq_path(struct trace_seq *s, const struct path *path); |
Steven Rostedt | 9504504 | 2009-04-11 12:59:57 -0400 | [diff] [blame] | 48 | |
Steven Rostedt (Red Hat) | 4449bf9 | 2014-05-06 13:10:24 -0400 | [diff] [blame] | 49 | extern int trace_seq_bitmask(struct trace_seq *s, const unsigned long *maskp, |
| 50 | int nmaskbits); |
| 51 | |
Steven Rostedt | 9504504 | 2009-04-11 12:59:57 -0400 | [diff] [blame] | 52 | #else /* CONFIG_TRACING */ |
| 53 | static inline int trace_seq_printf(struct trace_seq *s, const char *fmt, ...) |
Steven Rostedt | 9504504 | 2009-04-11 12:59:57 -0400 | [diff] [blame] | 54 | { |
| 55 | return 0; |
| 56 | } |
| 57 | static inline int |
| 58 | trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary) |
| 59 | { |
| 60 | return 0; |
| 61 | } |
| 62 | |
Steven Rostedt (Red Hat) | 4449bf9 | 2014-05-06 13:10:24 -0400 | [diff] [blame] | 63 | static inline int |
| 64 | trace_seq_bitmask(struct trace_seq *s, const unsigned long *maskp, |
| 65 | int nmaskbits) |
| 66 | { |
| 67 | return 0; |
| 68 | } |
| 69 | |
Steven Rostedt | a63ce5b | 2009-12-07 09:11:39 -0500 | [diff] [blame] | 70 | static inline int trace_print_seq(struct seq_file *m, struct trace_seq *s) |
Steven Rostedt | 9504504 | 2009-04-11 12:59:57 -0400 | [diff] [blame] | 71 | { |
Steven Rostedt | a63ce5b | 2009-12-07 09:11:39 -0500 | [diff] [blame] | 72 | return 0; |
Steven Rostedt | 9504504 | 2009-04-11 12:59:57 -0400 | [diff] [blame] | 73 | } |
| 74 | static inline ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, |
| 75 | size_t cnt) |
| 76 | { |
| 77 | return 0; |
| 78 | } |
| 79 | static inline int trace_seq_puts(struct trace_seq *s, const char *str) |
| 80 | { |
| 81 | return 0; |
| 82 | } |
Steven Rostedt | 23de29d | 2009-04-20 12:59:29 -0400 | [diff] [blame] | 83 | static inline int trace_seq_putc(struct trace_seq *s, unsigned char c) |
Steven Rostedt | 9504504 | 2009-04-11 12:59:57 -0400 | [diff] [blame] | 84 | { |
| 85 | return 0; |
| 86 | } |
| 87 | static inline int |
| 88 | trace_seq_putmem(struct trace_seq *s, const void *mem, size_t len) |
| 89 | { |
| 90 | return 0; |
| 91 | } |
| 92 | static inline int trace_seq_putmem_hex(struct trace_seq *s, const void *mem, |
| 93 | size_t len) |
| 94 | { |
| 95 | return 0; |
| 96 | } |
| 97 | static inline void *trace_seq_reserve(struct trace_seq *s, size_t len) |
| 98 | { |
| 99 | return NULL; |
| 100 | } |
Al Viro | 38eff28 | 2012-03-14 21:51:10 -0400 | [diff] [blame] | 101 | static inline int trace_seq_path(struct trace_seq *s, const struct path *path) |
Steven Rostedt | 9504504 | 2009-04-11 12:59:57 -0400 | [diff] [blame] | 102 | { |
| 103 | return 0; |
| 104 | } |
| 105 | #endif /* CONFIG_TRACING */ |
| 106 | |
| 107 | #endif /* _LINUX_TRACE_SEQ_H */ |