]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/trace_seq.h
Merge tag 'sound-3.18-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[mirror_ubuntu-artful-kernel.git] / include / linux / trace_seq.h
CommitLineData
9504504c
SR
1#ifndef _LINUX_TRACE_SEQ_H
2#define _LINUX_TRACE_SEQ_H
3
6d723736
SR
4#include <linux/fs.h>
5
78be6914
WZ
6#include <asm/page.h>
7
9504504c
SR
8/*
9 * Trace sequences are used to allow a function to call several other functions
6d3f1e12 10 * to create a string of data to use (up to a max of PAGE_SIZE).
9504504c
SR
11 */
12
13struct trace_seq {
14 unsigned char buffer[PAGE_SIZE];
15 unsigned int len;
16 unsigned int readpos;
d184b31c 17 int full;
9504504c
SR
18};
19
20static inline void
21trace_seq_init(struct trace_seq *s)
22{
23 s->len = 0;
24 s->readpos = 0;
d184b31c 25 s->full = 0;
9504504c
SR
26}
27
7b039cb4
SRRH
28/**
29 * trace_seq_buffer_ptr - return pointer to next location in buffer
30 * @s: trace sequence descriptor
31 *
32 * Returns the pointer to the buffer where the next write to
33 * the buffer will happen. This is useful to save the location
34 * that is about to be written to and then return the result
35 * of that write.
36 */
37static inline unsigned char *
38trace_seq_buffer_ptr(struct trace_seq *s)
39{
40 return s->buffer + s->len;
41}
42
9504504c
SR
43/*
44 * Currently only defined when tracing is enabled.
45 */
46#ifdef CONFIG_TRACING
b9075fa9
JP
47extern __printf(2, 3)
48int trace_seq_printf(struct trace_seq *s, const char *fmt, ...);
49extern __printf(2, 0)
50int trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args);
9504504c
SR
51extern int
52trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary);
a63ce5b3 53extern int trace_print_seq(struct seq_file *m, struct trace_seq *s);
36aabfff
SRRH
54extern int trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
55 int cnt);
9504504c
SR
56extern int trace_seq_puts(struct trace_seq *s, const char *str);
57extern int trace_seq_putc(struct trace_seq *s, unsigned char c);
36aabfff 58extern int trace_seq_putmem(struct trace_seq *s, const void *mem, unsigned int len);
9504504c 59extern int trace_seq_putmem_hex(struct trace_seq *s, const void *mem,
36aabfff 60 unsigned int len);
38eff289 61extern int trace_seq_path(struct trace_seq *s, const struct path *path);
9504504c 62
4449bf92
SRRH
63extern int trace_seq_bitmask(struct trace_seq *s, const unsigned long *maskp,
64 int nmaskbits);
65
9504504c
SR
66#else /* CONFIG_TRACING */
67static inline int trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
9504504c
SR
68{
69 return 0;
70}
71static inline int
72trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary)
73{
74 return 0;
75}
76
4449bf92
SRRH
77static inline int
78trace_seq_bitmask(struct trace_seq *s, const unsigned long *maskp,
79 int nmaskbits)
80{
81 return 0;
82}
83
a63ce5b3 84static inline int trace_print_seq(struct seq_file *m, struct trace_seq *s)
9504504c 85{
a63ce5b3 86 return 0;
9504504c 87}
36aabfff
SRRH
88static inline int trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
89 int cnt)
9504504c
SR
90{
91 return 0;
92}
93static inline int trace_seq_puts(struct trace_seq *s, const char *str)
94{
95 return 0;
96}
23de29de 97static inline int trace_seq_putc(struct trace_seq *s, unsigned char c)
9504504c
SR
98{
99 return 0;
100}
101static inline int
36aabfff 102trace_seq_putmem(struct trace_seq *s, const void *mem, unsigned int len)
9504504c
SR
103{
104 return 0;
105}
106static inline int trace_seq_putmem_hex(struct trace_seq *s, const void *mem,
36aabfff 107 unsigned int len)
9504504c
SR
108{
109 return 0;
110}
38eff289 111static inline int trace_seq_path(struct trace_seq *s, const struct path *path)
9504504c
SR
112{
113 return 0;
114}
115#endif /* CONFIG_TRACING */
116
117#endif /* _LINUX_TRACE_SEQ_H */