git: 6930f97474e4 - stable/13 - arm32: Align arguments of sync_icache() syscall to cacheline size.

Michal Meloun mmel at FreeBSD.org
Thu Feb 11 15:08:50 UTC 2021


The branch stable/13 has been updated by mmel:

URL: https://cgit.FreeBSD.org/src/commit/?id=6930f97474e409808ca5e220c2b3a86805f786b8

commit 6930f97474e409808ca5e220c2b3a86805f786b8
Author:     Michal Meloun <mmel at FreeBSD.org>
AuthorDate: 2021-02-09 10:36:36 +0000
Commit:     Michal Meloun <mmel at FreeBSD.org>
CommitDate: 2021-02-11 15:08:21 +0000

    arm32: Align arguments of sync_icache() syscall to cacheline size.
    
    Otherwise, we may miss synchronization of the last cacheline.
    MFC after:      3 days
    
    (cherry picked from commit ec090f4a67654fa541e6d97fd5f74d3f66c1c0d0)
---
 sys/arm/arm/sys_machdep.c | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/sys/arm/arm/sys_machdep.c b/sys/arm/arm/sys_machdep.c
index d33ac75ad73b..fc424d0fad39 100644
--- a/sys/arm/arm/sys_machdep.c
+++ b/sys/arm/arm/sys_machdep.c
@@ -68,12 +68,9 @@ sync_icache(uintptr_t addr, size_t len)
 	size_t size;
 	vm_offset_t rv;
 
-	/*
-	 * Align starting address to even number because value of "1"
-	 * is used as return value for success.
-	 */
-	len += addr & 1;
-	addr &= ~1;
+	 /* Align starting address to cacheline size */
+	len += addr & cpuinfo.dcache_line_mask;
+	addr &= ~cpuinfo.dcache_line_mask;
 
 	/* Break whole range to pages. */
 	do {


More information about the dev-commits-src-all mailing list