public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Matt Mackall <mpm@selenic.com>
To: wdebruij@dds.nl, akpm@osdl.org
Cc: linux-kernel@vger.kernel.org
Subject: [patch] Re: missing vprintf in kernel.api. Interest in patch?
Date: Tue, 10 Feb 2004 20:06:26 -0600	[thread overview]
Message-ID: <20040211020626.GA7931@waste.org> (raw)
In-Reply-To: <1076408579.4028b1036a8ae@webmail.dds.nl>

On Tue, Feb 10, 2004 at 11:22:59AM +0100, wdebruij@dds.nl wrote:
> Therefore my question is this: is there any interest in 
> 
> (1) a small patch that extracts the vsnprintf(printk_buf,...) from printk and
> thus creates a vprintf function (trivial change, perhaps +5 lines of code).

I already have this patch in my -tiny tree as well as some other patches to
convert some would-be users like ext3_error. Andrew, interested in these? 

Add vprintk call


 tiny-mpm/include/linux/kernel.h |    1 +
 tiny-mpm/kernel/printk.c        |   14 ++++++++++++--
 2 files changed, 13 insertions(+), 2 deletions(-)

diff -puN include/linux/kernel.h~vprintk include/linux/kernel.h
--- tiny/include/linux/kernel.h~vprintk	2004-02-04 14:55:22.000000000 -0600
+++ tiny-mpm/include/linux/kernel.h	2004-02-04 14:55:22.000000000 -0600
@@ -84,6 +84,7 @@ extern unsigned long long memparse(char 
 extern int kernel_text_address(unsigned long addr);
 extern int session_of_pgrp(int pgrp);
 
+asmlinkage int vprintk(const char *fmt, va_list args);
 asmlinkage int printk(const char * fmt, ...)
 	__attribute__ ((format (printf, 1, 2)));
 
diff -puN kernel/printk.c~vprintk kernel/printk.c
--- tiny/kernel/printk.c~vprintk	2004-02-04 14:55:22.000000000 -0600
+++ tiny-mpm/kernel/printk.c	2004-02-04 14:55:22.000000000 -0600
@@ -474,6 +474,17 @@ static void emit_log_char(char c)
 asmlinkage int printk(const char *fmt, ...)
 {
 	va_list args;
+	int r;
+
+	va_start(args, fmt);
+	r = vprintk(fmt, args);
+	va_end(args);
+
+	return r;
+}
+
+asmlinkage int vprintk(const char *fmt, va_list args)
+{
 	unsigned long flags;
 	int printed_len;
 	char *p;
@@ -491,9 +502,7 @@ asmlinkage int printk(const char *fmt, .
 	spin_lock_irqsave(&logbuf_lock, flags);
 
 	/* Emit the output into the temporary buffer */
-	va_start(args, fmt);
 	printed_len = vsnprintf(printk_buf, sizeof(printk_buf), fmt, args);
-	va_end(args);
 
 	/*
 	 * Copy the output into log_buf.  If the caller didn't provide
@@ -543,6 +552,7 @@ out:
 	return printed_len;
 }
 EXPORT_SYMBOL(printk);
+EXPORT_SYMBOL(vprintk);
 
 /**
  * acquire_console_sem - lock the console system for exclusive use.

_


-- 
Matt Mackall : http://www.selenic.com : Linux development and consulting

      reply	other threads:[~2004-02-11  2:06 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-02-10 10:22 missing vprintf in kernel.api. Interest in patch? wdebruij
2004-02-11  2:06 ` Matt Mackall [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20040211020626.GA7931@waste.org \
    --to=mpm@selenic.com \
    --cc=akpm@osdl.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=wdebruij@dds.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox