aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt (Red Hat) <rostedt@goodmis.org>2014-10-29 14:17:52 -0400
committerSteven Rostedt <rostedt@goodmis.org>2014-11-19 22:01:13 -0500
commit0736c033a81547b1cdc5120fc8dd60e26a00fd28 (patch)
treeef12060038510c204c5799bf133429c14af19a02
parent9a7777935c34b9192e28ef3d232a4b6b5414a657 (diff)
tracing: Add a seq_buf_clear() helper and clear len and readpos in init
Add a helper function seq_buf_clear() that resets the len and readpos fields of a seq_buf. Currently it is only used in the seq_buf_init() but will be used later when updating the seq_file code. Link: http://lkml.kernel.org/r/20141104160222.352309995@goodmis.org Tested-by: Jiri Kosina <jkosina@suse.cz> Acked-by: Jiri Kosina <jkosina@suse.cz> Reviewed-by: Petr Mladek <pmladek@suse.cz> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r--include/linux/seq_buf.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/linux/seq_buf.h b/include/linux/seq_buf.h
index d14dc9023dde..5d91262433e2 100644
--- a/include/linux/seq_buf.h
+++ b/include/linux/seq_buf.h
@@ -22,13 +22,18 @@ struct seq_buf {
22 loff_t readpos; 22 loff_t readpos;
23}; 23};
24 24
25static inline void seq_buf_clear(struct seq_buf *s)
26{
27 s->len = 0;
28 s->readpos = 0;
29}
30
25static inline void 31static inline void
26seq_buf_init(struct seq_buf *s, unsigned char *buf, unsigned int size) 32seq_buf_init(struct seq_buf *s, unsigned char *buf, unsigned int size)
27{ 33{
28 s->buffer = buf; 34 s->buffer = buf;
29 s->size = size; 35 s->size = size;
30 s->len = 0; 36 seq_buf_clear(s);
31 s->readpos = 0;
32} 37}
33 38
34/* 39/*