aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAhmad Sharif <asharif@chromium.org>2012-05-18 14:31:20 -0700
committerAhmad Sharif <asharif@chromium.org>2012-05-18 14:31:20 -0700
commit5cc48b578c136a3d9427de53284e4268e927a521 (patch)
tree36e219db1a1b340bd04886151542cb69c406ab60
parent5ae8a5c99e73be7f388f74551d5219cb676f8e41 (diff)
downloadtoolchain-utils-5cc48b578c136a3d9427de53284e4268e927a521.tar.gz
Synced repos to: 60597
-rw-r--r--crosperf/results_cache.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/crosperf/results_cache.py b/crosperf/results_cache.py
index 571a95b1..4c25321f 100644
--- a/crosperf/results_cache.py
+++ b/crosperf/results_cache.py
@@ -107,10 +107,14 @@ class Result(object):
perf_report_file)
command = ("/usr/sbin/perf report "
"--symfs /build/%s "
+ "--vmlinux /build/%s/usr/lib/debug/boot/vmlinux "
+ "--kallsyms /build/%s/boot/System.map-* "
"-i %s --stdio "
"| head -n1000 "
"| tee %s" %
(self._board,
+ self._board,
+ self._board,
chroot_perf_data_file,
chroot_perf_report_file))
ret, out, err = self._ce.ChrootRunCommand(self._chromeos_root,