linux-trace-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Tzvetomir Stoyanov (VMware)" <tz.stoyanov@gmail.com>
To: rostedt@goodmis.org
Cc: linux-trace-devel@vger.kernel.org,
	"Tzvetomir Stoyanov (VMware)" <tz.stoyanov@gmail.com>
Subject: [PATCH 12/24] trace-cmd: Rename enum pevent_flag to enum tep_flag
Date: Mon, 20 Aug 2018 17:34:53 +0300	[thread overview]
Message-ID: <20180820143505.11525-13-tz.stoyanov@gmail.com> (raw)
In-Reply-To: <20180820143505.11525-1-tz.stoyanov@gmail.com>

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 changes
pevent_get_page_size API and enum pevent_flag to enum tep_flag

Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>
---
 include/traceevent/event-parse.h | 10 +++++-----
 lib/traceevent/event-parse.c     |  2 +-
 lib/traceevent/event-plugin.c    |  4 ++--
 tracecmd/trace-read.c            |  4 ++--
 4 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/include/traceevent/event-parse.h b/include/traceevent/event-parse.h
index 979ac97..3df714f 100644
--- a/include/traceevent/event-parse.h
+++ b/include/traceevent/event-parse.h
@@ -359,10 +359,10 @@ enum pevent_func_arg_type {
 	PEVENT_FUNC_ARG_MAX_TYPES
 };
 
-enum pevent_flag {
-	PEVENT_NSEC_OUTPUT		= 1,	/* output in NSECS */
-	PEVENT_DISABLE_SYS_PLUGINS	= 1 << 1,
-	PEVENT_DISABLE_PLUGINS		= 1 << 2,
+enum tep_flag {
+	TEP_NSEC_OUTPUT		= 1,	/* output in NSECS */
+	TEP_DISABLE_SYS_PLUGINS	= 1 << 1,
+	TEP_DISABLE_PLUGINS	= 1 << 2,
 };
 
 #define PEVENT_ERRORS 							      \
@@ -739,7 +739,7 @@ static inline void tep_set_long_size(struct tep_handle *pevent, int long_size)
 	pevent->long_size = long_size;
 }
 
-static inline int pevent_get_page_size(struct tep_handle *pevent)
+static inline int tep_get_page_size(struct tep_handle *pevent)
 {
 	return pevent->page_size;
 }
