Commit 88e6c21a authored by Tzvetomir Stoyanov (VMware)'s avatar Tzvetomir Stoyanov (VMware) Committed by Arnaldo Carvalho de Melo

tools lib traceevent: Add prefix tep_ to various structs filter_arg_*.

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_". This adds prefix tep_ to
to various structs filter_arg_*..
Signed-off-by: default avatarTzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>
Cc: linux-trace-devel@vger.kernel.org
Link: http://lkml.kernel.org/r/20180919185724.152948543@goodmis.orgSigned-off-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 0515ca53
...@@ -827,15 +827,15 @@ enum tep_filter_value_type { ...@@ -827,15 +827,15 @@ enum tep_filter_value_type {
struct tep_filter_arg; struct tep_filter_arg;
struct filter_arg_boolean { struct tep_filter_arg_boolean {
enum tep_filter_boolean_type value; enum tep_filter_boolean_type value;
}; };
struct filter_arg_field { struct tep_filter_arg_field {
struct tep_format_field *field; struct tep_format_field *field;
}; };
struct filter_arg_value { struct tep_filter_arg_value {
enum tep_filter_value_type type; enum tep_filter_value_type type;
union { union {
char *str; char *str;
...@@ -843,42 +843,42 @@ struct filter_arg_value { ...@@ -843,42 +843,42 @@ struct filter_arg_value {
}; };
}; };
struct filter_arg_op { struct tep_filter_arg_op {
enum tep_filter_op_type type; enum tep_filter_op_type type;
struct tep_filter_arg *left; struct tep_filter_arg *left;
struct tep_filter_arg *right; struct tep_filter_arg *right;
}; };
struct filter_arg_exp { struct tep_filter_arg_exp {
enum tep_filter_exp_type type; enum tep_filter_exp_type type;
struct tep_filter_arg *left; struct tep_filter_arg *left;
struct tep_filter_arg *right; struct tep_filter_arg *right;
}; };
struct filter_arg_num { struct tep_filter_arg_num {
enum tep_filter_cmp_type type; enum tep_filter_cmp_type type;
struct tep_filter_arg *left; struct tep_filter_arg *left;
struct tep_filter_arg *right; struct tep_filter_arg *right;
}; };
struct filter_arg_str { struct tep_filter_arg_str {
enum tep_filter_cmp_type type; enum tep_filter_cmp_type type;
struct tep_format_field *field; struct tep_format_field *field;
char *val; char *val;
char *buffer; char *buffer;
regex_t reg; regex_t reg;
}; };
struct tep_filter_arg { struct tep_filter_arg {
enum tep_filter_arg_type type; enum tep_filter_arg_type type;
union { union {
struct filter_arg_boolean boolean; struct tep_filter_arg_boolean boolean;
struct filter_arg_field field; struct tep_filter_arg_field field;
struct filter_arg_value value; struct tep_filter_arg_value value;
struct filter_arg_op op; struct tep_filter_arg_op op;
struct filter_arg_exp exp; struct tep_filter_arg_exp exp;
struct filter_arg_num num; struct tep_filter_arg_num num;
struct filter_arg_str str; struct tep_filter_arg_str str;
}; };
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment