Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Nov 2023 20:54:47 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 7cb0bacf53f2 - stable/14 - arm: Update declarations for arm_dcache_align{,_mask}
Message-ID:  <202311162054.3AGKslhp054000@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=7cb0bacf53f2507394d8aa1fc3abbe3ca02f61cd

commit 7cb0bacf53f2507394d8aa1fc3abbe3ca02f61cd
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2023-11-02 16:23:51 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2023-11-16 15:07:27 +0000

    arm: Update declarations for arm_dcache_align{,_mask}
    
    Reported by:    Jenkins
    Fixes:          3d8f548b9e57 ("uma: Make the cache alignment mask unsigned")
    
    (cherry picked from commit 185aa8c9c3d7a01d616cfaafd492f61b37ed2551)
---
 sys/arm/include/cpufunc.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/arm/include/cpufunc.h b/sys/arm/include/cpufunc.h
index 0b54b59a7711..6562042dac0c 100644
--- a/sys/arm/include/cpufunc.h
+++ b/sys/arm/include/cpufunc.h
@@ -178,8 +178,8 @@ void cpu_reset		(void) __attribute__((__noreturn__));
  */
 
 /* PRIMARY CACHE VARIABLES */
-extern int	arm_dcache_align;
-extern int	arm_dcache_align_mask;
+extern unsigned int	arm_dcache_align;
+extern unsigned int	arm_dcache_align_mask;
 
 #else	/* !_KERNEL */
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202311162054.3AGKslhp054000>