@@ -24,19 +24,6 @@ static inline int is_top_instance(struct buffer_instance *instance)
return instance == &top_instance;
}
-static int get_instance_file_fd(struct buffer_instance *instance,
- const char *file)
-{
- char *path;
- int fd;
-
- path = tracefs_instance_get_file(instance->tracefs, file);
- fd = open(path, O_RDONLY);
- tracefs_put_tracing_file(path);
-
- return fd;
-}
-
char *strstrip(char *str)
{
char *s;
@@ -108,22 +95,6 @@ char *get_file_content(const char *file)
return str;
}
-static char *get_instance_file_content(struct buffer_instance *instance,
- const char *file)
-{
- char *str = NULL;
- int fd;
-
- fd = get_instance_file_fd(instance, file);
- if (fd < 0)
- return NULL;
-
- str = get_fd_content(fd, file);
-
- close(fd);
- return str;
-}
-
static void report_file(struct buffer_instance *instance,
char *name, char *def_value, char *description)
{
@@ -132,7 +103,7 @@ static void report_file(struct buffer_instance *instance,
if (!tracefs_file_exists(instance->tracefs, name))
return;
- str = get_instance_file_content(instance, name);
+ str = tracefs_instance_file_read(instance->tracefs, name, NULL);
if (!str)
return;
cont = strstrip(str);
@@ -346,7 +317,7 @@ static void report_events(struct buffer_instance *instance)
enum event_process processed = PROCESSED_NONE;
enum event_process processed_part = PROCESSED_NONE;
- str = get_instance_file_content(instance, "events/enable");
+ str = tracefs_instance_file_read(instance->tracefs, "events/enable", NULL);
if (!str)
return;
@@ -664,7 +635,7 @@ static void report_buffers(struct buffer_instance *instance)
char file[FILE_SIZE];
int cpu;
- str = get_instance_file_content(instance, "buffer_size_kb");
+ str = tracefs_instance_file_read(instance->tracefs, "buffer_size_kb", NULL);
if (!str)
return;
@@ -684,7 +655,7 @@ static void report_buffers(struct buffer_instance *instance)
for (cpu = 0; ; cpu++) {
snprintf(file, FILE_SIZE, "per_cpu/cpu%d/buffer_size_kb", cpu);
- str = get_instance_file_content(instance, file);
+ str = tracefs_instance_file_read(instance->tracefs, file, NULL);
if (!str)
break;
@@ -699,7 +670,7 @@ static void report_buffers(struct buffer_instance *instance)
total:
free(str);
- str = get_instance_file_content(instance, "buffer_total_size_kb");
+ str = tracefs_instance_file_read(instance->tracefs, "buffer_total_size_kb", NULL);
if (!str)
return;
@@ -733,7 +704,7 @@ static void report_cpumask(struct buffer_instance *instance)
int n;
int i;
- str = get_instance_file_content(instance, "tracing_cpumask");
+ str = tracefs_instance_file_read(instance->tracefs, "tracing_cpumask", NULL);
if (!str)
return;
@@ -783,7 +754,7 @@ static void report_probes(struct buffer_instance *instance,
int newline;
int i;
- str = get_instance_file_content(instance, file);
+ str = tracefs_instance_file_read(instance->tracefs, file, NULL);
if (!str)
return;
@@ -828,7 +799,7 @@ static void report_traceon(struct buffer_instance *instance)
char *str;
char *cont;
- str = get_instance_file_content(instance, "tracing_on");
+ str = tracefs_instance_file_read(instance->tracefs, "tracing_on", NULL);
if (!str)
return;