summaryrefslogtreecommitdiffstats
path: root/tools/lib
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2018-05-17 14:51:23 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2018-05-17 14:51:23 -0300
commit789e465058352122023e4fa7de8dcf5c513e0b0b (patch)
tree026cc900c4fd16e7df54e586b0bdf37fee5920ee /tools/lib
parent7014e0e3bf9b0d0b6221eb7d2f8a1f690423dd73 (diff)
downloadop-kernel-dev-789e465058352122023e4fa7de8dcf5c513e0b0b.zip
op-kernel-dev-789e465058352122023e4fa7de8dcf5c513e0b0b.tar.gz
tools lib api fs tracing_path: Make tracing_events_path private
Not anymore accessed outside this library, keep it private. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Wang Nan <wangnan0@huawei.com> Link: https://lkml.kernel.org/n/tip-wg1m07flfrg1rm06jjzie8si@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/lib')
-rw-r--r--tools/lib/api/fs/tracing_path.c3
-rw-r--r--tools/lib/api/fs/tracing_path.h2
2 files changed, 1 insertions, 4 deletions
diff --git a/tools/lib/api/fs/tracing_path.c b/tools/lib/api/fs/tracing_path.c
index 9b451af..1200374 100644
--- a/tools/lib/api/fs/tracing_path.c
+++ b/tools/lib/api/fs/tracing_path.c
@@ -15,8 +15,7 @@
static char tracing_mnt[PATH_MAX] = "/sys/kernel/debug";
static char tracing_path[PATH_MAX] = "/sys/kernel/debug/tracing";
-char tracing_events_path[PATH_MAX] = "/sys/kernel/debug/tracing/events";
-
+static char tracing_events_path[PATH_MAX] = "/sys/kernel/debug/tracing/events";
static void __tracing_path_set(const char *tracing, const char *mountpoint)
{
diff --git a/tools/lib/api/fs/tracing_path.h b/tools/lib/api/fs/tracing_path.h
index 904d085..a19136b 100644
--- a/tools/lib/api/fs/tracing_path.h
+++ b/tools/lib/api/fs/tracing_path.h
@@ -5,8 +5,6 @@
#include <linux/types.h>
#include <dirent.h>
-extern char tracing_events_path[];
-
DIR *tracing_events__opendir(void);
void tracing_path_set(const char *mountpoint);
OpenPOWER on IntegriCloud