>From 289657eaae162b6a5571894ec71d1ecca5454a54 Mon Sep 17 00:00:00 2001 From: Ashwin Chaugule Date: Wed, 30 Sep 2009 13:36:58 -0400 Subject: [PATCH] [perf-events] Remove static debugfs path Timechart doesn't work if debugfs is not in /sys/kernel/debug/. Fixed by using global debugfs_path which is filled in by perf. modified: tools/perf/util/parse-events.c Signed-off-by: Ashwin Chaugule --- tools/perf/util/parse-events.c | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/tools/perf/util/parse-events.c b/tools/perf/util/parse-events.c index 87c424d..c661c90 100644 --- a/tools/perf/util/parse-events.c +++ b/tools/perf/util/parse-events.c @@ -690,8 +690,11 @@ static void store_event_type(const char *orgname) char filename[PATH_MAX], *c; FILE *file; int id; + + sprintf(filename, "%s/", debugfs_path); + strncat(filename, orgname, strlen(orgname)); + strcat(filename, "/id"); - sprintf(filename, "/sys/kernel/debug/tracing/events/%s/id", orgname); c = strchr(filename, ':'); if (c) *c = '/'; -- 1.5.6.3