git: 8eda23d822eb - stable/13 - arm64: Add a missing MRS_HWCAP_END
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 19 Feb 2024 16:44:57 UTC
The branch stable/13 has been updated by andrew:
URL: https://cgit.FreeBSD.org/src/commit/?id=8eda23d822eb63ed35b76478530bfa286eb06686
commit 8eda23d822eb63ed35b76478530bfa286eb06686
Author: Andrew Turner <andrew@FreeBSD.org>
AuthorDate: 2023-10-25 12:32:04 +0000
Commit: Andrew Turner <andrew@FreeBSD.org>
CommitDate: 2024-02-19 12:41:24 +0000
arm64: Add a missing MRS_HWCAP_END
Add a missing end marker to stop the arm64 CPU ID code reading past
the end of an array.
Sponsored by: Arm Ltd
(cherry picked from commit 1e05cf5f97dee6d7139aa64f14264fb4c2333455)
---
sys/arm64/arm64/identcpu.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys/arm64/arm64/identcpu.c b/sys/arm64/arm64/identcpu.c
index ebd1abb67dcb..60c40c84f965 100644
--- a/sys/arm64/arm64/identcpu.c
+++ b/sys/arm64/arm64/identcpu.c
@@ -1617,6 +1617,7 @@ static const struct mrs_field_value mvfr0_fpdp[] = {
static const struct mrs_field_hwcap mvfr0_fpdp_caps[] = {
MRS_HWCAP(&elf32_hwcap, HWCAP32_VFP, MVFR0_FPDP_VFP_v2),
MRS_HWCAP(&elf32_hwcap, HWCAP32_VFPv3, MVFR0_FPDP_VFP_v3_v4),
+ MRS_HWCAP_END
};
static const struct mrs_field_value mvfr0_fpsp[] = {