public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] [GIT PULL][for 2.6.32] new event print tag language
@ 2009-06-10 16:53 Steven Rostedt
  2009-06-10 16:53 ` [PATCH 01/11] tracing: add entry size to iterator Steven Rostedt
                   ` (10 more replies)
  0 siblings, 11 replies; 13+ messages in thread
From: Steven Rostedt @ 2009-06-10 16:53 UTC (permalink / raw)
  To: linux-kernel
  Cc: Ingo Molnar, Andrew Morton, Frederic Weisbecker,
	Mathieu Desnoyers, Lai Jiangshan, Arnaldo Carvalho de Melo,
	Theodore Tso, Christoph Hellwig, Peter Zijlstra, Mel Gorman,
	Xiao Guangrong

[
  Note, this work is aimed at 2.6.32 and not this merge window,
    except for maybe the first patch.
]

Ingo,

I rebased against tip/tracing/core and folded a lot of the fix ups into
their corresponding patches. I still kept some of the tags out of
the main patch since they explain those changes nicely and also
demonstrates how to add new tags.

The first patch "tracing: add entry size to iterator" is something that
was lacking in the trace output, and I would recommend for this
merge window. Just because it is low impact and it would be a nice thing
to have for those that are working on enhancing ftrace.

The rest, could you make a separate branch for, so we can experiment
with. I'll keep the event-print-format* branches around too.

Please pull the latest tip/tracing/event-print-format-1 tree, which can be found at:

  git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-trace.git
tip/tracing/event-print-format-1


Steven Rostedt (11):
      tracing: add entry size to iterator
      tracing/events: nicer print format for parsing
      tracing: add nsec2sec print formats
      tracing: add major and minor tags for print format
      tracing: add func and symfunc to tag format
      tracing: update sample code with new tag format
      tracing/events: modify irq print to new format
      tracing/events: modify sched print to new format
      tracing/events: modify kmem print to new format
      tracing/events: modify lockdep print to new format
      tracing: convert the block trace points to use the new tag format

----
 include/linux/ftrace_event.h               |   13 +
 include/trace/events/block.h               |  101 +--
 include/trace/events/irq.h                 |   40 +-
 include/trace/events/kmem.h                |  100 ++--
 include/trace/events/lockdep.h             |   18 +-
 include/trace/events/sched.h               |   49 +-
 include/trace/ftrace.h                     |   22 +-
 kernel/trace/Makefile                      |    1 +
 kernel/trace/trace.c                       |   39 +-
 kernel/trace/trace_events.c                |    1 +
 kernel/trace/trace_output.c                |    2 +-
 kernel/trace/trace_output.h                |    4 +
 kernel/trace/trace_read_binary.c           |  973 ++++++++++++++++++++++++++++
 samples/trace_events/trace-events-sample.c |   21 +-
 samples/trace_events/trace-events-sample.h |   66 ++
 15 files changed, 1247 insertions(+), 203 deletions(-)
-- 

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [PATCH 00/11] [GIT PULL] more updates for the tag format
@ 2009-06-10  5:42 Steven Rostedt
  2009-06-10  5:42 ` [PATCH 04/11] tracing: add major and minor tags for print format Steven Rostedt
  0 siblings, 1 reply; 13+ messages in thread
From: Steven Rostedt @ 2009-06-10  5:42 UTC (permalink / raw)
  To: linux-kernel
  Cc: Ingo Molnar, Andrew Morton, Minchan Kim, Mel Gorman,
	Christoph Hellwig, Rik van Riel, Pekka Enberg, Peter Zijlstra,
	Frederic Weisbecker, Theodore Tso, Mathieu Desnoyers,
	Lai Jiangshan, Zhaolei, KOSAKI Motohiro, Jason Baron,
	Jiaying Zhang, Tom Zanussi, Xiao Guangrong


Ingo,

Please pull the latest tip/tracing/event-print-format tree, which can be found at:

  git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-trace.git
tip/tracing/event-print-format


Li Zefan (1):
      tracing/events: convert block trace points to TRACE_EVENT(), fix

Steven Rostedt (10):
      tracing: add nsec2sec print formats
      tracing: convert lockdep lock_acquired trace point to use nsec2usec tag
      tracing: add major and minor tags for print format
      tracing: use << to print < instead of \<
      tracing: convert the block trace points to use the new tag format
      tracing: add test for strings in event tag format
      tracing: add func and symfunc to tag format
      tracing: check full name for field
      tracing: update sample code with new tag format
      tracing: move '>' to out of macros and into print statement

----
 include/linux/blktrace_api.h               |    4 +-
 include/linux/ftrace_event.h               |    3 +-
 include/trace/events/block.h               |  101 +++------
 include/trace/events/irq.h                 |    8 +-
 include/trace/events/kmem.h                |   12 +-
 include/trace/events/lockdep.h             |    8 +-
 include/trace/ftrace.h                     |    2 +-
 kernel/trace/trace_output.c                |    2 +-
 kernel/trace/trace_output.h                |    4 +
 kernel/trace/trace_read_binary.c           |  304 +++++++++++++++++++++++-----
 samples/trace_events/trace-events-sample.c |   21 ++-
 samples/trace_events/trace-events-sample.h |   66 ++++++
 12 files changed, 399 insertions(+), 136 deletions(-)
-- 

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

end of thread, other threads:[~2009-06-10 17:03 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-10 16:53 [PATCH 00/11] [GIT PULL][for 2.6.32] new event print tag language Steven Rostedt
2009-06-10 16:53 ` [PATCH 01/11] tracing: add entry size to iterator Steven Rostedt
2009-06-10 16:53 ` [PATCH 02/11] tracing/events: nicer print format for parsing Steven Rostedt
2009-06-10 16:53 ` [PATCH 03/11] tracing: add nsec2sec print formats Steven Rostedt
2009-06-10 16:53 ` [PATCH 04/11] tracing: add major and minor tags for print format Steven Rostedt
2009-06-10 16:53 ` [PATCH 05/11] tracing: add func and symfunc to tag format Steven Rostedt
2009-06-10 16:53 ` [PATCH 06/11] tracing: update sample code with new " Steven Rostedt
2009-06-10 16:53 ` [PATCH 07/11] tracing/events: modify irq print to new format Steven Rostedt
2009-06-10 16:53 ` [PATCH 08/11] tracing/events: modify sched " Steven Rostedt
2009-06-10 16:53 ` [PATCH 09/11] tracing/events: modify kmem " Steven Rostedt
2009-06-10 16:53 ` [PATCH 10/11] tracing/events: modify lockdep " Steven Rostedt
2009-06-10 16:53 ` [PATCH 11/11] tracing: convert the block trace points to use the new tag format Steven Rostedt
  -- strict thread matches above, loose matches on Subject: below --
2009-06-10  5:42 [PATCH 00/11] [GIT PULL] more updates for the " Steven Rostedt
2009-06-10  5:42 ` [PATCH 04/11] tracing: add major and minor tags for print format Steven Rostedt

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