aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManoj Gupta <manojgupta@google.com>2019-07-10 16:44:20 -0700
committerManoj Gupta <manojgupta@chromium.org>2019-07-10 23:49:46 +0000
commit4044dab9b197cb72281b540750e425180028897f (patch)
treecc972a347a346e3080f72c3647a30e98ae93fcfc
parentbea1af9feedd104dee407005a6ec6a59236715fc (diff)
downloadtoolchain-utils-4044dab9b197cb72281b540750e425180028897f.tar.gz
crosperf: Fix a typo in kernel kallsyms.
Replace a typo kernal by kernel. This otherwise breaks kernel cycles profiling. BUG=None TEST=unit tests pass Change-Id: I7cee1bd058c256262ca2758273a7309779a7a3c1 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/toolchain-utils/+/1696566 Commit-Queue: Manoj Gupta <manojgupta@chromium.org> Tested-by: Manoj Gupta <manojgupta@chromium.org> Reviewed-by: Zhizhou Yang <zhizhouy@google.com>
-rw-r--r--crosperf/results_cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/crosperf/results_cache.py b/crosperf/results_cache.py
index 1aa96e09..ab16e981 100644
--- a/crosperf/results_cache.py
+++ b/crosperf/results_cache.py
@@ -207,7 +207,7 @@ class Result(object):
elif self.cwp_dso == 'chrome':
exact_match = '" chrome "'
elif self.cwp_dso == 'kallsyms':
- exact_match = '"[kernal.kallsyms]"'
+ exact_match = '"[kernel.kallsyms]"'
else:
# This will need to be updated once there are more DSO types supported,
# if user want an exact match for the field they want.