linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/15] tools/lib/traceevent: Namespace updates to make traceevent into a library
@ 2018-09-19 18:56 Steven Rostedt
  2018-09-19 18:56 ` [PATCH 01/15] tools/lib/traceevent, tools/perf: Rename struct event_format to struct tep_event_format Steven Rostedt
                   ` (15 more replies)
  0 siblings, 16 replies; 37+ messages in thread
From: Steven Rostedt @ 2018-09-19 18:56 UTC (permalink / raw)
  To: linux-kernel
  Cc: Arnaldo Carvalho de Melo, Ingo Molnar, Jiri Olsa, Namhyung Kim,
	Andrew Morton, linux-trace-devel, Tzvetomir Stoyanov


Jiri,

This is another series to fix the namespace of libtraceevent.

Please pull in these patches or if you choose, pull in the branch.
The code is based off of the latest tip/perf/core.

These changes can be found at:

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

Head SHA1: bb730b5833b5bddf5cb226865e5f4496770d00b0
9bc7aeba01678955c3724052966ab8ad61053c89


Tzvetomir Stoyanov (VMware) (15):
      tools/lib/traceevent, tools/perf: Rename struct event_format to struct tep_event_format
      tools/lib/traceevent, tools/perf: Rename struct format{_field} to struct tep_format{_field}
      tools/lib/traceevent, tools/perf: Rename enum format_flags to enum tep_format_flags
      tools/lib/traceevent: Rename enum event_{sort_}type to enum tep_event_{sort_}type
      tools/lib/traceevent: Add prefix TEP_ to all EVENT_FL_* flags
      tools/lib/traceevent, tools/perf: Add prefix tep_ to all print_* structures
      tools/lib/traceevent, tools/perf: Rename enum print_arg_type to enum tep_print_arg_type
      tools/lib/traceevent: Add prefix tep_ to enums filter_{boolean,op,cmp}_type
      tools/lib/traceevent: Add prefix tep_ to enums filter_{exp,arg}_type
      tools/lib/traceevent: Add prefix tep_ to struct filter_{arg,value_type}
      tools/lib/traceevent: Add prefix tep_ to various structs filter_arg_*.
      tools/lib/traceevent: Add prefix tep_ to structs filter_type and event_filter
      tools/lib/traceevent: Rename struct plugin_list to struct tep_plugin_list
      tools/lib/traceevent: Rename data2host*() APIs
      tools/lib/traceevent: Add prefix tep_ to enum filter_trivial_type

----
 tools/lib/traceevent/event-parse.c                 | 1184 ++++++++++----------
 tools/lib/traceevent/event-parse.h                 |  532 ++++-----
 tools/lib/traceevent/event-plugin.c                |   18 +-
 tools/lib/traceevent/parse-filter.c                |  646 +++++------
 tools/lib/traceevent/plugin_function.c             |    2 +-
 tools/lib/traceevent/plugin_hrtimer.c              |    4 +-
 tools/lib/traceevent/plugin_kmem.c                 |    4 +-
 tools/lib/traceevent/plugin_kvm.c                  |   14 +-
 tools/lib/traceevent/plugin_mac80211.c             |    6 +-
 tools/lib/traceevent/plugin_sched_switch.c         |   10 +-
 tools/perf/builtin-trace.c                         |   18 +-
 tools/perf/tests/evsel-tp-sched.c                  |    4 +-
 tools/perf/util/data-convert-bt.c                  |   56 +-
 tools/perf/util/evsel.c                            |   10 +-
 tools/perf/util/evsel.h                            |   10 +-
 tools/perf/util/evsel_fprintf.c                    |    2 +-
 tools/perf/util/header.c                           |    2 +-
 tools/perf/util/python.c                           |   20 +-
 .../perf/util/scripting-engines/trace-event-perl.c |   66 +-
 .../util/scripting-engines/trace-event-python.c    |  100 +-
 tools/perf/util/sort.c                             |   22 +-
 tools/perf/util/trace-event-parse.c                |   18 +-
 tools/perf/util/trace-event-read.c                 |    4 +-
 tools/perf/util/trace-event.c                      |    8 +-
 tools/perf/util/trace-event.h                      |   20 +-
 25 files changed, 1390 insertions(+), 1390 deletions(-)

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

