diff options
author | Kyle Meyer <[email protected]> | 2019-06-20 14:36:30 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2019-06-25 08:47:10 -0300 |
commit | 9f94c7f947e919c343b30f080285af53d0fa9902 (patch) | |
tree | cbb287ac88989ea41cc33f6d0bb12d4f5a929cb2 /tools/perf/util/c++/clang.cpp | |
parent | eb5d854456f5a4ccec6f9681b7196cf056df8cfa (diff) |
perf tools: Increase MAX_NR_CPUS and MAX_CACHES
Attempting to profile 1024 or more CPUs with perf causes two errors:
perf record -a
[ perf record: Woken up X times to write data ]
way too many cpu caches..
[ perf record: Captured and wrote X MB perf.data (X samples) ]
perf report -C 1024
Error: failed to set cpu bitmap
Requested CPU 1024 too large. Consider raising MAX_NR_CPUS
Increasing MAX_NR_CPUS from 1024 to 2048 and redefining MAX_CACHES as
MAX_NR_CPUS * 4 returns normal functionality to perf:
perf record -a
[ perf record: Woken up X times to write data ]
[ perf record: Captured and wrote X MB perf.data (X samples) ]
perf report -C 1024
...
Signed-off-by: Kyle Meyer <[email protected]>
Cc: Alexander Shishkin <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/perf/util/c++/clang.cpp')
0 files changed, 0 insertions, 0 deletions