linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC PATCH 4/6] seq_file: add function to write binary data
@ 2008-05-05 15:24 Peter Oberparleiter
  2008-05-06  4:36 ` Andrew Morton
  0 siblings, 1 reply; 6+ messages in thread
From: Peter Oberparleiter @ 2008-05-05 15:24 UTC (permalink / raw)
  To: linux-kernel; +Cc: ltp-list, ltp-coverage, Andrew Morton, Al Viro

From: Peter Oberparleiter <peter.oberparleiter@de.ibm.com>

seq_write() can be used to construct seq_files containing arbitrary
data. Required by the gcov-profiling interface to synthesize binary
profiling data files.

Signed-off-by: Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
---
 fs/seq_file.c            |   12 ++++++++++++
 include/linux/seq_file.h |    1 +
 2 files changed, 13 insertions(+)

Index: linux-2.6.26-rc1/fs/seq_file.c
===================================================================
--- linux-2.6.26-rc1.orig/fs/seq_file.c
+++ linux-2.6.26-rc1/fs/seq_file.c
@@ -554,6 +554,18 @@ int seq_puts(struct seq_file *m, const c
 }
 EXPORT_SYMBOL(seq_puts);
 
+int seq_write(struct seq_file *m, const void *s, size_t len)
+{
+	if (m->count + len < m->size) {
+		memcpy(m->buf + m->count, s, len);
+		m->count += len;
+		return 0;
+	}
+	m->count = m->size;
+	return -1;
+}
+EXPORT_SYMBOL(seq_write);
+
 struct list_head *seq_list_start(struct list_head *head, loff_t pos)
 {
 	struct list_head *lh;
Index: linux-2.6.26-rc1/include/linux/seq_file.h
===================================================================
--- linux-2.6.26-rc1.orig/include/linux/seq_file.h
+++ linux-2.6.26-rc1/include/linux/seq_file.h
@@ -39,6 +39,7 @@ int seq_release(struct inode *, struct f
 int seq_escape(struct seq_file *, const char *, const char *);
 int seq_putc(struct seq_file *m, char c);
 int seq_puts(struct seq_file *m, const char *s);
+int seq_write(struct seq_file *m, const void *s, size_t len);
 
 int seq_printf(struct seq_file *, const char *, ...)
 	__attribute__ ((format (printf,2,3)));



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [RFC PATCH 4/6] seq_file: add function to write binary data
  2008-05-05 15:24 [RFC PATCH 4/6] seq_file: add function to write binary data Peter Oberparleiter
@ 2008-05-06  4:36 ` Andrew Morton
  2008-05-06 18:37   ` Peter Oberparleiter
  2008-05-07 20:17   ` Alexey Dobriyan
  0 siblings, 2 replies; 6+ messages in thread
From: Andrew Morton @ 2008-05-06  4:36 UTC (permalink / raw)
  To: Peter Oberparleiter; +Cc: linux-kernel, ltp-list, ltp-coverage, Al Viro

On Mon, 05 May 2008 17:24:37 +0200 Peter Oberparleiter <peter.oberparleiter@de.ibm.com> wrote:

> From: Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
> 
> seq_write() can be used to construct seq_files containing arbitrary
> data. Required by the gcov-profiling interface to synthesize binary
> profiling data files.
> 
> Signed-off-by: Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
> ---
>  fs/seq_file.c            |   12 ++++++++++++
>  include/linux/seq_file.h |    1 +
>  2 files changed, 13 insertions(+)
> 
> Index: linux-2.6.26-rc1/fs/seq_file.c
> ===================================================================
> --- linux-2.6.26-rc1.orig/fs/seq_file.c
> +++ linux-2.6.26-rc1/fs/seq_file.c
> @@ -554,6 +554,18 @@ int seq_puts(struct seq_file *m, const c
>  }
>  EXPORT_SYMBOL(seq_puts);
>  
> +int seq_write(struct seq_file *m, const void *s, size_t len)

Most of the other seq_file interface functions are nicely documented.

> +{
> +	if (m->count + len < m->size) {

Are you sure that shouldn't be >=?

> +		memcpy(m->buf + m->count, s, len);
> +		m->count += len;
> +		return 0;
> +	}
> +	m->count = m->size;
> +	return -1;
> +}
> +EXPORT_SYMBOL(seq_write);

