linux-trace-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 00/24] trace-cmd: rename variables, data structures and functions in lib/traceevent
@ 2018-08-27  8:17 Tzvetomir Stoyanov (VMware)
  2018-08-27  8:17 ` [PATCH v3 02/24] tools lib traceevent, perf tools: Rename 'struct pevent_record' to 'struct tep_record' Tzvetomir Stoyanov (VMware)
                   ` (22 more replies)
  0 siblings, 23 replies; 30+ messages in thread
From: Tzvetomir Stoyanov (VMware) @ 2018-08-27  8:17 UTC (permalink / raw)
  To: rostedt; +Cc: linux-trace-devel

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 perform the renaming in the trace-cmd code.
This is v3 of the patches, fixed few kernel-shark-qt files. 

Tzvetomir Stoyanov (VMware) (24):
  tools lib traceevent, perf tools: Rename struct pevent to struct
    tep_handle
  tools lib traceevent, perf tools: Rename 'struct pevent_record' to
    'struct tep_record'
  tools lib traceevent, perf tools: Rename pevent plugin related APIs
  tools lib traceevent, perf tools: Rename pevent alloc / free APIs
  tools lib traceevent, perf tools: Rename pevent find APIs
  tools lib traceevent, perf tools: Rename pevent parse APIs
  tools lib traceevent, perf tools: Rename pevent print APIs
  tools lib traceevent, perf tools: Rename pevent_read_number_* APIs
  tools lib traceevent, perf tools: Rename pevent_register_* APIs
  tools lib traceevent, perf tools: Rename pevent_set_* APIs
  tools lib traceevent, perf tools: Rename traceevent_* APIs
  tools lib traceevent, perf tools: Rename 'enum pevent_flag' to 'enum
    tep_flag'
  tools lib traceevent, tools lib lockdep: Rename 'enum pevent_errno' to
    'enum tep_errno'
  tools lib traceevent: Rename pevent_function* APIs
  tools lib traceevent, perf tools: Rename traceevent_plugin_* APIs
  tools lib traceevent: Rename pevent_filter* APIs
  tools lib traceevent: Rename pevent_register / unregister APIs
  tools lib traceevent: Rename pevent_data_ APIs
  tools lib traceevent: Rename pevent field APIs
  tools lib traceevent: Rename pevent_find_* APIs
  tools lib traceevent: Rename various pevent get/set/is APIs
  tools lib traceevent: Rename internal parser related APIs
  tools lib traceevent: Rename various pevent APIs
  tools lib traceevent: Rename static variables and functions in
    event-parse.c

 include/trace-cmd/trace-cmd.h            |  82 +--
 include/traceevent/event-parse.h         | 458 +++++++--------
 kernel-shark-qt/examples/datafilter.c    |   8 +-
 kernel-shark-qt/examples/dataload.c      |   4 +-
 kernel-shark-qt/src/libkshark-configio.c |  18 +-
 kernel-shark-qt/src/libkshark.c          |  56 +-
 kernel-shark-qt/src/libkshark.h          |  10 +-
 kernel-shark/include/trace-filter.h      |   6 +-
 kernel-shark/include/trace-graph.h       |  20 +-
 kernel-shark/include/trace-gui.h         |   8 +-
 kernel-shark/kernel-shark.c              |  14 +-
 kernel-shark/trace-capture.c             |  16 +-
 kernel-shark/trace-dialog.c              |  16 +-
 kernel-shark/trace-filter.c              | 104 ++--
 kernel-shark/trace-graph.c               | 126 ++--
 kernel-shark/trace-plot-cpu.c            |  56 +-
 kernel-shark/trace-plot-task.c           |  92 +--
 kernel-shark/trace-plot.c                |   4 +-
 kernel-shark/trace-view-main.c           |   8 +-
 kernel-shark/trace-view-store.c          |  66 +--
 kernel-shark/trace-view.c                |  10 +-
 lib/trace-cmd/trace-blk-hack.c           |  20 +-
 lib/trace-cmd/trace-ftrace.c             |  98 ++--
 lib/trace-cmd/trace-input.c              | 132 ++---
 lib/trace-cmd/trace-util.c               | 116 ++--
 lib/traceevent/event-parse.c             | 696 +++++++++++------------
 lib/traceevent/event-plugin.c            |  70 +--
 lib/traceevent/parse-filter.c            | 288 +++++-----
 plugins/plugin_blk.c                     |  46 +-
 plugins/plugin_cfg80211.c                |  20 +-
 plugins/plugin_function.c                |  36 +-
 plugins/plugin_futex.c                   |  26 +-
 plugins/plugin_hrtimer.c                 |  44 +-
 plugins/plugin_jbd2.c                    |  38 +-
 plugins/plugin_kmem.c                    |  64 +--
 plugins/plugin_kvm.c                     | 152 ++---
 plugins/plugin_mac80211.c                |  34 +-
 plugins/plugin_python.c                  |   8 +-
 plugins/plugin_sched_switch.c            |  60 +-
 plugins/plugin_scsi.c                    |  24 +-
 plugins/plugin_tlb.c                     |  20 +-
 plugins/plugin_xen.c                     |  20 +-
 python/ctracecmd.i                       |  34 +-
 python/tracecmd.py                       |  34 +-
 tracecmd/include/trace-local.h           |   4 +-
 tracecmd/trace-check-events.c            |   6 +-
 tracecmd/trace-hist.c                    | 148 ++---
 tracecmd/trace-list.c                    |  12 +-
 tracecmd/trace-mem.c                     |  82 +--
 tracecmd/trace-output.c                  |  26 +-
 tracecmd/trace-profile.c                 | 144 ++---
 tracecmd/trace-read.c                    | 156 ++---
 tracecmd/trace-record.c                  |  24 +-
 tracecmd/trace-split.c                   |  20 +-
 tracecmd/trace-stream.c                  |   2 +-
 55 files changed, 1943 insertions(+), 1943 deletions(-)

