blob: a32d86ec8bf21aa6fab8463f56cbb3e6b7a1b560 [file] [log] [blame]
Steven Rostedt95045042009-04-11 12:59:57 -04001#ifndef _LINUX_TRACE_SEQ_H
2#define _LINUX_TRACE_SEQ_H
3
Steven Rostedt6d723732009-04-10 14:53:50 -04004#include <linux/fs.h>
5
Wu Zhangjin78be6912009-06-14 14:52:30 +08006#include <asm/page.h>
7
Steven Rostedt95045042009-04-11 12:59:57 -04008/*
9 * Trace sequences are used to allow a function to call several other functions
Jiri Olsa6d3f1e12009-10-23 19:36:19 -040010 * to create a string of data to use (up to a max of PAGE_SIZE).
Steven Rostedt95045042009-04-11 12:59:57 -040011 */
12
13struct trace_seq {
14 unsigned char buffer[PAGE_SIZE];
15 unsigned int len;
16 unsigned int readpos;
Johannes Bergd184b312009-11-25 16:10:14 +010017 int full;
Steven Rostedt95045042009-04-11 12:59:57 -040018};
19
20static inline void
21trace_seq_init(struct trace_seq *s)
22{
23 s->len = 0;
24 s->readpos = 0;
Johannes Bergd184b312009-11-25 16:10:14 +010025 s->full = 0;
Steven Rostedt95045042009-04-11 12:59:57 -040026}
27
28/*
29 * Currently only defined when tracing is enabled.
30 */
31#ifdef CONFIG_TRACING
Joe Perchesb9075fa2011-10-31 17:11:33 -070032extern __printf(2, 3)
33int trace_seq_printf(struct trace_seq *s, const char *fmt, ...);
34extern __printf(2, 0)
35int trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args);
Steven Rostedt95045042009-04-11 12:59:57 -040036extern int
37trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary);
Steven Rostedta63ce5b2009-12-07 09:11:39 -050038extern int trace_print_seq(struct seq_file *m, struct trace_seq *s);
Steven Rostedt95045042009-04-11 12:59:57 -040039extern ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
40 size_t cnt);
41extern int trace_seq_puts(struct trace_seq *s, const char *str);
42extern int trace_seq_putc(struct trace_seq *s, unsigned char c);
43extern int trace_seq_putmem(struct trace_seq *s, const void *mem, size_t len);
44extern int trace_seq_putmem_hex(struct trace_seq *s, const void *mem,
45 size_t len);
46extern void *trace_seq_reserve(struct trace_seq *s, size_t len);
Al Viro38eff282012-03-14 21:51:10 -040047extern int trace_seq_path(struct trace_seq *s, const struct path *path);
Steven Rostedt95045042009-04-11 12:59:57 -040048
49#else /* CONFIG_TRACING */
50static inline int trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
Steven Rostedt95045042009-04-11 12:59:57 -040051{
52 return 0;
53}
54static inline int
55trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary)
56{
57 return 0;
58}
59
Steven Rostedta63ce5b2009-12-07 09:11:39 -050060static inline int trace_print_seq(struct seq_file *m, struct trace_seq *s)
Steven Rostedt95045042009-04-11 12:59:57 -040061{
Steven Rostedta63ce5b2009-12-07 09:11:39 -050062 return 0;
Steven Rostedt95045042009-04-11 12:59:57 -040063}
64static inline ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
65 size_t cnt)
66{
67 return 0;
68}
69static inline int trace_seq_puts(struct trace_seq *s, const char *str)
70{
71 return 0;
72}
Steven Rostedt23de29d2009-04-20 12:59:29 -040073static inline int trace_seq_putc(struct trace_seq *s, unsigned char c)
Steven Rostedt95045042009-04-11 12:59:57 -040074{
75 return 0;
76}
77static inline int
78trace_seq_putmem(struct trace_seq *s, const void *mem, size_t len)
79{
80 return 0;
81}
82static inline int trace_seq_putmem_hex(struct trace_seq *s, const void *mem,
83 size_t len)
84{
85 return 0;
86}
87static inline void *trace_seq_reserve(struct trace_seq *s, size_t len)
88{
89 return NULL;
90}
Al Viro38eff282012-03-14 21:51:10 -040091static inline int trace_seq_path(struct trace_seq *s, const struct path *path)
Steven Rostedt95045042009-04-11 12:59:57 -040092{
93 return 0;
94}
95#endif /* CONFIG_TRACING */
96
97#endif /* _LINUX_TRACE_SEQ_H */