aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2025-09-04 13:36:45 +0000
committerAndrew Turner <andrew@FreeBSD.org>2025-09-04 13:55:05 +0000
commit59ddbef262388db4f36e1e1a34039d079ecdc833 (patch)
tree6b7378cf9de1b95b316dc3abc0373ad8b6211a24
parentb21629dfcaf008923d03d7ff15c9d6828eeb95f8 (diff)
arm64: Add padding to struct mdproc
To allow for possible future use add reserved fields to struct mdproc. Sponsored by: Arm Ltd
-rw-r--r--sys/arm64/include/proc.h1
1 files changed, 1 insertions, 0 deletions
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 */