All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 0/4] printk: replace ringbuffer
@ 2020-07-09 13:23 ` John Ogness
  0 siblings, 0 replies; 52+ messages in thread
From: John Ogness @ 2020-07-09 13:23 UTC (permalink / raw)
  To: Petr Mladek
  Cc: Peter Zijlstra, Sergey Senozhatsky, Sergey Senozhatsky,
	Steven Rostedt, Linus Torvalds, Greg Kroah-Hartman, Andrea Parri,
	Thomas Gleixner, Paul McKenney, kexec, linux-kernel

Hello,

Here is a v5 for the first series to rework the printk
subsystem. The v4 is here [0]. This first series
only replaces the existing ringbuffer implementation. No locking
is removed. The semantics/behavior of printk are kept the same
except for a minor optimization that is reverted (patch 3).

RFC patches for various userspace tools to dump the kernel log
are available: crash [1], makedumpfile [2], kexec-tools [3].

This series is based on v5.8-rc4.

The list of changes since v4:

printk_ringbuffer
=================

- added new prb_first_valid_seq() for readers to retrieve the
  oldest valid sequence number

- prb_first_seq(): now static

printk.c
========

- devkmsg_read(): fixed returning EPIPE on buffer wrap [4]

- setup_log_buf(): fixed printk conversion specifier [5]

- replace all prb_first_seq() usage with the new
  prb_first_valid_seq() (because that is what the readers are
  actually interested in)

[0] https://lkml.kernel.org/r/20200707145932.8752-1-john.ogness@linutronix.de
[1] https://github.com/Linutronix/crash.git (printk branch)
[2] https://github.com/Linutronix/makedumpfile.git (printk branch)
[3] https://github.com/Linutronix/kexec-tools.git (printk branch)
[4] https://lkml.kernel.org/r/87zh89kkek.fsf@jogness.linutronix.de
[5] https://lkml.kernel.org/r/87r1tmcfhf.fsf@jogness.linutronix.de

John Ogness (4):
  crash: add VMCOREINFO macro to define offset in a struct declared by
    typedef
  printk: add lockless ringbuffer
  Revert "printk: lock/unlock console only for new logbuf entries"
  printk: use the lockless ringbuffer

 include/linux/crash_core.h        |    3 +
 kernel/printk/Makefile            |    1 +
 kernel/printk/printk.c            |  950 ++++++++--------
 kernel/printk/printk_ringbuffer.c | 1687 +++++++++++++++++++++++++++++
 kernel/printk/printk_ringbuffer.h |  399 +++++++
 5 files changed, 2586 insertions(+), 454 deletions(-)
 create mode 100644 kernel/printk/printk_ringbuffer.c
 create mode 100644 kernel/printk/printk_ringbuffer.h

-- 
2.20.1


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

end of thread, other threads:[~2021-01-29  1:47 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-09 13:23 [PATCH v5 0/4] printk: replace ringbuffer John Ogness
2020-07-09 13:23 ` John Ogness
2020-07-09 13:23 ` [PATCH v5 1/4] crash: add VMCOREINFO macro to define offset in a struct declared by typedef John Ogness
2020-07-09 13:23   ` John Ogness
2020-07-09 13:23 ` [PATCH v5 2/4] printk: add lockless ringbuffer John Ogness
2020-07-09 13:23   ` John Ogness
2020-07-10  8:43   ` Sergey Senozhatsky
2020-07-10  8:43     ` Sergey Senozhatsky
2020-07-10  8:47     ` Sergey Senozhatsky
2020-07-10  8:47       ` Sergey Senozhatsky
2020-07-09 13:23 ` [PATCH v5 3/4] Revert "printk: lock/unlock console only for new logbuf entries" John Ogness
2020-07-09 13:23   ` John Ogness
2020-07-09 13:23 ` [PATCH v5 4/4] printk: use the lockless ringbuffer John Ogness
2020-07-09 13:23   ` John Ogness
2020-07-14  5:26   ` [printk] 96d5c61b1f: stress-ng.timerfd.ops_per_sec 8.3% improvement kernel test robot
2020-07-14  5:26     ` kernel test robot
2020-07-18 12:10   ` [PATCH v5 4/4] printk: use the lockless ringbuffer Marco Elver
2020-07-18 12:10     ` Marco Elver
2020-07-19  3:43     ` Sergey Senozhatsky
2020-07-19  3:43       ` Sergey Senozhatsky
2020-07-20  6:43       ` Marco Elver
2020-07-20  6:43         ` Marco Elver
2020-07-20  8:22         ` Andy Shevchenko
2020-07-20  8:22           ` Andy Shevchenko
2020-07-20  8:34         ` Sergey Senozhatsky
2020-07-20  8:34           ` Sergey Senozhatsky
2020-07-20  8:41         ` Sergey Senozhatsky
2020-07-20  8:41           ` Sergey Senozhatsky
2020-07-20  9:40           ` Marco Elver
2020-07-20  9:40             ` Marco Elver
2020-07-20 10:01             ` Dmitry Vyukov
2020-07-20 10:01               ` Dmitry Vyukov
2020-07-20 10:20     ` John Ogness
2020-07-20 10:20       ` John Ogness
2020-07-20 10:32       ` Marco Elver
2020-07-20 10:32         ` Marco Elver
2020-08-11 20:47   ` Nick Desaulniers
2020-08-11 20:47     ` Nick Desaulniers
2020-08-12 16:40     ` John Ogness
2020-08-12 16:40       ` John Ogness
2021-01-22 23:52   ` Issue in dmesg time with lockless ring buffer J. Avila
2021-01-22 23:52     ` J. Avila
2021-01-25 13:32     ` John Ogness
2021-01-25 13:32       ` John Ogness
2021-01-26  0:00       ` J. Avila
2021-01-26  0:00         ` J. Avila
2021-01-29  1:46         ` J. Avila
2021-01-29  1:46           ` J. Avila
2020-07-10  8:28 ` [PATCH v5 0/4] printk: replace ringbuffer Petr Mladek
2020-07-10  8:28   ` Petr Mladek
2020-07-13  2:23   ` Sergey Senozhatsky
2020-07-13  2:23     ` Sergey Senozhatsky

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.