aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2014-12-12 15:46:45 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2014-12-16 11:38:26 -0500
commit8185e881f9fd9a2fa01f9d45616f8587f485f2a6 (patch)
tree70a7d5dd8ffd2f8b1a360468bcfb7c6cdaad4c0e /tools
parent38d5447d64f367d1f4804ed5c7048d39de4d3311 (diff)
perf evlist: Do not use hard coded value for a mmap_pages default
So far what is in there by default is what we were using: 512KB + the control page, but the admin may change that, and if it does to a smaller value, all calls to tooling for non root users start failing, requiring that the user manually set --mmap_pages/-m. Use instead what is in /proc/sys/kernel/perf_event_mlock_kb. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Borislav Petkov <bp@suse.de> Cc: David Ahern <dsahern@gmail.com> Cc: Don Zickus <dzickus@redhat.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-2f6mtm8xu3wo5lhkql6jdblh@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/util/evlist.c20
1 files changed, 16 insertions, 4 deletions
diff --git a/tools/perf/util/evlist.c b/tools/perf/util/evlist.c
index 7847f3885081..ac808680e61c 100644
--- a/tools/perf/util/evlist.c
+++ b/tools/perf/util/evlist.c
@@ -893,10 +893,22 @@ out_unmap:
893 893
894static size_t perf_evlist__mmap_size(unsigned long pages) 894static size_t perf_evlist__mmap_size(unsigned long pages)
895{ 895{
896 /* 512 kiB: default amount of unprivileged mlocked memory */ 896 if (pages == UINT_MAX) {
897 if (pages == UINT_MAX) 897 int max;
898 pages = (512 * 1024) / page_size; 898
899 else if (!is_power_of_2(pages)) 899 if (sysctl__read_int("kernel/perf_event_mlock_kb", &max) < 0) {
900 /*
901 * Pick a once upon a time good value, i.e. things look
902 * strange since we can't read a sysctl value, but lets not
903 * die yet...
904 */
905 max = 512;
906 } else {
907 max -= (page_size / 1024);
908 }
909
910 pages = (max * 1024) / page_size;
911 } else if (!is_power_of_2(pages))
900 return 0; 912 return 0;
901 913
902 return (pages + 1) * page_size; 914 return (pages + 1) * page_size;