Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1176482
| From | Marcin Niesluchowski <m.niesluchow@samsung.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [RFC 0/8] Additional kmsg devices |
| Date | 2015-07-03 13:00 +0200 |
| Message-ID | <pI6Rj-7tK-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Dear All, This series of patches extends kmsg interface with ability to dynamicaly create (and destroy) kmsg-like devices which can be used by user space for logging. Logging to kernel has number of benefits, including but not limited to - always available, requiring no userspace, automatically rotating and low overhead. User-space logging to kernel cyclic buffers was already successfully used in android logger concept but it had certain flaws that this commits try to address: * drops hardcoded number of devices and static paths in favor for dynamic configuration by ioctl interface in userspace * extends existing driver instead of creating completely new one Those patches apply on branch 'master', (commit 9bdc771f2c29a11920f477fba05a58e23ee42554): git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git Marcin Niesluchowski (8): printk: move code regarding log message storing format printk: add one function for storing log in proper format kmsg: introduce additional kmsg devices support kmsg: add function for adding and deleting additional buffers kmsg: device support in mem class kmsg: add predefined _PID, _TID, _COMM keywords to kmsg* log dict kmsg: add ioctl for adding and deleting kmsg* devices kmsg: add ioctl for kmsg* devices operating on buffers Documentation/ioctl/ioctl-number.txt | 1 + drivers/char/mem.c | 154 +++- fs/proc/kmsg.c | 4 +- include/linux/printk.h | 6 + include/uapi/linux/Kbuild | 1 + include/uapi/linux/kmsg_ioctl.h | 45 ++ kernel/printk/printk.c | 1361 ++++++++++++++++++++++------------ 7 files changed, 1087 insertions(+), 485 deletions(-) create mode 100644 include/uapi/linux/kmsg_ioctl.h -- Best Regards, Marcin Niesluchowski -- 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/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[RFC 0/8] Additional kmsg devices Marcin Niesluchowski <m.niesluchow@samsung.com> - 2015-07-03 13:00 +0200
[RFC 4/8] kmsg: add function for adding and deleting additional buffers Marcin Niesluchowski <m.niesluchow@samsung.com> - 2015-07-03 13:00 +0200
[RFC 8/8] kmsg: add ioctl for kmsg* devices operating on buffers Marcin Niesluchowski <m.niesluchow@samsung.com> - 2015-07-03 13:00 +0200
Re: [RFC 0/8] Additional kmsg devices Marcin Niesluchowski <m.niesluchow@samsung.com> - 2015-07-03 17:10 +0200
Re: [RFC 0/8] Additional kmsg devices Andy Lutomirski <luto@amacapital.net> - 2015-07-03 19:00 +0200
Re: [RFC 0/8] Additional kmsg devices Karol Lewandowski <k.lewandowsk@samsung.com> - 2015-07-07 19:20 +0200
csiph-web