From: Steven Rostedt (Red Hat) Date: Wed, 29 Oct 2014 17:59:58 +0000 (-0400) Subject: tracing: Convert seq_buf fields to be like seq_file fields X-Git-Tag: v3.19-rc1~132^2~14 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=9a7777935c34b9192e28ef3d232a4b6b5414a657;p=~emulex%2Finfiniband.git 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 Acked-by: Jiri Kosina Reviewed-by: Petr Mladek Signed-off-by: Steven Rostedt --- diff --git a/include/linux/seq_buf.h b/include/linux/seq_buf.h index 38770688a62..d14dc9023dd 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