@@ -39,9 +39,9 @@ int tracefs_hist_append_filter(struct tracefs_hist pass:[*]hist,
const char pass:[*]field,
enum tracefs_compare compare,
const char pass:[*]val);
-int tracefs_hist_show(struct trace_seq pass:[*]s, struct tracefs_instance pass:[*]instance,
- struct tracefs_hist pass:[*]hist,
- enum tracefs_hist_command command);
+int tracefs_hist_echo_cmd(struct trace_seq pass:[*]s, struct tracefs_instance pass:[*]instance,
+ struct tracefs_hist pass:[*]hist,
+ enum tracefs_hist_command command);
int tracefs_hist_command(struct tracefs_instance pass:[*]instance,
struct tracefs_hist pass:[*]hist,
enum tracefs_hist_command command);
@@ -155,7 +155,7 @@ _field_, _compare_, and _val_ are ignored unless _type_ is equal to
*TRACEFS_COMPARE_AND* - _field_ & _val_ : where _field_ is a flags field.
-*trace_hist_show*() prints the commands needed to create the given histogram
+*trace_hist_echo_cmd*() prints the commands needed to create the given histogram
in the given _instance_, or NULL for the top level, into the _seq_.
The command that is printed is described by _command_ and shows the functionality
that would be done by *tracefs_hist_command*(3).
@@ -405,7 +405,7 @@ static int do_sql(const char *buffer, const char *name, const char *var,
}
}
}
- tracefs_synth_show(&seq, synth);
+ tracefs_synth_echo_cmd(&seq, synth);
if (execute)
tracefs_synth_create(synth);
} else {
@@ -415,7 +415,7 @@ static int do_sql(const char *buffer, const char *name, const char *var,
perror("get_start_hist");
exit(-1);
}
- tracefs_hist_show(&seq, NULL, hist, 0);
+ tracefs_hist_echo_cmd(&seq, NULL, hist, 0);
if (execute)
tracefs_hist_start(NULL, hist);
}
@@ -561,7 +561,7 @@ _tracefs_synth_append_end_filter(3)_,
_tracefs_synth_create(3)_,
_tracefs_synth_destroy(3)_,
_tracefs_synth_free(3)_,
-_tracefs_synth_show(3)_,
+_tracefs_synth_echo_cmd(3)_,
_tracefs_hist_alloc(3)_,
_tracefs_hist_free(3)_,
_tracefs_hist_add_key(3)_,
@@ -257,7 +257,7 @@ static void make_event(void)
* That's because, when the synth is executed, the remaining close parenthesis
* will be added. That is, the string will end up being:
* "next_prio < 50 || !(prev_prio >= 100)" when one of tracefs_sync_create()
- * or tracefs_sync_show() is run.
+ * or tracefs_sync_echo_cmd() is run.
*/
}
@@ -268,7 +268,7 @@ static void show_event(void)
trace_seq_init(&s);
- tracefs_synth_show(&s, synth);
+ tracefs_synth_echo_cmd(&s, synth);
trace_seq_terminate(&s);
trace_seq_do_printf(&s);
trace_seq_destroy(&s);
@@ -312,7 +312,7 @@ SEE ALSO
--------
_tracefs_synth_create_(3),
_tracefs_synth_destroy_(3),
-_tracfes_synth_show_(3),
+_tracfes_synth_echo_cmd(3),
_libtracefs(3)_,
_libtraceevent(3)_,
_trace-cmd(1)_,
@@ -3,7 +3,7 @@ libtracefs(3)
NAME
----
-tracefs_synth_create, tracefs_synth_destroy, tracefs_synth_show,tracefs_synth_complete,
+tracefs_synth_create, tracefs_synth_destroy, tracefs_synth_echo_cmd,tracefs_synth_complete,
tracefs_synth_get_start_hist,tracefs_synth_trace,tracefs_synth_snapshot - Creation of synthetic events
SYNOPSIS
@@ -14,7 +14,7 @@ SYNOPSIS
int tracefs_synth_create(struct tracefs_synth pass:[*]synth);
int tracefs_synth_destroy(struct tracefs_synth pass:[*]synth);
-int tracefs_synth_show(struct trace_seq pass:[*]seq, struct tracefs_synth pass:[*]synth);
+int tracefs_synth_echo_cmd(struct trace_seq pass:[*]seq, struct tracefs_synth pass:[*]synth);
bool tracefs_synth_complete(struct tracefs_synth pass:[*]synth);
struct tracefs_hist pass:[*]tracefs_synth_get_start_hist(struct tracefs_synth pass:[*]synth);
@@ -52,7 +52,7 @@ across all instances.
*tracefs_synth_destroy*() destroys the synthetic event. It will attempt to stop the running of it in
its instance (top by default), but if its running in another instance this may fail as busy.
-*tracefs_synth_show*() acts like *tracefs_synth_create*(), but instead of creating
+*tracefs_synth_echo_cmd*() acts like *tracefs_synth_create*(), but instead of creating
the synthetic event in the system, it will write the echo commands to manually create
it in the _seq_ given.
@@ -184,7 +184,7 @@ static void make_event(void)
* That's because, when the synth is executed, the remaining close parenthesis
* will be added. That is, the string will end up being:
* "next_prio < 50 || !(prev_prio >= 100)" when one of tracefs_sync_create()
- * or tracefs_sync_show() is run.
+ * or tracefs_sync_echo_cmd() is run.
*/
}
@@ -195,7 +195,7 @@ static void show_event(void)
trace_seq_init(&s);
- tracefs_synth_show(&s, synth);
+ tracefs_synth_echo_cmd(&s, synth);
trace_seq_terminate(&s);
trace_seq_do_printf(&s);
trace_seq_destroy(&s);
@@ -371,8 +371,8 @@ int tracefs_hist_append_filter(struct tracefs_hist *hist,
const char *field,
enum tracefs_compare compare,
const char *val);
-int tracefs_hist_show(struct trace_seq *seq, struct tracefs_instance *instance,
- struct tracefs_hist *hist, enum tracefs_hist_command command);
+int tracefs_hist_echo_cmd(struct trace_seq *seq, struct tracefs_instance *instance,
+ struct tracefs_hist *hist, enum tracefs_hist_command command);
int tracefs_hist_command(struct tracefs_instance *instance,
struct tracefs_hist *hist, enum tracefs_hist_command cmd);
@@ -530,7 +530,7 @@ struct tracefs_hist *tracefs_synth_get_start_hist(struct tracefs_synth *synth);
int tracefs_synth_create(struct tracefs_synth *synth);
int tracefs_synth_destroy(struct tracefs_synth *synth);
void tracefs_synth_free(struct tracefs_synth *synth);
-int tracefs_synth_show(struct trace_seq *seq, struct tracefs_synth *synth);
+int tracefs_synth_echo_cmd(struct trace_seq *seq, struct tracefs_synth *synth);
struct tracefs_synth *tracefs_sql(struct tep_handle *tep, const char *name,
const char *sql_buffer, char **err);
@@ -103,20 +103,20 @@ static void add_hist_commands(struct trace_seq *seq, struct tracefs_hist *hist,
}
/*
- * trace_hist_show - show how to start the histogram
+ * trace_hist_echo_cmd - show how to start the histogram
* @seq: A trace_seq to store the commands to create
* @hist: The histogram to write into the trigger file
* @command: If not zero, can pause, continue or clear the histogram
*
- * This shows the commands to create the histogram for an event
+ * This shows the echo commands to create the histogram for an event
* with the given fields.
*
* Returns 0 on succes -1 on error.
*/
int
-tracefs_hist_show(struct trace_seq *seq, struct tracefs_instance *instance,
- struct tracefs_hist *hist,
- enum tracefs_hist_command command)
+tracefs_hist_echo_cmd(struct trace_seq *seq, struct tracefs_instance *instance,
+ struct tracefs_hist *hist,
+ enum tracefs_hist_command command)
{
const char *system = hist->system;
const char *event = hist->event_name;
@@ -2029,7 +2029,7 @@ int tracefs_synth_destroy(struct tracefs_synth *synth)
}
/**
- * tracefs_synth_show - show the command lines to create the synthetic event
+ * tracefs_synth_echo_cmd - show the command lines to create the synthetic event
* @seq: The trace_seq to store the command lines in
* @synth: The tracefs_synth descriptor
*
@@ -2040,8 +2040,8 @@ int tracefs_synth_destroy(struct tracefs_synth *synth)
* On error, errno is set to:
* ENOMEM - memory allocation failure.
*/
-int tracefs_synth_show(struct trace_seq *seq,
- struct tracefs_synth *synth)
+int tracefs_synth_echo_cmd(struct trace_seq *seq,
+ struct tracefs_synth *synth)
{
bool new_event = false;
char *hist = NULL;
@@ -337,28 +337,28 @@ static void test_instance_trace_sql(struct tracefs_instance *instance)
synth = tracefs_sql(tep, SQL_1_EVENT, SQL_1_SQL, NULL);
CU_TEST(synth != NULL);
- ret = tracefs_synth_show(&seq, synth);
+ ret = tracefs_synth_echo_cmd(&seq, synth);
CU_TEST(ret == 0);
tracefs_synth_free(synth);
trace_seq_reset(&seq);
synth = tracefs_sql(tep, SQL_2_EVENT, SQL_2_SQL, NULL);
CU_TEST(synth != NULL);
- ret = tracefs_synth_show(&seq, synth);
+ ret = tracefs_synth_echo_cmd(&seq, synth);
CU_TEST(ret == 0);
tracefs_synth_free(synth);
trace_seq_reset(&seq);
synth = tracefs_sql(tep, SQL_3_EVENT, SQL_3_SQL, NULL);
CU_TEST(synth != NULL);
- ret = tracefs_synth_show(&seq, synth);
+ ret = tracefs_synth_echo_cmd(&seq, synth);
CU_TEST(ret == 0);
tracefs_synth_free(synth);
trace_seq_reset(&seq);
synth = tracefs_sql(tep, SQL_4_EVENT, SQL_4_SQL, NULL);
CU_TEST(synth != NULL);
- ret = tracefs_synth_show(&seq, synth);
+ ret = tracefs_synth_echo_cmd(&seq, synth);
CU_TEST(ret == 0);
tracefs_synth_free(synth);
trace_seq_reset(&seq);
@@ -367,7 +367,7 @@ static void test_instance_trace_sql(struct tracefs_instance *instance)
if (event) {
synth = tracefs_sql(tep, SQL_5_EVENT, SQL_5_SQL, NULL);
CU_TEST(synth != NULL);
- ret = tracefs_synth_show(&seq, synth);
+ ret = tracefs_synth_echo_cmd(&seq, synth);
CU_TEST(ret == 0);
tracefs_synth_free(synth);
trace_seq_reset(&seq);