-- 
2.17.1

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

end of thread, other threads:[~2018-08-29  2:12 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-27  8:17 [PATCH v3 00/24] trace-cmd: rename variables, data structures and functions in lib/traceevent Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 02/24] tools lib traceevent, perf tools: Rename 'struct pevent_record' to 'struct tep_record' Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 03/24] tools lib traceevent, perf tools: Rename pevent plugin related APIs Tzvetomir Stoyanov (VMware)
2018-08-28  9:10   ` [PATCH v3.5 " Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 04/24] tools lib traceevent, perf tools: Rename pevent alloc / free APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 05/24] tools lib traceevent, perf tools: Rename pevent find APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 06/24] tools lib traceevent, perf tools: Rename pevent parse APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 07/24] tools lib traceevent, perf tools: Rename pevent print APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 08/24] tools lib traceevent, perf tools: Rename pevent_read_number_* APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 09/24] tools lib traceevent, perf tools: Rename pevent_register_* APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 10/24] tools lib traceevent, perf tools: Rename pevent_set_* APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 11/24] tools lib traceevent, perf tools: Rename traceevent_* APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 12/24] tools lib traceevent, perf tools: Rename 'enum pevent_flag' to 'enum tep_flag' Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 13/24] tools lib traceevent, tools lib lockdep: Rename 'enum pevent_errno' to 'enum tep_errno' Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 14/24] tools lib traceevent: Rename pevent_function* APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 15/24] tools lib traceevent, perf tools: Rename traceevent_plugin_* APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 16/24] tools lib traceevent: Rename pevent_filter* APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 17/24] tools lib traceevent: Rename pevent_register / unregister APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 18/24] tools lib traceevent: Rename pevent_data_ APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 19/24] tools lib traceevent: Rename pevent field APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 20/24] tools lib traceevent: Rename pevent_find_* APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 21/24] tools lib traceevent: Rename various pevent get/set/is APIs Tzvetomir Stoyanov (VMware)
2018-08-27 13:17   ` Steven Rostedt
2018-08-27 13:31     ` Ceco
2018-08-27 13:36       ` Steven Rostedt
2018-08-28  9:09   ` [PATCH v3.5 " Tzvetomir Stoyanov (VMware)
2018-08-28 22:18     ` Steven Rostedt
2018-08-27  8:17 ` [PATCH v3 22/24] tools lib traceevent: Rename internal parser related APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 23/24] tools lib traceevent: Rename various pevent APIs Tzvetomir Stoyanov (VMware)
2018-08-27  8:17 ` [PATCH v3 24/24] tools lib traceevent: Rename static variables and functions in event-parse.c 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).