summaryrefslogtreecommitdiffstats
path: root/tools/perf/tests
diff options
context:
space:
mode:
authorJin Yao2017-12-05 15:03:09 +0100
committerArnaldo Carvalho de Melo2017-12-27 16:15:46 +0100
commit73c0ca1eee3d2c96898e05a16be49da2a6d590b2 (patch)
tree7fd69611c5c1c26ba0ee8fae4b3246d6c4881f81 /tools/perf/tests
parentperf stat: Update or print per-thread stats (diff)
downloadkernel-qcow2-linux-73c0ca1eee3d2c96898e05a16be49da2a6d590b2.tar.gz
kernel-qcow2-linux-73c0ca1eee3d2c96898e05a16be49da2a6d590b2.tar.xz
kernel-qcow2-linux-73c0ca1eee3d2c96898e05a16be49da2a6d590b2.zip
perf thread_map: Enumerate all threads from /proc
This patch calls thread_map__new_all_cpus() to enumerate all threads from /proc if per-thread flag is enabled. Signed-off-by: Jin Yao <yao.jin@linux.intel.com> Acked-by: Jiri Olsa <jolsa@kernel.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: Kan Liang <kan.liang@intel.com> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/1512482591-4646-10-git-send-email-yao.jin@linux.intel.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/tests')
-rw-r--r--tools/perf/tests/thread-map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/tests/thread-map.c b/tools/perf/tests/thread-map.c
index dbcb6a19b375..4de1939b58ba 100644
--- a/tools/perf/tests/thread-map.c
+++ b/tools/perf/tests/thread-map.c
@@ -105,7 +105,7 @@ int test__thread_map_remove(struct test *test __maybe_unused, int subtest __mayb
TEST_ASSERT_VAL("failed to allocate map string",
asprintf(&str, "%d,%d", getpid(), getppid()) >= 0);
- threads = thread_map__new_str(str, NULL, 0);
+ threads = thread_map__new_str(str, NULL, 0, false);
TEST_ASSERT_VAL("failed to allocate thread_map",
threads);