git: fad79db40505 - main - vm_pageout: Remove a volatile qualifier from some vm_domain members
Date: Tue, 15 Jul 2025 15:19:04 UTC
The branch main has been updated by markj:
URL: https://cgit.FreeBSD.org/src/commit/?id=fad79db405052f3faad7184ea2c8bfe9f92a700d
commit fad79db405052f3faad7184ea2c8bfe9f92a700d
Author: Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2025-07-15 15:16:40 +0000
Commit: Mark Johnston <markj@FreeBSD.org>
CommitDate: 2025-07-15 15:16:40 +0000
vm_pageout: Remove a volatile qualifier from some vm_domain members
These are always accessed using atomic(9) intrinsics, so do not need the
qualifier. No functional change intended.
Reviewed by: alc, kib
MFC after: 2 weeks
Sponsored by: Modirum MDPay
Sponsored by: Klara, Inc.
Differential Revision: https://reviews.freebsd.org/D51322
---
sys/vm/vm_pagequeue.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sys/vm/vm_pagequeue.h b/sys/vm/vm_pagequeue.h
index cbbd27389662..9bd3b389fb60 100644
--- a/sys/vm/vm_pagequeue.h
+++ b/sys/vm/vm_pagequeue.h
@@ -260,9 +260,9 @@ struct vm_domain {
u_int vmd_inactive_shortage; /* Per-thread shortage. */
blockcount_t vmd_inactive_running; /* Number of inactive threads. */
blockcount_t vmd_inactive_starting; /* Number of threads started. */
- volatile u_int vmd_addl_shortage; /* Shortage accumulator. */
- volatile u_int vmd_inactive_freed; /* Successful inactive frees. */
- volatile u_int vmd_inactive_us; /* Microseconds for above. */
+ u_int vmd_addl_shortage; /* (a) Shortage accumulator. */
+ u_int vmd_inactive_freed; /* (a) Successful inactive frees. */
+ u_int vmd_inactive_us; /* (a) Microseconds for above. */
u_int vmd_inactive_pps; /* Exponential decay frees/second. */
int vmd_oom_seq;
int vmd_last_active_scan;