public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Randy Dunlap <randy.dunlap@oracle.com>
To: Vegard Nossum <vegard.nossum@gmail.com>
Cc: LKML <linux-kernel@vger.kernel.org>,
	Kyle Moffett <mrmacman_g4@mac.com>,
	Michael Holzheu <holzheu@linux.vnet.ibm.com>,
	Joe Perches <joe@perches.com>, Rob Landley <rob@landley.net>,
	Dick Streefland <dick.streefland@altium.nl>,
	Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>,
	Jesse Barnes <jesse.barnes@intel.com>,
	Arnd Bergmann <arnd@arndb.de>,
	Jan Engelhardt <jengelh@computergmbh.de>,
	Emil Medve <Emilian.Medve@freescale.com>,
	Stephen Hemminger <shemminger@linux-foundation.org>,
	"linux@horizon.com" <linux@horizon.com>,
	Miguel Ojeda <maxextreme@gmail.com>
Subject: Re: [RFC][PATCH] New message-logging API (kprint)
Date: Thu, 4 Oct 2007 13:17:03 -0700	[thread overview]
Message-ID: <20071004131703.25046db9.randy.dunlap@oracle.com> (raw)
In-Reply-To: <1191528247.13580.11.camel@grianne>

On Thu, 04 Oct 2007 22:04:07 +0200 Vegard Nossum wrote:

> Description: This patch largely implements the kprint API as previously
> posted to the LKML and described in Documentation/kprint.txt (see patch).
> 
> The main purpose of this change is provide a unified logging API to the
> kernel and at the same time make it easy to add extensions, now and later.
> 
> My changes and additions are as follows:


$ diffstat -p1 -w70 kprint.patch 
 Documentation/kprint.txt                 |  238 ++++++++++++++
 arch/i386/kernel/traps.c                 |    2 
 arch/um/include/user.h                   |    6 
 crypto/tcrypt.c                          |    5 
 drivers/char/mem.c                       |   10 
 drivers/ide/ide-lib.c                    |    3 
 drivers/md/md.c                          |    5 
 drivers/media/dvb/frontends/tda10021.c   |   13 
 drivers/media/dvb/frontends/tda10023.c   |   13 
 drivers/media/dvb/frontends/ves1820.c    |    9 
 drivers/media/video/em28xx/em28xx-core.c |   16 
 drivers/media/video/usbvideo/usbvideo.h  |    7 
 drivers/net/e100.c                       |   10 
 drivers/net/e1000/e1000.h                |   12 
 drivers/net/irda/ma600.c                 |    5 
 drivers/net/ixgb/ixgb.h                  |   11 
 drivers/net/lib8390.c                    |   17 -
 drivers/net/pcmcia/axnet_cs.c            |   12 
 drivers/pcmcia/rsrc_nonstatic.c          |   10 
 drivers/scsi/advansys.c                  |    2 
 include/asm-generic/pgtable-nopmd.h      |    5 
 include/asm-generic/pgtable-nopud.h      |    5 
 include/linux/args.h                     |   29 +
 include/linux/kernel.h                   |   27 +
 include/linux/kprint-light.h             |   25 +
 include/linux/kprint.h                   |  201 ++++++++++++
 include/linux/ringbuffer.h               |   34 ++
 include/net/sctp/sctp.h                  |    6 
 include/scsi/scsi_device.h               |   14 
 include/scsi/sd.h                        |   13 
 init/Kconfig                             |    2 
 init/do_mounts_initrd.c                  |    2 
 kernel/Kconfig.kprint                    |  125 +++++++
 kernel/Makefile                          |    2 
 kernel/kprint.c                          |  345 +++++++++++++++++++++
 kernel/printk.c                          |    9 
 lib/Makefile                             |    3 
 lib/ringbuffer.c                         |  155 +++++++++
 lib/vsprintf.c                           |  321 +++++++++++++++++++
 net/tipc/dbg.c                           |    3 
 40 files changed, 1660 insertions(+), 72 deletions(-)

  reply	other threads:[~2007-10-04 20:26 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-10-04 20:04 [RFC][PATCH] New message-logging API (kprint) Vegard Nossum
2007-10-04 20:17 ` Randy Dunlap [this message]
2007-10-05  1:59   ` Rob Landley
2007-10-05  7:01     ` Miguel Ojeda
2007-10-05 16:26       ` Rob Landley
2007-10-05 23:01         ` Miguel Ojeda
2007-10-06  0:34           ` Stephen Hemminger
2007-10-07 10:20             ` Miguel Ojeda
2007-10-07 21:56           ` Rob Landley
2007-10-07 22:32             ` Randy Dunlap
2007-10-06  6:10         ` Vegard Nossum
2007-10-07 21:50           ` Rob Landley
2007-10-08 15:25             ` Stephen Hemminger
2007-10-08 15:33               ` Vegard Nossum
2007-10-08 15:42                 ` Stephen Hemminger
2007-10-05 13:13     ` Vegard Nossum
2007-10-05 16:05       ` Rob Landley
2007-10-05 17:01         ` Alan Cox

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=20071004131703.25046db9.randy.dunlap@oracle.com \
    --to=randy.dunlap@oracle.com \
    --cc=Emilian.Medve@freescale.com \
    --cc=Geert.Uytterhoeven@sonycom.com \
    --cc=arnd@arndb.de \
    --cc=dick.streefland@altium.nl \
    --cc=holzheu@linux.vnet.ibm.com \
    --cc=jengelh@computergmbh.de \
    --cc=jesse.barnes@intel.com \
    --cc=joe@perches.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@horizon.com \
    --cc=maxextreme@gmail.com \
    --cc=mrmacman_g4@mac.com \
    --cc=rob@landley.net \
    --cc=shemminger@linux-foundation.org \
    --cc=vegard.nossum@gmail.com \
    /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