projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
581fce3
)
arm64: Add missing sentinel to erratum_1463225
author
Florian Fainelli
<f.fainelli@gmail.com>
Thu, 9 Jul 2020 05:13:40 +0000
(22:13 -0700)
committer
Will Deacon
<will@kernel.org>
Thu, 9 Jul 2020 08:42:24 +0000
(09:42 +0100)
When the erratum_1463225 array was introduced a sentinel at the end was
missing thus causing a KASAN: global-out-of-bounds in
is_affected_midr_range_list on arm64 error.
Fixes: a9e821b89daa ("arm64: Add KRYO4XX gold CPU cores to erratum list 1463225 and 1418040")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org>
Link:
https://lore.kernel.org/linux-arm-kernel/CA+G9fYs3EavpU89-rTQfqQ9GgxAMgMAk7jiiVrfP0yxj5s+Q6g@mail.gmail.com/
Link:
https://lore.kernel.org/r/20200709051345.14544-1-f.fainelli@gmail.com
Signed-off-by: Will Deacon <will@kernel.org>
arch/arm64/kernel/cpu_errata.c
patch
|
blob
|
history
diff --git
a/arch/arm64/kernel/cpu_errata.c
b/arch/arm64/kernel/cpu_errata.c
index 8e302dc093d09ec5c8a257c53efa76194ffa3ea0..79728bfb5351ffd9cdf258ab9c1c366b0cac3e0f 100644
(file)
--- a/
arch/arm64/kernel/cpu_errata.c
+++ b/
arch/arm64/kernel/cpu_errata.c
@@
-782,6
+782,7
@@
static const struct midr_range erratum_1463225[] = {
MIDR_RANGE(MIDR_CORTEX_A76, 0, 0, 3, 1),
/* Kryo4xx Gold (rcpe to rfpf) => (r0p0 to r3p1) */
MIDR_RANGE(MIDR_QCOM_KRYO_4XX_GOLD, 0xc, 0xe, 0xf, 0xf),
+ {},
};
#endif