Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Sep 2025 14:00:04 GMT
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 59ddbef26238 - main - arm64: Add padding to struct mdproc
Message-ID:  <202509041400.584E04fB054625@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by andrew:

URL: https://cgit.FreeBSD.org/src/commit/?id=59ddbef262388db4f36e1e1a34039d079ecdc833

commit 59ddbef262388db4f36e1e1a34039d079ecdc833
Author:     Andrew Turner <andrew@FreeBSD.org>
AuthorDate: 2025-09-04 13:36:45 +0000
Commit:     Andrew Turner <andrew@FreeBSD.org>
CommitDate: 2025-09-04 13:55:05 +0000

    arm64: Add padding to struct mdproc
    
    To allow for possible future use add reserved fields to struct mdproc.
    
    Sponsored by:   Arm Ltd
---
 sys/arm64/include/proc.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/arm64/include/proc.h b/sys/arm64/include/proc.h
index 184743d4cc80..b40990e89385 100644
--- a/sys/arm64/include/proc.h
+++ b/sys/arm64/include/proc.h
@@ -75,6 +75,7 @@ struct mdthread {
 
 struct mdproc {
 	uint64_t md_tcr;		/* TCR_EL1 fields to update */
+	uint64_t md_reserved[2];
 };
 #endif /* !LOCORE */
 



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