end of thread, other threads:[~2018-09-26  8:53 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-19 18:56 [PATCH 00/15] tools/lib/traceevent: Namespace updates to make traceevent into a library Steven Rostedt
2018-09-19 18:56 ` [PATCH 01/15] tools/lib/traceevent, tools/perf: Rename struct event_format to struct tep_event_format Steven Rostedt
2018-09-26  8:45   ` [tip:perf/core] tools lib traceevent, perf tools: " tip-bot for Tzvetomir Stoyanov (VMware)
2018-09-19 18:56 ` [PATCH 02/15] tools/lib/traceevent, tools/perf: Rename struct format{_field} to struct tep_format{_field} Steven Rostedt
2018-09-26  8:46   ` [tip:perf/core] tools lib traceevent, perf tools: " tip-bot for Tzvetomir Stoyanov (VMware)
2018-09-19 18:56 ` [PATCH 03/15] tools/lib/traceevent, tools/perf: Rename enum format_flags to enum tep_format_flags Steven Rostedt
2018-09-26  8:46   ` [tip:perf/core] tools lib traceevent, perf tools: " tip-bot for Tzvetomir Stoyanov (VMware)
2018-09-19 18:56 ` [PATCH 04/15] tools/lib/traceevent: Rename enum event_{sort_}type to enum tep_event_{sort_}type Steven Rostedt
2018-09-26  8:47   ` [tip:perf/core] tools lib traceevent: " tip-bot for Tzvetomir Stoyanov (VMware)
2018-09-19 18:56 ` [PATCH 05/15] tools/lib/traceevent: Add prefix TEP_ to all EVENT_FL_* flags Steven Rostedt
2018-09-26  8:47   ` [tip:perf/core] tools lib traceevent: " tip-bot for Tzvetomir Stoyanov (VMware)
2018-09-19 18:56 ` [PATCH 06/15] tools/lib/traceevent, tools/perf: Add prefix tep_ to all print_* structures Steven Rostedt
2018-09-26  8:48   ` [tip:perf/core] tools lib traceevent, perf tools: " tip-bot for Tzvetomir Stoyanov (VMware)
2018-09-19 18:56 ` [PATCH 07/15] tools/lib/traceevent, tools/perf: Rename enum print_arg_type to enum tep_print_arg_type Steven Rostedt
2018-09-26  8:49   ` [tip:perf/core] tools lib traceevent, perf tools: " tip-bot for Tzvetomir Stoyanov (VMware)
2018-09-19 18:56 ` [PATCH 08/15] tools/lib/traceevent: Add prefix tep_ to enums filter_{boolean,op,cmp}_type Steven Rostedt
2018-09-26  8:49   ` [tip:perf/core] tools lib traceevent: " tip-bot for Tzvetomir Stoyanov (VMware)
2018-09-19 18:56 ` [PATCH 09/15] tools/lib/traceevent: Add prefix tep_ to enums filter_{exp,arg}_type Steven Rostedt
2018-09-26  8:50   ` [tip:perf/core] tools lib traceevent: " tip-bot for Tzvetomir Stoyanov (VMware)
2018-09-19 18:56 ` [PATCH 10/15] tools/lib/traceevent: Add prefix tep_ to struct filter_{arg,value_type} Steven Rostedt
2018-09-26  8:50   ` [tip:perf/core] tools lib traceevent: " tip-bot for Tzvetomir Stoyanov (VMware)
2018-09-19 18:56 ` [PATCH 11/15] tools/lib/traceevent: Add prefix tep_ to various structs filter_arg_* Steven Rostedt
2018-09-26  8:51   ` [tip:perf/core] tools lib traceevent: " tip-bot for Tzvetomir Stoyanov (VMware)
2018-09-19 18:56 ` [PATCH 12/15] tools/lib/traceevent: Add prefix tep_ to structs filter_type and event_filter Steven Rostedt
2018-09-26  8:51   ` [tip:perf/core] tools lib traceevent: " tip-bot for Tzvetomir Stoyanov (VMware)
2018-09-19 18:56 ` [PATCH 13/15] tools/lib/traceevent: Rename struct plugin_list to struct tep_plugin_list Steven Rostedt
2018-09-26  8:52   ` [tip:perf/core] tools lib traceevent: " tip-bot for Tzvetomir Stoyanov (VMware)
2018-09-19 18:56 ` [PATCH 14/15] tools/lib/traceevent: Rename data2host*() APIs Steven Rostedt
2018-09-26  8:52   ` [tip:perf/core] tools lib traceevent: " tip-bot for Tzvetomir Stoyanov (VMware)
2018-09-19 18:56 ` [PATCH 15/15] tools/lib/traceevent: Add prefix tep_ to enum filter_trivial_type Steven Rostedt
2018-09-26  8:53   ` [tip:perf/core] tools lib traceevent: " tip-bot for Tzvetomir Stoyanov (VMware)
2018-09-23 18:56 ` [PATCH 00/15] tools/lib/traceevent: Namespace updates to make traceevent into a library Jiri Olsa
2018-09-24  8:55   ` Steven Rostedt
2018-09-24 14:16     ` Arnaldo Carvalho de Melo
2018-09-24 15:19       ` Steven Rostedt
2018-09-24 15:21       ` Arnaldo Carvalho de Melo
2018-09-24 17:48     ` Jiri Olsa

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).