aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/tests/code-reading.c
diff options
context:
space:
mode:
authorKan Liang <kan.liang@intel.com>2015-06-17 09:51:11 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-06-19 17:27:13 -0400
commit9d9cad763ca79dd3697e9f2d1df648e37496582b (patch)
treef59dd3c9d866c2fa8aa85b90c1eac83bf4f515a9 /tools/perf/tests/code-reading.c
parent930e6fcd2bcce9bcd9d4aa7e755678d33f3fe6f4 (diff)
perf tools: Configurable per thread proc map processing time out
The time out to limit the individual proc map processing was hard code to 500ms. This patch introduce a new option --proc-map-timeout to make the time limit configurable. Signed-off-by: Kan Liang <kan.liang@intel.com> Cc: Andi Kleen <andi@firstfloor.org> Cc: David Ahern <dsahern@gmail.com> Cc: Ying Huang <ying.huang@intel.com> Link: http://lkml.kernel.org/r/1434549071-25611-2-git-send-email-kan.liang@intel.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/tests/code-reading.c')
-rw-r--r--tools/perf/tests/code-reading.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/tests/code-reading.c b/tools/perf/tests/code-reading.c
index e2a432b67d52..22f8a00446e1 100644
--- a/tools/perf/tests/code-reading.c
+++ b/tools/perf/tests/code-reading.c
@@ -451,7 +451,7 @@ static int do_test_code_reading(bool try_kcore)
451 } 451 }
452 452
453 ret = perf_event__synthesize_thread_map(NULL, threads, 453 ret = perf_event__synthesize_thread_map(NULL, threads,
454 perf_event__process, machine, false); 454 perf_event__process, machine, false, 500);
455 if (ret < 0) { 455 if (ret < 0) {
456 pr_debug("perf_event__synthesize_thread_map failed\n"); 456 pr_debug("perf_event__synthesize_thread_map failed\n");
457 goto out_err; 457 goto out_err;