tracing: Remove unnecessary null test before debugfs_remove()
[deliverable/linux.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
28/*
29 * Currently only defined when tracing is enabled.
30 */
31#ifdef CONFIG_TRACING
b9075fa9
JP
32extern __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);
9504504c
SR
36extern int
37trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary);
a63ce5b3 38extern int trace_print_seq(struct seq_file *m, struct trace_seq *s);
36aabfff
SRRH
39extern int trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
40 int cnt);
9504504c
SR
41extern int trace_seq_puts(struct trace_seq *s, const char *str);
42extern int trace_seq_putc(struct trace_seq *s, unsigned char c);
36aabfff 43extern int trace_seq_putmem(struct trace_seq *s, const void *mem, unsigned int len);
9504504c 44extern int trace_seq_putmem_hex(struct trace_seq *s, const void *mem,
36aabfff 45 unsigned int len);
38eff289 46extern int trace_seq_path(struct trace_seq *s, const struct path *path);
9504504c 47
4449bf92
SRRH
48extern int trace_seq_bitmask(struct trace_seq *s, const unsigned long *maskp,
49 int nmaskbits);
50
9504504c
SR
51#else /* CONFIG_TRACING */
52static inline int trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
9504504c
SR
53{
54 return 0;
55}
56static inline int
57trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary)
58{
59 return 0;
60}
61
4449bf92
SRRH
62static inline int
63trace_seq_bitmask(struct trace_seq *s, const unsigned long *maskp,
64 int nmaskbits)
65{
66 return 0;
67}
68
a63ce5b3 69static inline int trace_print_seq(struct seq_file *m, struct trace_seq *s)
9504504c 70{
a63ce5b3 71 return 0;
9504504c 72}
36aabfff
SRRH
73static inline int trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
74 int cnt)
9504504c
SR
75{
76 return 0;
77}
78static inline int trace_seq_puts(struct trace_seq *s, const char *str)
79{
80 return 0;
81}
23de29de 82static inline int trace_seq_putc(struct trace_seq *s, unsigned char c)
9504504c
SR
83{
84 return 0;
85}
86static inline int
36aabfff 87trace_seq_putmem(struct trace_seq *s, const void *mem, unsigned int len)
9504504c
SR
88{
89 return 0;
90}
91static inline int trace_seq_putmem_hex(struct trace_seq *s, const void *mem,
36aabfff 92 unsigned int len)
9504504c
SR
93{
94 return 0;
95}
38eff289 96static inline int trace_seq_path(struct trace_seq *s, const struct path *path)
9504504c
SR
97{
98 return 0;
99}
100#endif /* CONFIG_TRACING */
101
102#endif /* _LINUX_TRACE_SEQ_H */
This page took 0.564926 seconds and 5 git commands to generate.