Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760723AbZFBLok (ORCPT ); Tue, 2 Jun 2009 07:44:40 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1760376AbZFBLob (ORCPT ); Tue, 2 Jun 2009 07:44:31 -0400 Received: from mtagate1.uk.ibm.com ([194.196.100.161]:52600 "EHLO mtagate1.uk.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755717AbZFBLoa (ORCPT ); Tue, 2 Jun 2009 07:44:30 -0400 Message-Id: <20090602114401.907845551@linux.vnet.ibm.com> User-Agent: quilt/0.48-1 Date: Tue, 02 Jun 2009 13:44:01 +0200 From: Peter Oberparleiter To: Andrew Morton Cc: linux-kernel@vger.kernel.org, Andi Kleen , Huang Ying , Li Wei , Michael Ellerman , Ingo Molnar , Heiko Carstens , Martin Schwidefsky , Al Viro Subject: [PATCH 2/4] seq_file: add function to write binary data References: <20090602114359.129247921@linux.vnet.ibm.com> Content-Disposition: inline; filename=seq_file-add-function-to-write-binary-data.patch Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2215 Lines: 64 From: Peter Oberparleiter 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 Cc: Al Viro --- fs/seq_file.c | 20 ++++++++++++++++++++ include/linux/seq_file.h | 1 + 2 files changed, 21 insertions(+) Index: linux-2.6.30-rc7/fs/seq_file.c =================================================================== --- linux-2.6.30-rc7.orig/fs/seq_file.c 2009-06-02 10:34:35.000000000 +0200 +++ linux-2.6.30-rc7/fs/seq_file.c 2009-06-02 10:35:24.000000000 +0200 @@ -640,6 +640,26 @@ } EXPORT_SYMBOL(seq_puts); +/** + * seq_write - write arbitrary data to buffer + * @seq: seq_file identifying the buffer to which data should be written + * @data: data address + * @len: number of bytes + * + * Return 0 on success, non-zero otherwise. + */ +int seq_write(struct seq_file *seq, const void *data, size_t len) +{ + if (seq->count + len < seq->size) { + memcpy(seq->buf + seq->count, data, len); + seq->count += len; + return 0; + } + seq->count = seq->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.30-rc7/include/linux/seq_file.h =================================================================== --- linux-2.6.30-rc7.orig/include/linux/seq_file.h 2009-06-02 10:34:43.000000000 +0200 +++ linux-2.6.30-rc7/include/linux/seq_file.h 2009-06-02 10:35:24.000000000 +0200 @@ -43,6 +43,7 @@ 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 *seq, const void *data, size_t len); int seq_printf(struct seq_file *, const char *, ...) __attribute__ ((format (printf,2,3))); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/