From: Steven Rostedt <rostedt@goodmis.org>
To: linux-kernel@vger.kernel.org
Cc: Ingo Molnar <mingo@elte.hu>,
Andrew Morton <akpm@linux-foundation.org>,
Frederic Weisbecker <fweisbec@gmail.com>
Subject: [PATCH 00/20] [GIT PULL] perf/tracing: various updates
Date: Sat, 16 Jul 2011 07:22:00 -0400 [thread overview]
Message-ID: <20110716112200.096203519@goodmis.org> (raw)
Ingo,
Please pull the latest tip/perf/core tree, which can be found at:
git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-trace.git
tip/perf/core
Head SHA1: 14a8fd7ceea6915c613746203d6e9a2bf273f16c
Cyrill Gorcunov (1):
perf, x86: P4 PMU - Introduce event alias feature
Masami Hiramatsu (12):
tracing/kprobes: Rename probe_* to trace_probe_*
tracing/kprobes: Merge trace probe enable/disable functions
kprobes: Return -ENOENT if probe point doesn't exist
tracing/kprobes: Support module init function probing
tracing/kprobe: Update symbol reference when loading module
perf probe: Rename DIE_FIND_CB_FOUND to DIE_FIND_CB_END
perf probe: Move strtailcmp to string.c
perf probe: Remove redundant dwarf functions
perf-probe: Move dwarf library routines to dwarf-aux.{c, h}
perf probe: Introduce debuginfo to encapsulate dwarf information
perf probe: Add probed module in front of function
perf probe: Support adding probes on offline kernel modules
Sonny Rao (1):
perf: Robustify proc and debugfs file recording
Steven Rostedt (6):
tracing: Still trace filtered irq functions when irq trace is disabled
ftrace: Do not disable interrupts for modules in mcount update
ftrace: Balance records when updating the hash
ftrace: Update filter when tracing enabled in set_ftrace_filter()
ftrace: Fix dynamic selftest failure on some archs
tracing: Have dynamic size event stack traces
----
Documentation/trace/kprobetrace.txt | 9 +-
arch/x86/include/asm/perf_event_p4.h | 33 ++
arch/x86/kernel/cpu/perf_event.c | 7 -
arch/x86/kernel/cpu/perf_event_p4.c | 135 +++++--
include/linux/ftrace_event.h | 1 +
kernel/kprobes.c | 33 +-
kernel/trace/ftrace.c | 95 +++-
kernel/trace/trace.c | 92 ++++-
kernel/trace/trace.h | 50 ++-
kernel/trace/trace_entries.h | 3 +-
kernel/trace/trace_functions_graph.c | 2 +-
kernel/trace/trace_kprobe.c | 318 +++++++++----
kernel/trace/trace_output.c | 11 +-
kernel/watchdog.c | 2 -
tools/perf/Documentation/perf-probe.txt | 6 +-
tools/perf/Makefile | 2 +
tools/perf/builtin-probe.c | 3 +-
tools/perf/util/dwarf-aux.c | 663 +++++++++++++++++++++++++++
tools/perf/util/dwarf-aux.h | 100 ++++
tools/perf/util/probe-event.c | 165 +++++--
tools/perf/util/probe-event.h | 1 +
tools/perf/util/probe-finder.c | 752 +++++--------------------------
tools/perf/util/probe-finder.h | 43 ++-
tools/perf/util/string.c | 19 +
tools/perf/util/trace-event-info.c | 120 ++----
tools/perf/util/util.h | 1 +
26 files changed, 1663 insertions(+), 1003 deletions(-)
next reply other threads:[~2011-07-16 11:26 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-16 11:22 Steven Rostedt [this message]
2011-07-16 11:22 ` [PATCH 01/20] tracing: Still trace filtered irq functions when irq trace is Steven Rostedt
2011-07-16 11:22 ` [PATCH 02/20] ftrace: Do not disable interrupts for modules in mcount update Steven Rostedt
2011-07-16 11:22 ` [PATCH 03/20] ftrace: Balance records when updating the hash Steven Rostedt
2011-07-16 11:22 ` [PATCH 04/20] ftrace: Update filter when tracing enabled in set_ftrace_filter() Steven Rostedt
2011-07-16 11:22 ` [PATCH 05/20] ftrace: Fix dynamic selftest failure on some archs Steven Rostedt
2011-07-16 11:22 ` [PATCH 06/20] perf: Robustify proc and debugfs file recording Steven Rostedt
2011-07-16 11:22 ` [PATCH 07/20] tracing: Have dynamic size event stack traces Steven Rostedt
2011-07-16 11:22 ` [PATCH 08/20] perf, x86: P4 PMU - Introduce event alias feature Steven Rostedt
2011-07-16 11:22 ` [PATCH 09/20] tracing/kprobes: Rename probe_* to trace_probe_* Steven Rostedt
2011-07-16 11:22 ` [PATCH 10/20] tracing/kprobes: Merge trace probe enable/disable functions Steven Rostedt
2011-07-16 11:22 ` [PATCH 11/20] kprobes: Return -ENOENT if probe point doesnt exist Steven Rostedt
2011-07-16 11:22 ` [PATCH 12/20] tracing/kprobes: Support module init function probing Steven Rostedt
2011-07-16 11:22 ` [PATCH 13/20] tracing/kprobe: Update symbol reference when loading module Steven Rostedt
2011-07-16 11:22 ` [PATCH 14/20] perf probe: Rename DIE_FIND_CB_FOUND to DIE_FIND_CB_END Steven Rostedt
2011-07-16 11:22 ` [PATCH 15/20] perf probe: Move strtailcmp to string.c Steven Rostedt
2011-07-16 11:22 ` [PATCH 16/20] perf probe: Remove redundant dwarf functions Steven Rostedt
2011-07-16 11:22 ` [PATCH 17/20] perf-probe: Move dwarf library routines to dwarf-aux.{c, h} Steven Rostedt
2011-07-16 11:22 ` [PATCH 18/20] perf probe: Introduce debuginfo to encapsulate dwarf information Steven Rostedt
2011-07-16 11:22 ` [PATCH 19/20] perf probe: Add probed module in front of function Steven Rostedt
2011-07-16 11:22 ` [PATCH 20/20] perf probe: Support adding probes on offline kernel modules Steven Rostedt
2011-07-21 9:10 ` [PATCH 00/20] [GIT PULL] perf/tracing: various updates Ingo Molnar
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=20110716112200.096203519@goodmis.org \
--to=rostedt@goodmis.org \
--cc=akpm@linux-foundation.org \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
/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®