diff options
author | Steven Rostedt (Red Hat) <rostedt@goodmis.org> | 2014-10-29 13:59:58 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2014-11-19 22:01:12 -0500 |
commit | 9a7777935c34b9192e28ef3d232a4b6b5414a657 (patch) | |
tree | 36f36870dcfa919018769df19066ee7f4cc6ebb9 /include | |
parent | dd23180aacf4b27d48f40b27249f1e58c8df03be (diff) | |
download | linux-9a7777935c34b9192e28ef3d232a4b6b5414a657.tar.bz2 |
tracing: Convert seq_buf fields to be like seq_file fields
In facilitating the conversion of seq_file to use seq_buf,
have the seq_buf fields match the types used by seq_file.
Link: http://lkml.kernel.org/r/20141104160222.195301024@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>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/seq_buf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/seq_buf.h b/include/linux/seq_buf.h index 38770688a627..d14dc9023dde 100644 --- a/include/linux/seq_buf.h +++ b/include/linux/seq_buf.h @@ -16,10 +16,10 @@ * @readpos: The next position to read in the buffer. */ struct seq_buf { - unsigned char *buffer; - unsigned int size; - unsigned int len; - unsigned int readpos; + char *buffer; + size_t size; + size_t len; + loff_t readpos; }; static inline void |