@@ -33,4 +33,8 @@ char *trace_find_tracing_dir(void);
#define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH) /* 0666*/
#endif
+struct tracefs_options_mask {
+ unsigned long long mask;
+};
+
#endif /* _TRACE_FS_LOCAL_H */
@@ -131,11 +131,7 @@ enum tracefs_option_id {
};
#define TRACEFS_OPTION_MAX (TRACEFS_OPTION_VERBOSE + 1)
-struct tracefs_options_mask {
- unsigned long long mask;
-};
-void tracefs_option_set(struct tracefs_options_mask *options, enum tracefs_option_id id);
-void tracefs_option_clear(struct tracefs_options_mask *options, enum tracefs_option_id id);
+struct tracefs_options_mask;
bool tracefs_option_is_set(struct tracefs_options_mask *options,
enum tracefs_option_id id);
struct tracefs_options_mask *tracefs_options_get_supported(struct tracefs_instance *instance);
@@ -197,6 +197,13 @@ enum tracefs_option_id tracefs_option_id(const char *name)
return TRACEFS_OPTION_INVALID;
}
+static void trace_option_set(struct tracefs_options_mask *options,
+ enum tracefs_option_id id)
+{
+ if (options && id > TRACEFS_OPTION_INVALID)
+ options->mask |= (1ULL << (id - 1));
+}
+
static struct tracefs_options_mask *trace_get_options(struct tracefs_instance *instance,
bool enabled)
{
@@ -229,7 +236,7 @@ static struct tracefs_options_mask *trace_get_options(struct tracefs_instance *i
}
id = tracefs_option_id(dent->d_name);
if (id != TRACEFS_OPTION_INVALID)
- tracefs_option_set(bitmask, id);
+ trace_option_set(bitmask, id);
}
closedir(dir);
tracefs_put_tracing_file(dname);
@@ -366,25 +373,3 @@ bool tracefs_option_is_set(struct tracefs_options_mask *options,
return options->mask & (1ULL << (id - 1));
return false;
}
-
-/**
- * tracefs_option_set - Set option in options bitmask
- * @options: Pointer to a bitmask with options
- * @id: trace option id
- */
-void tracefs_option_set(struct tracefs_options_mask *options, enum tracefs_option_id id)
-{
- if (options && id > TRACEFS_OPTION_INVALID)
- options->mask |= (1ULL << (id - 1));
-}
-
-/**
- * tracefs_option_clear - Clear option from options bitmask
- * @options: Pointer to a bitmask with options
- * @id: trace option id
- */
-void tracefs_option_clear(struct tracefs_options_mask *options, enum tracefs_option_id id)
-{
- if (options && id > TRACEFS_OPTION_INVALID)
- options->mask &= ~(1ULL << (id - 1));
-}
The definition of the mask gets hidden from the user. This way we will be able to modify this definition in the future, without breaking the API. Such a modification will be compulsory, if too many new tracing options are added in the future. Note that encapsulating the mask definition, requires two API methods to be eliminated, however those methods have no particular use-cases for the moment. Signed-off-by: Yordan Karadzhov (VMware) <y.karadz@gmail.com> --- include/tracefs-local.h | 4 ++++ include/tracefs.h | 6 +----- src/tracefs-tools.c | 31 ++++++++----------------------- 3 files changed, 13 insertions(+), 28 deletions(-)