linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/23] printk: refactoring
@ 2012-10-17  6:06 Joe Perches
  2012-10-17  6:06 ` [PATCH 01/23] printk: Move to separate directory for easier modification Joe Perches
                   ` (23 more replies)
  0 siblings, 24 replies; 31+ messages in thread
From: Joe Perches @ 2012-10-17  6:06 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Kay Sievers, linux-kernel

Make printk a bit more readable.

Joe Perches (23):
  printk: Move to separate directory for easier modification
  printk: Add console_cmdline.h
  printk: Move braille console support into separate braille.[ch] files
  printk: Use pointer for console_cmdline indexing
  printk: rename struct log to struct printk_log
  printk: Rename log_buf and __LOG_BUF_LEN
  printk: Rename log_first and log_next variables
  printk: Rename log_<foo> variables and functions
  printk: Rename enum log_flags to printk_log_flags
  printk: Rename log_wait to printk_log_wait
  printk: Rename logbuf_lock to printk_logbuf_lock
  printk: Rename clear_seq and clear_idx variables
  printk: Remove static from printk_ variables
  printk: Rename LOG_ALIGN to PRINTK_LOG_ALIGN
  printk: Add and use printk_log.h
  printk: Add printk_log.c
  printk: Make wait_queue_head_t printk_log_wait extern
  printk: Rename and move 2 #defines to printk_log.h
  printk: Move devkmsg bits to separate file
  printk: Prefix print_time and msg_print_text with printk_
  printk: Move functions printk_print_time and printk_msg_print_text
  printk: Add printk_syslog.c and .h
  printk: Move kmsg_dump functions to separate file

 drivers/accessibility/braille/braille_console.c |    9 +-
 fs/proc/kmsg.c                                  |    4 +-
 kernel/Makefile                                 |    3 +-
 kernel/printk.c                                 | 2820 -----------------------
 kernel/printk/Makefile                          |    6 +
 kernel/printk/braille.c                         |   48 +
 kernel/printk/braille.h                         |   48 +
 kernel/printk/console_cmdline.h                 |   14 +
 kernel/printk/devkmsg.c                         |  309 +++
 kernel/printk/kmsg_dump.c                       |  328 +++
 kernel/printk/printk.c                          | 1515 ++++++++++++
 kernel/printk/printk_log.c                      |  263 +++
 kernel/printk/printk_log.h                      |  123 +
 kernel/printk/printk_syslog.c                   |  354 +++
 kernel/printk/printk_syslog.h                   |   12 +
 15 files changed, 3031 insertions(+), 2825 deletions(-)
 delete mode 100644 kernel/printk.c
 create mode 100644 kernel/printk/Makefile
 create mode 100644 kernel/printk/braille.c
 create mode 100644 kernel/printk/braille.h
 create mode 100644 kernel/printk/console_cmdline.h
 create mode 100644 kernel/printk/devkmsg.c
 create mode 100644 kernel/printk/kmsg_dump.c
 create mode 100644 kernel/printk/printk.c
 create mode 100644 kernel/printk/printk_log.c
 create mode 100644 kernel/printk/printk_log.h
 create mode 100644 kernel/printk/printk_syslog.c
 create mode 100644 kernel/printk/printk_syslog.h

-- 
1.7.10.4


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

end of thread, other threads:[~2012-10-25 15:32 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-17  6:06 [PATCH 00/23] printk: refactoring Joe Perches
2012-10-17  6:06 ` [PATCH 01/23] printk: Move to separate directory for easier modification Joe Perches
2012-10-17  6:06 ` [PATCH 02/23] printk: Add console_cmdline.h Joe Perches
2012-10-17  6:06 ` [PATCH 03/23] printk: Move braille console support into separate braille.[ch] files Joe Perches
2012-10-17 23:47   ` Samuel Thibault
2012-10-25  0:12   ` Stephen Warren
2012-10-25  0:31     ` Joe Perches
2012-10-25 15:32       ` Stephen Warren
2012-10-17  6:06 ` [PATCH 04/23] printk: Use pointer for console_cmdline indexing Joe Perches
2012-10-17  6:06 ` [PATCH 05/23] printk: rename struct log to struct printk_log Joe Perches
2012-10-17  6:06 ` [PATCH 06/23] printk: Rename log_buf and __LOG_BUF_LEN Joe Perches
2012-10-17  6:06 ` [PATCH 07/23] printk: Rename log_first and log_next variables Joe Perches
2012-10-17  6:06 ` [PATCH 08/23] printk: Rename log_<foo> variables and functions Joe Perches
2012-10-17  6:06 ` [PATCH 09/23] printk: Rename enum log_flags to printk_log_flags Joe Perches
2012-10-17  6:06 ` [PATCH 10/23] printk: Rename log_wait to printk_log_wait Joe Perches
2012-10-17  6:06 ` [PATCH 11/23] printk: Rename logbuf_lock to printk_logbuf_lock Joe Perches
2012-10-17  6:06 ` [PATCH 12/23] printk: Rename clear_seq and clear_idx variables Joe Perches
2012-10-17  6:06 ` [PATCH 13/23] printk: Remove static from printk_ variables Joe Perches
2012-10-17  6:06 ` [PATCH 14/23] printk: Rename LOG_ALIGN to PRINTK_LOG_ALIGN Joe Perches
2012-10-17  6:06 ` [PATCH 15/23] printk: Add and use printk_log.h Joe Perches
2012-10-17  6:06 ` [PATCH 16/23] printk: Add printk_log.c Joe Perches
2012-10-17  6:06 ` [PATCH 17/23] printk: Make wait_queue_head_t printk_log_wait extern Joe Perches
2012-10-17  6:06 ` [PATCH 18/23] printk: Rename and move 2 #defines to printk_log.h Joe Perches
2012-10-17  6:06 ` [PATCH 19/23] printk: Move devkmsg bits to separate file Joe Perches
2012-10-17  6:06 ` [PATCH 20/23] printk: Prefix print_time and msg_print_text with printk_ Joe Perches
2012-10-17  6:06 ` [PATCH 21/23] printk: Move functions printk_print_time and printk_msg_print_text Joe Perches
2012-10-17  6:06 ` [PATCH 22/23] printk: Add printk_syslog.c and .h Joe Perches
2012-10-17  6:06 ` [PATCH 23/23] printk: Move kmsg_dump functions to separate file Joe Perches
2012-10-18 23:16 ` [PATCH 00/23] printk: refactoring Andrew Morton
2012-10-19  0:43   ` Joe Perches
2012-10-19  1:00   ` Joe Perches

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).