diff options
Diffstat (limited to 'tools/perf/util/util.c')
-rw-r--r-- | tools/perf/util/util.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/perf/util/util.c b/tools/perf/util/util.c index 4a57609c0b43..8f63dba212d7 100644 --- a/tools/perf/util/util.c +++ b/tools/perf/util/util.c | |||
@@ -1,5 +1,6 @@ | |||
1 | #include "../perf.h" | 1 | #include "../perf.h" |
2 | #include "util.h" | 2 | #include "util.h" |
3 | #include "fs.h" | ||
3 | #include <sys/mman.h> | 4 | #include <sys/mman.h> |
4 | #ifdef HAVE_BACKTRACE_SUPPORT | 5 | #ifdef HAVE_BACKTRACE_SUPPORT |
5 | #include <execinfo.h> | 6 | #include <execinfo.h> |
@@ -8,6 +9,7 @@ | |||
8 | #include <stdlib.h> | 9 | #include <stdlib.h> |
9 | #include <string.h> | 10 | #include <string.h> |
10 | #include <errno.h> | 11 | #include <errno.h> |
12 | #include <limits.h> | ||
11 | #include <linux/kernel.h> | 13 | #include <linux/kernel.h> |
12 | 14 | ||
13 | /* | 15 | /* |
@@ -496,3 +498,20 @@ const char *get_filename_for_perf_kvm(void) | |||
496 | 498 | ||
497 | return filename; | 499 | return filename; |
498 | } | 500 | } |
501 | |||
502 | int perf_event_paranoid(void) | ||
503 | { | ||
504 | char path[PATH_MAX]; | ||
505 | const char *procfs = procfs__mountpoint(); | ||
506 | int value; | ||
507 | |||
508 | if (!procfs) | ||
509 | return INT_MAX; | ||
510 | |||
511 | scnprintf(path, PATH_MAX, "%s/sys/kernel/perf_event_paranoid", procfs); | ||
512 | |||
513 | if (filename__read_int(path, &value)) | ||
514 | return INT_MAX; | ||
515 | |||
516 | return value; | ||
517 | } | ||