Usually when a write-style function is passed too much data it will write
as much as it can and will then return a smaller-than-requested value.

That's inappropriate for your application of seq_write(), but perhaps is
appropriate for other future callers?

This function has an upper limit of PAGE_SIZE bytes, I think?  The covering
documentation should explain such things.

>  struct list_head *seq_list_start(struct list_head *head, loff_t pos)
>  {
>  	struct list_head *lh;
> Index: linux-2.6.26-rc1/include/linux/seq_file.h
> ===================================================================
> --- linux-2.6.26-rc1.orig/include/linux/seq_file.h
> +++ linux-2.6.26-rc1/include/linux/seq_file.h
> @@ -39,6 +39,7 @@ int seq_release(struct inode *, struct f
>  int seq_escape(struct seq_file *, const char *, const char *);
>  int seq_putc(struct seq_file *m, char c);
>  int seq_puts(struct seq_file *m, const char *s);
> +int seq_write(struct seq_file *m, const void *s, size_t len);
>  
>  int seq_printf(struct seq_file *, const char *, ...)
>  	__attribute__ ((format (printf,2,3)));
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [RFC PATCH 4/6] seq_file: add function to write binary data
  2008-05-06  4:36 ` Andrew Morton
@ 2008-05-06 18:37   ` Peter Oberparleiter
  2008-05-07 20:17   ` Alexey Dobriyan
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Oberparleiter @ 2008-05-06 18:37 UTC (permalink / raw)
  To: Andrew Morton; +Cc: ltp-list, ltp-coverage, linux-kernel, Al Viro

Andrew Morton wrote:
> On Mon, 05 May 2008 17:24:37 +0200 Peter Oberparleiter <peter.oberparleiter@de.ibm.com> wrote:
> 
>> From: Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
>> Index: linux-2.6.26-rc1/fs/seq_file.c
>> ===================================================================
>> --- linux-2.6.26-rc1.orig/fs/seq_file.c
>> +++ linux-2.6.26-rc1/fs/seq_file.c
>> @@ -554,6 +554,18 @@ int seq_puts(struct seq_file *m, const c
>>  }
>>  EXPORT_SYMBOL(seq_puts);
>>  
>> +int seq_write(struct seq_file *m, const void *s, size_t len)
> 
> Most of the other seq_file interface functions are nicely documented.

Documentation will be added with the next resend.

>> +{
>> +	if (m->count + len < m->size) {
> 
> Are you sure that shouldn't be >=?

If I understood seq_read() correctly, then < is correct:
m->count == m->size seems to be used as special marker for seq_read()
and >= doesn't make sense to me in this place. Also seq_printf() and
seq_puts() follow the same scheme.

>> +		memcpy(m->buf + m->count, s, len);
>> +		m->count += len;
>> +		return 0;
>> +	}
>> +	m->count = m->size;
>> +	return -1;
>> +}
>> +EXPORT_SYMBOL(seq_write);
> 
> Usually when a write-style function is passed too much data it will write
> as much as it can and will then return a smaller-than-requested value.

A write function in the context of the seq_file interface seems to be
defined more as an all-or-nothing business: user wants to read, buffer
is half-full, write is called, item doesn't fit, buffer is emptied,
write is called again, buffer doesn't fit, buffer size is doubled,
write is called again, etc.

> That's inappropriate for your application of seq_write(), but perhaps is
> appropriate for other future callers?

seq_write() is almost identical to the already existing seq_puts() which
led me to believe that it would fit the overall logic.

> This function has an upper limit of PAGE_SIZE bytes, I think?  The covering
> documentation should explain such things.

seq_read() will double its internal buffer size if an item doesn't fit.


Regards,
  Peter

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [RFC PATCH 4/6] seq_file: add function to write binary data
  2008-05-06  4:36 ` Andrew Morton
  2008-05-06 18:37   ` Peter Oberparleiter
@ 2008-05-07 20:17   ` Alexey Dobriyan
  2008-05-07 20:45     ` Alexey Dobriyan
  1 sibling, 1 reply; 6+ messages in thread
From: Alexey Dobriyan @ 2008-05-07 20:17 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Peter Oberparleiter, linux-kernel, ltp-list, ltp-coverage,
	Al Viro

On Mon, May 05, 2008 at 09:36:44PM -0700, Andrew Morton wrote:
> On Mon, 05 May 2008 17:24:37 +0200 Peter Oberparleiter <peter.oberparleiter@de.ibm.com> wrote:
> > --- linux-2.6.26-rc1.orig/fs/seq_file.c
> > +++ linux-2.6.26-rc1/fs/seq_file.c

> > +int seq_write(struct seq_file *m, const void *s, size_t len)

> > +{
> > +	if (m->count + len < m->size) {
> 
> Are you sure that shouldn't be >=?

No!

->count is how much bytes are already in buffer.
len is len.
->size is end of page(s).

> 
> > +		memcpy(m->buf + m->count, s, len);
> > +		m->count += len;
> > +		return 0;
> > +	}
> > +	m->count = m->size;
> > +	return -1;
> > +}
> > +EXPORT_SYMBOL(seq_write);

I'd call function seq_memcpy() though.

> This function has an upper limit of PAGE_SIZE bytes, I think?  The covering
> documentation should explain such things.

Again, no.

At first buffer is PAGE_SIZE. If output is bigger, ->count is dubbed to
->size, so when ->show() returns, size of buffer is doubled until it
fits in. See "while(1)" loop in seq_read().


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [RFC PATCH 4/6] seq_file: add function to write binary data
  2008-05-07 20:17   ` Alexey Dobriyan
@ 2008-05-07 20:45     ` Alexey Dobriyan
  2008-05-08  7:42       ` Peter Oberparleiter
  0 siblings, 1 reply; 6+ messages in thread
From: Alexey Dobriyan @ 2008-05-07 20:45 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Peter Oberparleiter, linux-kernel, ltp-list, ltp-coverage,
	Al Viro

On Thu, May 08, 2008 at 12:17:57AM +0400, Alexey Dobriyan wrote:
> > > +		memcpy(m->buf + m->count, s, len);
> > > +		m->count += len;
> > > +		return 0;
> > > +	}
> > > +	m->count = m->size;
> > > +	return -1;
> > > +}
> > > +EXPORT_SYMBOL(seq_write);
> 
> I'd call function seq_memcpy() though.

