From: Steven Rostedt <rostedt@goodmis.org>
To: linux-kernel@vger.kernel.org
Cc: Ingo Molnar <mingo@kernel.org>,
Andrew Morton <akpm@linux-foundation.org>,
Jiri Kosina <jkosina@suse.cz>, Petr Mladek <pmladek@suse.cz>
Subject: [for-next][PATCH 00/15] tracing/seq-buf/printk: New seq-buf utility from trace_seq for printk in NMI
Date: Thu, 20 Nov 2014 10:21:20 -0500 [thread overview]
Message-ID: <20141120152120.168868031@goodmis.org> (raw)
I created a separate branch for this change (although it's still going into
my for-next branch which ends up in linux-next. But that branch is made
up of multiple branches).
I'm hoping that it makes it into 3.19, but I'll give that choice to Linus.
This is based off of a point of my ftrace/core branch which is my normal
branch. But this one is separate because it may not be accepted. I'll just
have to wait and see. New work for tracing will not be based on this branch.
Although Linus may not accept it, I still want it in linux-next for further
testing.
-- Steve
git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
for-next
Head SHA1: a9edc88093287183ac934be44f295f183b2c62dd
Steven Rostedt (Red Hat) (15):
tracing: Create seq_buf layer in trace_seq
tracing: Convert seq_buf_path() to be like seq_path()
tracing: Convert seq_buf fields to be like seq_file fields
tracing: Add a seq_buf_clear() helper and clear len and readpos in init
seq_buf: Create seq_buf_used() to find out how much was written
tracing: Clean up tracing_fill_pipe_page()
tracing: Use trace_seq_used() and seq_buf_used() instead of len
tracing: Add paranoid size check in trace_printk_seq()
seq_buf: Add seq_buf_can_fit() helper function
tracing: Have seq_buf use full buffer
tracing: Add seq_buf_get_buf() and seq_buf_commit() helper functions
seq-buf: Make seq_buf_bprintf() conditional on CONFIG_BINARY_PRINTF
seq_buf: Move the seq_buf code to lib/
printk: Add per_cpu printk func to allow printk to be diverted
x86/nmi: Perform a safe NMI stack trace on all CPUs
----
arch/x86/kernel/apic/hw_nmi.c | 91 ++++++++-
include/linux/percpu.h | 3 +
include/linux/printk.h | 2 +
include/linux/seq_buf.h | 136 +++++++++++++
include/linux/trace_seq.h | 30 ++-
kernel/printk/printk.c | 38 +++-
kernel/trace/trace.c | 65 +++++--
kernel/trace/trace_events.c | 9 +-
kernel/trace/trace_functions_graph.c | 11 +-
kernel/trace/trace_seq.c | 177 ++++++++---------
lib/Makefile | 2 +-
lib/seq_buf.c | 359 +++++++++++++++++++++++++++++++++++
12 files changed, 779 insertions(+), 144 deletions(-)
next reply other threads:[~2014-11-20 15:31 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-20 15:21 Steven Rostedt [this message]
2014-11-20 15:21 ` [for-next][PATCH 01/15] tracing: Create seq_buf layer in trace_seq Steven Rostedt
2014-11-20 15:21 ` [for-next][PATCH 02/15] tracing: Convert seq_buf_path() to be like seq_path() Steven Rostedt
2014-11-20 15:21 ` [for-next][PATCH 03/15] tracing: Convert seq_buf fields to be like seq_file fields Steven Rostedt
2014-11-20 15:21 ` [for-next][PATCH 04/15] tracing: Add a seq_buf_clear() helper and clear len and readpos in init Steven Rostedt
2014-11-20 15:21 ` [for-next][PATCH 05/15] seq_buf: Create seq_buf_used() to find out how much was written Steven Rostedt
2014-11-20 15:21 ` [for-next][PATCH 06/15] tracing: Clean up tracing_fill_pipe_page() Steven Rostedt
2014-11-20 15:21 ` [for-next][PATCH 07/15] tracing: Use trace_seq_used() and seq_buf_used() instead of len Steven Rostedt
2014-11-20 15:21 ` [for-next][PATCH 08/15] tracing: Add paranoid size check in trace_printk_seq() Steven Rostedt
2014-11-20 15:21 ` [for-next][PATCH 09/15] seq_buf: Add seq_buf_can_fit() helper function Steven Rostedt
2014-11-20 15:21 ` [for-next][PATCH 10/15] tracing: Have seq_buf use full buffer Steven Rostedt
2014-11-20 15:21 ` [for-next][PATCH 11/15] tracing: Add seq_buf_get_buf() and seq_buf_commit() helper functions Steven Rostedt
2014-11-20 15:21 ` [for-next][PATCH 12/15] seq-buf: Make seq_buf_bprintf() conditional on CONFIG_BINARY_PRINTF Steven Rostedt
2014-11-20 15:21 ` [for-next][PATCH 13/15] seq_buf: Move the seq_buf code to lib/ Steven Rostedt
2014-11-20 15:21 ` [for-next][PATCH 14/15] printk: Add per_cpu printk func to allow printk to be diverted Steven Rostedt
2014-11-20 15:21 ` [for-next][PATCH 15/15] x86/nmi: Perform a safe NMI stack trace on all CPUs Steven Rostedt
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=20141120152120.168868031@goodmis.org \
--to=rostedt@goodmis.org \
--cc=akpm@linux-foundation.org \
--cc=jkosina@suse.cz \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=pmladek@suse.cz \
/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
all inboxes | Powered by JetHome®