linux-trace-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/14] Rename variables, data structures and functions in libtraceevent
@ 2018-08-10 13:17 Tzvetomir Stoyanov (VMware)
  2018-08-10 13:17 ` [PATCH 01/14] tools/lib/traceevent, tools/perf: Rename struct event_format to struct tep_event_format Tzvetomir Stoyanov (VMware)
                   ` (13 more replies)
  0 siblings, 14 replies; 22+ messages in thread
From: Tzvetomir Stoyanov (VMware) @ 2018-08-10 13:17 UTC (permalink / raw)
  To: rostedt; +Cc: linux-trace-devel, Tzvetomir Stoyanov (VMware)

In order to make libtraceevent into a proper library, variables, data
structures and functions require a unique prefix to prevent name space
conflicts. That prefix will be "tep_" and not "pevent_". 
This series of patches continue the renaming. 

Tzvetomir Stoyanov (VMware) (14):
  tools/lib/traceevent, tools/perf: Rename struct event_format to struct
    tep_event_format
  tools/lib/traceevent, tools/perf: Rename struct format to struct
    tep_format and struct format_field to struct tep_format_field
  tools/lib/traceevent, tools/perf: Rename enum format_flags to enum
    tep_format_flags, add prefix TEP_ to all of its members
  tools/lib/traceevent: Rename enum event_type to enum tep_event_type,
    enum event_sort_type to enum tep_event_sort_type and add prefix TEP_
    to all enum's members
  tools/lib/traceevent: Add prefix TEP_ to all members of nameless enum
    EVENT_FL_*
  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 and add prefix TEP_ to all its members.
  tools/lib/traceevent: Add prefix tep_ to enums filter_boolean_type,
    filter_op_type, filter_cmp_type and all enum's members
  tools/lib/traceevent: Add prefix tep_ to enums filter_exp_type,
    filter_arg_type and all enum's members
  tools/lib/traceevent: Add prefix tep_ to struct filter_arg, enum
    filter_value_type and all enum's members.
  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: Add prefix tep_ to enum filter_trivial_type and
    all its members. Rename data2host*() APIs
  tools/lib/traceevent: Rename struct plugin_list to struct
    tep_plugin_list

 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                    |   26 +-
 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 +-
 .../util/scripting-engines/trace-event-perl.c |   66 +-
 .../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, 1394 insertions(+), 1394 deletions(-)

-- 
2.17.1

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

end of thread, other threads:[~2018-09-19 16:50 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-10 13:17 [PATCH 00/14] Rename variables, data structures and functions in libtraceevent Tzvetomir Stoyanov (VMware)
2018-08-10 13:17 ` [PATCH 01/14] tools/lib/traceevent, tools/perf: Rename struct event_format to struct tep_event_format Tzvetomir Stoyanov (VMware)
2018-08-10 13:17 ` [PATCH 02/14] tools/lib/traceevent, tools/perf: Rename struct format to struct tep_format and struct format_field to struct tep_format_field Tzvetomir Stoyanov (VMware)
2018-08-14 21:20   ` Steven Rostedt
2018-08-10 13:17 ` [PATCH 03/14] tools/lib/traceevent, tools/perf: Rename enum format_flags to enum tep_format_flags, add prefix TEP_ to all of its members Tzvetomir Stoyanov (VMware)
2018-08-14 21:22   ` Steven Rostedt
2018-08-10 13:17 ` [PATCH 04/14] tools/lib/traceevent: Rename enum event_type to enum tep_event_type, enum event_sort_type to enum tep_event_sort_type and add prefix TEP_ to all enum's members Tzvetomir Stoyanov (VMware)
2018-08-10 13:17 ` [PATCH 05/14] tools/lib/traceevent: Add prefix TEP_ to all members of nameless enum EVENT_FL_* Tzvetomir Stoyanov (VMware)
2018-08-14 22:05   ` Steven Rostedt
2018-08-10 13:17 ` [PATCH 06/14] tools/lib/traceevent, tools/perf: Add prefix tep_ to all print_* structures Tzvetomir Stoyanov (VMware)
2018-08-10 13:17 ` [PATCH 07/14] tools/lib/traceevent, tools/perf: Rename enum print_arg_type to enum tep_print_arg_type and add prefix TEP_ to all its members Tzvetomir Stoyanov (VMware)
2018-08-10 13:17 ` [PATCH 08/14] tools/lib/traceevent: Add prefix tep_ to enums filter_boolean_type, filter_op_type, filter_cmp_type and all enum's members Tzvetomir Stoyanov (VMware)
2018-08-10 13:17 ` [PATCH 09/14] tools/lib/traceevent: Add prefix tep_ to enums filter_exp_type, filter_arg_type " Tzvetomir Stoyanov (VMware)
2018-08-10 13:17 ` [PATCH 10/14] tools/lib/traceevent: Add prefix tep_ to struct filter_arg, enum filter_value_type " Tzvetomir Stoyanov (VMware)
2018-08-10 13:17 ` [PATCH 11/14] tools/lib/traceevent: Add prefix tep_ to various structs filter_arg_* Tzvetomir Stoyanov (VMware)
2018-08-10 13:17 ` [PATCH 12/14] tools/lib/traceevent: Add prefix tep_ to structs filter_type and event_filter Tzvetomir Stoyanov (VMware)
2018-08-10 13:17 ` [PATCH 13/14] tools/lib/traceevent: Add prefix tep_ to enum filter_trivial_type and all its members. Rename data2host*() APIs Tzvetomir Stoyanov (VMware)
2018-09-19  2:35   ` Steven Rostedt
2018-09-19  2:37     ` Steven Rostedt
2018-09-19 11:12       ` [PATCH 1/2] tools/lib/traceevent: " Tzvetomir Stoyanov (VMware)
2018-09-19 11:12         ` [PATCH 2/2] tools/lib/traceevent: Add prefix tep_ to enum filter_trivial_type and all its members Tzvetomir Stoyanov (VMware)
2018-08-10 13:17 ` [PATCH 14/14] tools/lib/traceevent: Rename struct plugin_list to struct tep_plugin_list Tzvetomir Stoyanov (VMware)

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