Synced repos to: 60597
diff --git a/crosperf/results_cache.py b/crosperf/results_cache.py
index 571a95b..4c25321 100644
--- a/crosperf/results_cache.py
+++ b/crosperf/results_cache.py
@@ -107,10 +107,14 @@
                                                    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,