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 11/24] trace-cmd: Rename pevent_traceevent_* APIs
Date: Mon, 20 Aug 2018 17:34:52 +0300	[thread overview]
Message-ID: <20180820143505.11525-12-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
APIs: traceevent_host_bigendian, traceevent_load_plugins and traceevent_unload_plugins

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

diff --git a/include/traceevent/event-parse.h b/include/traceevent/event-parse.h
index ea5b9f5..979ac97 100644
--- a/include/traceevent/event-parse.h
+++ b/include/traceevent/event-parse.h
@@ -421,9 +421,9 @@ struct plugin_list;
 
 #define INVALID_PLUGIN_LIST_OPTION	((char **)((unsigned long)-1))
 
-struct plugin_list *traceevent_load_plugins(struct tep_handle *pevent);
-void traceevent_unload_plugins(struct plugin_list *plugin_list,
-			       struct tep_handle *pevent);
+struct plugin_list *tep_load_plugins(struct tep_handle *pevent);
+void tep_unload_plugins(struct plugin_list *plugin_list,
+			struct tep_handle *pevent);
 char **traceevent_plugin_list_options(void);
 void traceevent_plugin_free_options_list(char **list);
 int traceevent_plugin_add_options(const char *name,
@@ -585,7 +585,7 @@ __data2host8(struct tep_handle *pevent, unsigned long long data)
 	__data2host8(pevent, __val);				\
 })
 
-static inline int traceevent_host_bigendian(void)
+static inline int tep_host_bigendian(void)
 {
 	unsigned char str[] = { 0x1, 0x2, 0x3, 0x4 };
 	unsigned int val;
diff --git a/lib/traceevent/event-plugin.c b/lib/traceevent/event-plugin.c
index ccda700..35b35dc 100644
--- a/lib/traceevent/event-plugin.c
+++ b/lib/traceevent/event-plugin.c
@@ -250,10 +250,10 @@ void traceevent_plugin_remove_options(struct tep_plugin_option *options)
  * @s: the trace_seq descripter to write to
  * @prefix: The prefix string to add before listing the option name
  * @suffix: The suffix string ot append after the option name
- * @list: The list of plugins (usually returned by traceevent_load_plugins()
+ * @list: The list of plugins (usually returned by tep_load_plugins()
  *
  * Writes to the trace_seq @s the list of plugins (files) that is
- * returned by traceevent_load_plugins(). Use @prefix and @suffix for formating:
+ * returned by tep_load_plugins(). Use @prefix and @suffix for formating:
  * @prefix = "  ", @suffix = "\n".
  */
 void traceevent_print_plugins(struct trace_seq *s,
@@ -417,7 +417,7 @@ load_plugins(struct tep_handle *pevent, const char *suffix,
 }
 
 struct plugin_list*
-traceevent_load_plugins(struct tep_handle *pevent)
+tep_load_plugins(struct tep_handle *pevent)
 {
 	struct plugin_list *list = NULL;
 
@@ -426,7 +426,7 @@ traceevent_load_plugins(struct tep_handle *pevent)
 }
 
 void
-traceevent_unload_plugins(struct plugin_list *plugin_list, struct tep_handle *pevent)
+tep_unload_plugins(struct plugin_list *plugin_list, struct tep_handle *pevent)
 {
 	tep_plugin_unload_func func;
 	struct plugin_list *list;
-- 
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 ` Tzvetomir Stoyanov (VMware) [this message]
2018-08-20 14:34 ` [PATCH 12/24] trace-cmd: Rename enum pevent_flag to enum tep_flag Tzvetomir Stoyanov (VMware)
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-12-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).