@@ -3,7 +3,7 @@ libtraceevent(3)
NAME
----
-tep_is_file_bigendian,tep_set_file_bigendian - Get / set the endianess of the
+tep_file_bigendian,tep_set_file_bigendian - Get / set the endianess of the
raw data, being accessed by the tep handler.
SYNOPSIS
@@ -17,13 +17,13 @@ enum *tep_endian* {
TEP_BIG_ENDIAN
};
-int *tep_is_file_bigendian*(struct tep_handle pass:[*]_tep_);
+int *tep_file_bigendian*(struct tep_handle pass:[*]_tep_);
void *tep_set_file_bigendian*(struct tep_handle pass:[*]_tep_, enum tep_endian _endian_);
--
DESCRIPTION
-----------
-The _tep_is_file_bigendian()_ function returns the endianess of the raw data,
+The _tep_file_bigendian()_ function returns the endianess of the raw data,
being accessed by the tep handler. The _tep_ argument is trace event parser context.
The _tep_set_file_bigendian()_ set the endianess of raw data, the being accessed
@@ -36,7 +36,7 @@ The _endian_ argument is the endianess:
--
RETURN VALUE
------------
-The _tep_is_file_bigendian()_ function returns _TEP_LITTLE_ENDIAN_ or _TEP_BIG_ENDIAN_.
+The _tep_file_bigendian()_ function returns _TEP_LITTLE_ENDIAN_ or _TEP_BIG_ENDIAN_.
EXAMPLE
-------
@@ -48,7 +48,7 @@ struct tep_handle *tep = tep_alloc();
...
tep_set_file_bigendian(tep, TEP_LITTLE_ENDIAN);
...
- if (TEP_BIG_ENDIAN == tep_is_file_bigendian(tep)) {
+ if (TEP_BIG_ENDIAN == tep_file_bigendian(tep)) {
/* The raw data is in big endian */
} else {
/* The raw data is in little endian */
@@ -129,7 +129,7 @@ Command and task related APIs:
Endian related APIs:
int *tep_host_bigendian*(void);
unsigned long long *tep_read_number*(struct tep_handle pass:[*]_tep_, const void pass:[*]_ptr_, int _size_);
- int *tep_is_file_bigendian*(struct tep_handle pass:[*]_tep_);
+ int *tep_file_bigendian*(struct tep_handle pass:[*]_tep_);
void *tep_set_file_bigendian*(struct tep_handle pass:[*]_tep_, enum tep_endian _endian_);
int *tep_is_host_bigendian*(struct tep_handle pass:[*]_tep_);
void *tep_set_host_bigendian*(struct tep_handle pass:[*]_tep_, enum tep_endian _endian_);
@@ -201,13 +201,13 @@ void tep_set_page_size(struct tep_handle *pevent, int _page_size)
}
/**
- * tep_is_file_bigendian - get if the file is in big endian order
+ * tep_file_bigendian - get if the file is in big endian order
* @pevent: a handle to the tep_handle
*
* This returns if the file is in big endian order
* If @pevent is NULL, 0 is returned.
*/
-int tep_is_file_bigendian(struct tep_handle *pevent)
+int tep_file_bigendian(struct tep_handle *pevent)
{
if (pevent)
return pevent->file_bigendian;
@@ -553,7 +553,7 @@ int tep_get_long_size(struct tep_handle *pevent);
void tep_set_long_size(struct tep_handle *pevent, int long_size);
int tep_get_page_size(struct tep_handle *pevent);
void tep_set_page_size(struct tep_handle *pevent, int _page_size);
-int tep_is_file_bigendian(struct tep_handle *pevent);
+int tep_file_bigendian(struct tep_handle *pevent);
void tep_set_file_bigendian(struct tep_handle *pevent, enum tep_endian endian);
int tep_is_host_bigendian(struct tep_handle *pevent);
void tep_set_host_bigendian(struct tep_handle *pevent, enum tep_endian endian);
@@ -389,7 +389,7 @@ static int kvm_mmu_print_role(struct trace_seq *s, struct tep_record *record,
* We can only use the structure if file is of the same
* endianess.
*/
- if (tep_is_file_bigendian(event->pevent) ==
+ if (tep_file_bigendian(event->pevent) ==
tep_is_host_bigendian(event->pevent)) {
trace_seq_printf(s, "%u q%u%s %s%s %spae %snxe %swp%s%s%s",
In order to make libtraceevent into a proper library, its API should be straightforward. After discussion with Steven Rostedt, we decided to rename few APIs, to have more intuitive names. This patch renames tep_is_file_bigendian() to tep_file_bigendian(). Signed-off-by: Tzvetomir Stoyanov <tstoyanov@vmware.com> --- .../Documentation/libtraceevent-file_endian.txt | 10 +++++----- tools/lib/traceevent/Documentation/libtraceevent.txt | 2 +- tools/lib/traceevent/event-parse-api.c | 4 ++-- tools/lib/traceevent/event-parse.h | 2 +- tools/lib/traceevent/plugin_kvm.c | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-)