diff --git a/lib/traceevent/event-parse.c b/lib/traceevent/event-parse.c
index 0dc3dc5..004ac88 100644
--- a/lib/traceevent/event-parse.c
+++ b/lib/traceevent/event-parse.c
@@ -5501,7 +5501,7 @@ void tep_print_event_time(struct tep_handle *pevent, struct trace_seq *s,
 	}
 
 	if (use_usec_format) {
-		if (pevent->flags & PEVENT_NSEC_OUTPUT) {
+		if (pevent->flags & TEP_NSEC_OUTPUT) {
 			usecs = nsecs;
 			p = 9;
 		} else {
diff --git a/lib/traceevent/event-plugin.c b/lib/traceevent/event-plugin.c
index 35b35dc..aeab162 100644
--- a/lib/traceevent/event-plugin.c
+++ b/lib/traceevent/event-plugin.c
@@ -376,7 +376,7 @@ load_plugins(struct tep_handle *pevent, const char *suffix,
 	char *envdir;
 	int ret;
 
-	if (pevent->flags & PEVENT_DISABLE_PLUGINS)
+	if (pevent->flags & TEP_DISABLE_PLUGINS)
 		return;
 
 	/*
@@ -384,7 +384,7 @@ load_plugins(struct tep_handle *pevent, const char *suffix,
 	 * check that first.
 	 */
 #ifdef PLUGIN_DIR
-	if (!(pevent->flags & PEVENT_DISABLE_SYS_PLUGINS))
+	if (!(pevent->flags & TEP_DISABLE_SYS_PLUGINS))
 		load_plugins_dir(pevent, suffix, PLUGIN_DIR,
 				 load_plugin, data);
 #endif
diff --git a/tracecmd/trace-read.c b/tracecmd/trace-read.c
index a61f6aa..74059a0 100644
--- a/tracecmd/trace-read.c
+++ b/tracecmd/trace-read.c
@@ -798,7 +798,7 @@ void trace_show_data(struct tracecmd_input *handle, struct tep_record *record)
 		tep_print_event_time(pevent, &s, event, record,
 					use_trace_clock);
 		buf[0] = 0;
-		if (use_trace_clock && !(pevent->flags & PEVENT_NSEC_OUTPUT))
+		if (use_trace_clock && !(pevent->flags & TEP_NSEC_OUTPUT))
 			rec_ts = (rec_ts + 500) / 1000;
 		if (last_ts) {
 			diff_ts = rec_ts - last_ts;
@@ -1687,7 +1687,7 @@ void trace_report (int argc, char **argv)
 		pevent = tracecmd_get_pevent(handle);
 
 		if (nanosec)
-			pevent->flags |= PEVENT_NSEC_OUTPUT;
+			pevent->flags |= TEP_NSEC_OUTPUT;
 
 		if (raw)
 			pevent->print_raw = 1;
-- 
2.17.1

  parent reply	other threads:[~2018-08-20 17:51 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-20 14:34 [PATCH 00/24] trace-cmd: rename variables, data structures and functions in lib/traceevent Tzvetomir Stoyanov (VMware)
2018-08-20 14:34 ` [PATCH 02/24] trace-cmd: Rename struct pevent_record to struct tep_record Tzvetomir Stoyanov (VMware)
2018-08-21  3:01   ` Steven Rostedt
2018-08-20 14:34 ` [PATCH 03/24] trace-cmd: Rename pevent plugin related APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:34 ` [PATCH 04/24] trace-cmd: Rename pevent alloc / free APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:34 ` [PATCH 05/24] trace-cmd: Rename pevent find APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:34 ` [PATCH 06/24] trace-cmd: Rename pevent parse APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:34 ` [PATCH 07/24] trace-cmd: Rename pevent print APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:34 ` [PATCH 08/24] trace-cmd: Rename pevent_read_number_* APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:34 ` [PATCH 09/24] trace-cmd: Rename pevent_register_* APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:34 ` [PATCH 10/24] trace-cmd: Rename pevent_set_* APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:34 ` [PATCH 11/24] trace-cmd: Rename pevent_traceevent_* APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:34 ` Tzvetomir Stoyanov (VMware) [this message]
2018-08-20 14:34 ` [PATCH 13/24] trace-cmd: Rename enunm pevent_errno to enum tep_errno Tzvetomir Stoyanov (VMware)
2018-08-20 14:34 ` [PATCH 14/24] trace-cmd: Rename pevent_function* APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:34 ` [PATCH 15/24] trace-cmd: Rename traceevent_* APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:34 ` [PATCH 16/24] trace-cmd: Rename pevent_filter* APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:34 ` [PATCH 17/24] trace-cmd: Rename pevent_register / unregister APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:34 ` [PATCH 18/24] trace-cmd: Rename pevent_data_ APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:35 ` [PATCH 19/24] trace-cmd: Rename pevent field APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:35 ` [PATCH 20/24] trace-cmd: Rename pevent_find_* APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:35 ` [PATCH 21/24] trace-cmd: Rename various pevent get/set/is APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:35 ` [PATCH 22/24] trace-cmd: Rename internal parser related APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:35 ` [PATCH 23/24] trace-cmd: Rename various pevent APIs Tzvetomir Stoyanov (VMware)
2018-08-20 14:35 ` [PATCH 24/24] trace-cmd: Rename static variables and functions in event-parse.c Tzvetomir Stoyanov (VMware)

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=20180820143505.11525-13-tz.stoyanov@gmail.com \
    --to=tz.stoyanov@gmail.com \
    --cc=linux-trace-devel@vger.kernel.org \
    --cc=rostedt@goodmis.org \
    /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).