mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 0/7] [GIT PULL] tracing: updates
@ 2010-07-22 20:24 Steven Rostedt
  2010-07-22 20:24 ` [PATCH 1/7] tracing: Allow to disable cmdline recording Steven Rostedt
                   ` (7 more replies)
  0 siblings, 8 replies; 13+ messages in thread
From: Steven Rostedt @ 2010-07-22 20:24 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar, Andrew Morton, Frederic Weisbecker


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


Dan Carpenter (1):
      trace: strlen() return doesn't account for the NULL

David Daney (1):
      tracing: Fix $mcount_regex for MIPS in recordmcount.pl

KOSAKI Motohiro (1):
      tracing: Shrink max latency ringbuffer if unnecessary

Lai Jiangshan (1):
      tracing: Reduce latency and remove percpu trace_seq

Li Zefan (1):
      tracing: Allow to disable cmdline recording

Mike Frysinger (1):
      tracing/documentation: Document dynamic ftracer internals

Richard Kennedy (1):
      trace: Reorder struct ring_buffer_per_cpu to remove padding on 64bit

----
 Documentation/trace/ftrace-design.txt |  153 +++++++++++++++++++++++++++++++-
 include/linux/ftrace.h                |    5 +
 include/linux/ftrace_event.h          |   12 ++-
 include/trace/ftrace.h                |   12 +--
 kernel/trace/ring_buffer.c            |    2 +-
 kernel/trace/trace.c                  |   46 ++++++++--
 kernel/trace/trace.h                  |    4 +
 kernel/trace/trace_events.c           |   30 ++++++-
 kernel/trace/trace_irqsoff.c          |    3 +
 kernel/trace/trace_output.c           |    3 -
 kernel/trace/trace_sched_wakeup.c     |    2 +
 scripts/recordmcount.pl               |    2 +-
 12 files changed, 241 insertions(+), 33 deletions(-)

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [PATCH 0/7] [GIT PULL] tracing: updates
@ 2010-04-01  3:17 Steven Rostedt
  2010-04-02 16:39 ` Ingo Molnar
  0 siblings, 1 reply; 13+ messages in thread
From: Steven Rostedt @ 2010-04-01  3:17 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar, Andrew Morton, Frederic Weisbecker


Ingo,

Please pull the latest tip/tracing/core tree, which can be found at:

  git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-trace.git
tip/tracing/core


Li Zefan (3):
      tracing: Convert some signal events to DEFINE_TRACE
      tracing: Update comments
      tracing: Remove side effect from module tracepoints that caused a GPF

Steven Rostedt (4):
      tracing: Fix compile error in module tracepoints when MODULE_UNLOAD not set
      ring-buffer: Add place holder recording of dropped events
      tracing: Show the lost events in the trace_pipe output
      ring-buffer: Add lost event count to end of sub buffer

----
 drivers/oprofile/cpu_buffer.c        |    4 +-
 include/linux/ftrace_event.h         |    1 +
 include/linux/module.h               |    6 +-
 include/linux/ring_buffer.h          |    6 +-
 include/trace/events/module.h        |   18 ++++--
 include/trace/events/signal.h        |   52 +++++++----------
 include/trace/ftrace.h               |   33 ++++++-----
 kernel/module.c                      |    8 +-
 kernel/trace/ring_buffer.c           |  101 ++++++++++++++++++++++++++++++++--
 kernel/trace/ring_buffer_benchmark.c |    2 +-
 kernel/trace/trace.c                 |   30 +++++++---
 kernel/trace/trace_functions_graph.c |    5 +-
 kernel/trace/trace_selftest.c        |    2 +-
 13 files changed, 187 insertions(+), 81 deletions(-)

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [PATCH 0/7][GIT PULL] tracing: updates
@ 2010-02-25 19:43 Steven Rostedt
  2010-02-26  8:21 ` Ingo Molnar
  0 siblings, 1 reply; 13+ messages in thread
From: Steven Rostedt @ 2010-02-25 19:43 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar, Andrew Morton, Frederic Weisbecker


Ingo,

Please pull the latest tip/tracing/core tree, which can be found at:

  git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-trace.git
tip/tracing/core


Jeff Mahoney (1):
      tracing: Fix ftrace_event_call alignment for use with gcc 4.5

Li Zefan (1):
      tracing: Remove CONFIG_TRACE_POWER from kernel config

Steven Rostedt (1):
      ftrace: Remove memory barriers from NMI code when not needed

Wenji Huang (4):
      tracing: Fix typo in prof_sysexit_enable()
      tracing: Fix typo of info text in trace_kprobe.c
      tracing: Remove unnecessary variable in print_graph_return
      tracing: Simplify memory recycle of trace_define_field

----
 arch/x86/kernel/ftrace.c             |   26 ++++++++++++++++++++++++++
 include/linux/syscalls.h             |    6 ++++--
 include/trace/ftrace.h               |    3 ++-
 kernel/trace/Kconfig                 |    9 ---------
 kernel/trace/trace.h                 |    3 ++-
 kernel/trace/trace_events.c          |    4 +---
 kernel/trace/trace_functions_graph.c |    1 -
 kernel/trace/trace_kprobe.c          |    4 ++--
 kernel/trace/trace_syscalls.c        |    2 +-
 9 files changed, 38 insertions(+), 20 deletions(-)


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

end of thread, other threads:[~2010-07-23  7:12 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-07-22 20:24 [PATCH 0/7] [GIT PULL] tracing: updates Steven Rostedt
2010-07-22 20:24 ` [PATCH 1/7] tracing: Allow to disable cmdline recording Steven Rostedt
2010-07-22 20:24 ` [PATCH 2/7] trace: Reorder struct ring_buffer_per_cpu to remove padding on 64bit Steven Rostedt
2010-07-22 20:24 ` [PATCH 3/7] tracing: Reduce latency and remove percpu trace_seq Steven Rostedt
2010-07-22 20:24 ` [PATCH 4/7] tracing: Shrink max latency ringbuffer if unnecessary Steven Rostedt
2010-07-22 20:24 ` [PATCH 5/7] tracing/documentation: Document dynamic ftracer internals Steven Rostedt
2010-07-22 20:24 ` [PATCH 6/7] tracing: Fix $mcount_regex for MIPS in recordmcount.pl Steven Rostedt
2010-07-22 20:24 ` [PATCH 7/7] trace: strlen() return doesnt account for the NULL Steven Rostedt
2010-07-23  7:12 ` [PATCH 0/7] [GIT PULL] tracing: updates Ingo Molnar
  -- strict thread matches above, loose matches on Subject: below --
2010-04-01  3:17 Steven Rostedt
2010-04-02 16:39 ` Ingo Molnar
2010-02-25 19:43 [PATCH 0/7][GIT " Steven Rostedt
2010-02-26  8:21 ` Ingo Molnar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome