git: 59ddbef26238 - main - arm64: Add padding to struct mdproc
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 04 Sep 2025 14:00:04 UTC
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 */