linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Steven Rostedt <rostedt@goodmis.org>
To: linux-kernel@vger.kernel.org
Cc: Arnaldo Carvalho de Melo <acme@kernel.org>,
	Ingo Molnar <mingo@kernel.org>, Jiri Olsa <jolsa@redhat.com>,
	Namhyung Kim <namhyung@kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	linux-trace-devel@vger.kernel.org,
	Tzvetomir Stoyanov <tz.stoyanov@gmail.com>
Subject: [PATCH 00/15] tools/lib/traceevent: Namespace updates to make traceevent into a library
Date: Wed, 19 Sep 2018 14:56:43 -0400	[thread overview]
Message-ID: <20180919185643.358126338@goodmis.org> (raw)


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(-)

             reply	other threads:[~2018-09-19 18:57 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-19 18:56 Steven Rostedt [this message]
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

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=20180919185643.358126338@goodmis.org \
    --to=rostedt@goodmis.org \
    --cc=acme@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-trace-devel@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=namhyung@kernel.org \
    --cc=tz.stoyanov@gmail.com \
    /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;
as well as URLs for NNTP newsgroup(s).