Or even seq_blob().


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [RFC PATCH 4/6] seq_file: add function to write binary data
  2008-05-07 20:45     ` Alexey Dobriyan
@ 2008-05-08  7:42       ` Peter Oberparleiter
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Oberparleiter @ 2008-05-08  7:42 UTC (permalink / raw)
  To: Alexey Dobriyan
  Cc: Andrew Morton, ltp-list, ltp-coverage, linux-kernel, Al Viro

Alexey Dobriyan wrote:
> On Thu, May 08, 2008 at 12:17:57AM +0400, Alexey Dobriyan wrote:
>> > > +		memcpy(m->buf + m->count, s, len);
>> > > +		m->count += len;
>> > > +		return 0;
>> > > +	}
>> > > +	m->count = m->size;
>> > > +	return -1;
>> > > +}
>> > > +EXPORT_SYMBOL(seq_write);
>> 
>> I'd call function seq_memcpy() though.
> 
> Or even seq_blob().

Hm, in my opinion seq_write() would fit more into the already existing
naming scheme of seq_file interface functions. The beauty of the idea
behind seq_file is that a user can just pretend to write to the buffer
that is read by a userspace application without having to worry about
full buffers, partial reads or seeks. In this context, the read becomes
a write and function names such as seq_printf(), seq_putc(), seq_puts()
or the suggested seq_write() seem to best fit this idea.


Regards,
  Peter

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-05-08  7:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-05 15:24 [RFC PATCH 4/6] seq_file: add function to write binary data Peter Oberparleiter
2008-05-06  4:36 ` Andrew Morton
2008-05-06 18:37   ` Peter Oberparleiter
2008-05-07 20:17   ` Alexey Dobriyan
2008-05-07 20:45     ` Alexey Dobriyan
2008-05-08  7:42       ` Peter Oberparleiter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).