diff options
| author | Jiri Olsa <jolsa@kernel.org> | 2015-09-02 03:56:41 -0400 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-09-04 11:01:00 -0400 |
| commit | 73ca85ad364769ffa312b1d892816d8fa23a02bf (patch) | |
| tree | b0d4cf6c795fc01b99cbb7c7f350d4b82669601f /tools/lib/api | |
| parent | c495afb4988dcbb8bae11b8f1bbb7e11f172672b (diff) | |
tools lib api fs: Add FSTYPE__mount() method
Adding FSTYPE__mount (where FSTYPE is, as of now, one of sysfs, procfs,
debugfs, tracefs) method that tries to mount the filesystem in case no
mount of FSTYPE is found.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Raphael Beamonte <raphael.beamonte@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Matt Fleming <matt@codeblueprint.co.uk>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/r/1441180605-24737-12-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/lib/api')
| -rw-r--r-- | tools/lib/api/fs/fs.c | 44 | ||||
| -rw-r--r-- | tools/lib/api/fs/fs.h | 15 |
2 files changed, 50 insertions, 9 deletions
diff --git a/tools/lib/api/fs/fs.c b/tools/lib/api/fs/fs.c index ef16d2a83a27..bc93baf33fff 100644 --- a/tools/lib/api/fs/fs.c +++ b/tools/lib/api/fs/fs.c | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | #include <sys/stat.h> | 9 | #include <sys/stat.h> |
| 10 | #include <fcntl.h> | 10 | #include <fcntl.h> |
| 11 | #include <unistd.h> | 11 | #include <unistd.h> |
| 12 | #include <sys/mount.h> | ||
| 12 | 13 | ||
| 13 | #include "debugfs.h" | 14 | #include "debugfs.h" |
| 14 | #include "fs.h" | 15 | #include "fs.h" |
| @@ -215,16 +216,49 @@ static const char *fs__mountpoint(int idx) | |||
| 215 | return fs__get_mountpoint(fs); | 216 | return fs__get_mountpoint(fs); |
| 216 | } | 217 | } |
| 217 | 218 | ||
| 218 | #define FS__MOUNTPOINT(name, idx) \ | 219 | static const char *mount_overload(struct fs *fs) |
| 220 | { | ||
| 221 | size_t name_len = strlen(fs->name); | ||
| 222 | /* "PERF_" + name + "_ENVIRONMENT" + '\0' */ | ||
| 223 | char upper_name[5 + name_len + 12 + 1]; | ||
| 224 | |||
| 225 | snprintf(upper_name, name_len, "PERF_%s_ENVIRONMENT", fs->name); | ||
| 226 | mem_toupper(upper_name, name_len); | ||
| 227 | |||
| 228 | return getenv(upper_name) ?: *fs->mounts; | ||
| 229 | } | ||
| 230 | |||
| 231 | static const char *fs__mount(int idx) | ||
| 232 | { | ||
| 233 | struct fs *fs = &fs__entries[idx]; | ||
| 234 | const char *mountpoint; | ||
| 235 | |||
| 236 | if (fs__mountpoint(idx)) | ||
| 237 | return (const char *)fs->path; | ||
| 238 | |||
| 239 | mountpoint = mount_overload(fs); | ||
| 240 | |||
| 241 | if (mount(NULL, mountpoint, fs->name, 0, NULL) < 0) | ||
| 242 | return NULL; | ||
| 243 | |||
| 244 | return fs__check_mounts(fs) ? fs->path : NULL; | ||
| 245 | } | ||
| 246 | |||
| 247 | #define FS(name, idx) \ | ||
| 219 | const char *name##__mountpoint(void) \ | 248 | const char *name##__mountpoint(void) \ |
| 220 | { \ | 249 | { \ |
| 221 | return fs__mountpoint(idx); \ | 250 | return fs__mountpoint(idx); \ |
| 251 | } \ | ||
| 252 | \ | ||
| 253 | const char *name##__mount(void) \ | ||
| 254 | { \ | ||
| 255 | return fs__mount(idx); \ | ||
| 222 | } | 256 | } |
| 223 | 257 | ||
| 224 | FS__MOUNTPOINT(sysfs, FS__SYSFS); | 258 | FS(sysfs, FS__SYSFS); |
| 225 | FS__MOUNTPOINT(procfs, FS__PROCFS); | 259 | FS(procfs, FS__PROCFS); |
| 226 | FS__MOUNTPOINT(debugfs, FS__DEBUGFS); | 260 | FS(debugfs, FS__DEBUGFS); |
| 227 | FS__MOUNTPOINT(tracefs, FS__TRACEFS); | 261 | FS(tracefs, FS__TRACEFS); |
| 228 | 262 | ||
| 229 | int filename__read_int(const char *filename, int *value) | 263 | int filename__read_int(const char *filename, int *value) |
| 230 | { | 264 | { |
diff --git a/tools/lib/api/fs/fs.h b/tools/lib/api/fs/fs.h index 9013227ae0d1..a9627ea5e6ae 100644 --- a/tools/lib/api/fs/fs.h +++ b/tools/lib/api/fs/fs.h | |||
| @@ -9,10 +9,17 @@ | |||
| 9 | #define PATH_MAX 4096 | 9 | #define PATH_MAX 4096 |
| 10 | #endif | 10 | #endif |
| 11 | 11 | ||
| 12 | const char *sysfs__mountpoint(void); | 12 | #define FS(name) \ |
| 13 | const char *procfs__mountpoint(void); | 13 | const char *name##__mountpoint(void); \ |
| 14 | const char *debugfs__mountpoint(void); | 14 | const char *name##__mount(void); |
| 15 | const char *tracefs__mountpoint(void); | 15 | |
| 16 | FS(sysfs) | ||
| 17 | FS(procfs) | ||
| 18 | FS(debugfs) | ||
| 19 | FS(tracefs) | ||
| 20 | |||
| 21 | #undef FS | ||
| 22 | |||
| 16 | 23 | ||
| 17 | int filename__read_int(const char *filename, int *value); | 24 | int filename__read_int(const char *filename, int *value); |
| 18 | int sysctl__read_int(const char *sysctl, int *value); | 25 | int sysctl__read_int(const char *sysctl, int *value); |
