Commit 549104f2 authored by Clark Williams's avatar Clark Williams Committed by Ingo Molnar

perf tools: Modify perf routines to use new debugfs routines

modify perf.c get_debugfs_mntpnt() to use the util/debugfs.c
debugfs_find_mountpoint()

modify util/parse-events.c to use debugfs_valid_mountpoint().
Signed-off-by: default avatarClark Williams <williams@redhat.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
LKML-Reference: <20091101155720.624cc87e@torg>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent afe61f67
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
#include "util/run-command.h" #include "util/run-command.h"
#include "util/parse-events.h" #include "util/parse-events.h"
#include "util/string.h" #include "util/string.h"
#include "util/debugfs.h"
const char perf_usage_string[] = const char perf_usage_string[] =
"perf [--version] [--help] COMMAND [ARGS]"; "perf [--version] [--help] COMMAND [ARGS]";
...@@ -382,45 +383,12 @@ static int run_argv(int *argcp, const char ***argv) ...@@ -382,45 +383,12 @@ static int run_argv(int *argcp, const char ***argv)
/* mini /proc/mounts parser: searching for "^blah /mount/point debugfs" */ /* mini /proc/mounts parser: searching for "^blah /mount/point debugfs" */
static void get_debugfs_mntpt(void) static void get_debugfs_mntpt(void)
{ {
FILE *file; const char *path = debugfs_find_mountpoint();
char fs_type[100];
char debugfs[MAXPATHLEN];
/* if (path)
* try the standard location strncpy(debugfs_mntpt, path, sizeof(debugfs_mntpt));
*/ else
if (valid_debugfs_mount("/sys/kernel/debug/") == 0) { debugfs_mntpt[0] = '\0';
strcpy(debugfs_mntpt, "/sys/kernel/debug/");
return;
}
/*
* try the sane location
*/
if (valid_debugfs_mount("/debug/") == 0) {
strcpy(debugfs_mntpt, "/debug/");
return;
}
/*
* give up and parse /proc/mounts
*/
file = fopen("/proc/mounts", "r");
if (file == NULL)
return;
while (fscanf(file, "%*s %"
STR(MAXPATHLEN)
"s %99s %*s %*d %*d\n",
debugfs, fs_type) == 2) {
if (strcmp(fs_type, "debugfs") == 0)
break;
}
fclose(file);
if (strcmp(fs_type, "debugfs") == 0) {
strncpy(debugfs_mntpt, debugfs, MAXPATHLEN);
debugfs_mntpt[MAXPATHLEN - 1] = '\0';
}
} }
int main(int argc, const char **argv) int main(int argc, const char **argv)
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
#include "string.h" #include "string.h"
#include "cache.h" #include "cache.h"
#include "header.h" #include "header.h"
#include "debugfs.h"
int nr_counters; int nr_counters;
...@@ -149,16 +150,6 @@ static int tp_event_has_id(struct dirent *sys_dir, struct dirent *evt_dir) ...@@ -149,16 +150,6 @@ static int tp_event_has_id(struct dirent *sys_dir, struct dirent *evt_dir)
#define MAX_EVENT_LENGTH 512 #define MAX_EVENT_LENGTH 512
int valid_debugfs_mount(const char *debugfs)
{
struct statfs st_fs;
if (statfs(debugfs, &st_fs) < 0)
return -ENOENT;
else if (st_fs.f_type != (long) DEBUGFS_MAGIC)
return -ENOENT;
return 0;
}
struct tracepoint_path *tracepoint_id_to_path(u64 config) struct tracepoint_path *tracepoint_id_to_path(u64 config)
{ {
...@@ -171,7 +162,7 @@ struct tracepoint_path *tracepoint_id_to_path(u64 config) ...@@ -171,7 +162,7 @@ struct tracepoint_path *tracepoint_id_to_path(u64 config)
char evt_path[MAXPATHLEN]; char evt_path[MAXPATHLEN];
char dir_path[MAXPATHLEN]; char dir_path[MAXPATHLEN];
if (valid_debugfs_mount(debugfs_path)) if (debugfs_valid_mountpoint(debugfs_path))
return NULL; return NULL;
sys_dir = opendir(debugfs_path); sys_dir = opendir(debugfs_path);
...@@ -510,7 +501,7 @@ static enum event_result parse_tracepoint_event(const char **strp, ...@@ -510,7 +501,7 @@ static enum event_result parse_tracepoint_event(const char **strp,
char sys_name[MAX_EVENT_LENGTH]; char sys_name[MAX_EVENT_LENGTH];
unsigned int sys_length, evt_length; unsigned int sys_length, evt_length;
if (valid_debugfs_mount(debugfs_path)) if (debugfs_valid_mountpoint(debugfs_path))
return 0; return 0;
evt_name = strchr(*strp, ':'); evt_name = strchr(*strp, ':');
...@@ -788,7 +779,7 @@ static void print_tracepoint_events(void) ...@@ -788,7 +779,7 @@ static void print_tracepoint_events(void)
char evt_path[MAXPATHLEN]; char evt_path[MAXPATHLEN];
char dir_path[MAXPATHLEN]; char dir_path[MAXPATHLEN];
if (valid_debugfs_mount(debugfs_path)) if (debugfs_valid_mountpoint(debugfs_path))
return; return;
sys_dir = opendir(debugfs_path); sys_dir = opendir(debugfs_path);
......
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