Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Oct 2024 03:09:05 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 5a0da3fb3827 - stable/14 - x86 specialreg: reorder %cr3 bits masks definitions by value
Message-ID:  <202410300309.49U395rP048739@gitrepo.freebsd.org>

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

URL: https://cgit.FreeBSD.org/src/commit/?id=5a0da3fb3827315b37fb5d9a88be505e0e5fd2b1

commit 5a0da3fb3827315b37fb5d9a88be505e0e5fd2b1
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2024-10-23 23:13:45 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2024-10-30 02:40:30 +0000

    x86 specialreg: reorder %cr3 bits masks definitions by value
    
    (cherry picked from commit cc4b25f10211fdd5a347a5a9fc26b2c86476db7f)
---
 sys/x86/include/specialreg.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/x86/include/specialreg.h b/sys/x86/include/specialreg.h
index d67112a3758b..a8ff7aa2b30d 100644
--- a/sys/x86/include/specialreg.h
+++ b/sys/x86/include/specialreg.h
@@ -53,8 +53,8 @@
 #define	CR0_NW  0x20000000	/* Not Write-through */
 #define	CR0_CD  0x40000000	/* Cache Disable */
 
-#define	CR3_PCID_SAVE 0x8000000000000000
-#define	CR3_PCID_MASK 0xfff
+#define	CR3_PCID_MASK	0x0000000000000fff
+#define	CR3_PCID_SAVE	0x8000000000000000
 
 /*
  * Bits in PPro special registers



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