diff options
| author | Ryan Libby <rlibby@FreeBSD.org> | 2026-05-13 17:43:21 +0000 |
|---|---|---|
| committer | Ryan Libby <rlibby@FreeBSD.org> | 2026-05-13 17:43:21 +0000 |
| commit | e30e507a7737eb7cc2d2592a26171a2d5cf6c4f5 (patch) | |
| tree | 589c95ea8ddf3c5a4c5f435df0ffd0c520c15ca6 | |
| parent | 2a56cedac2e43c77e037e2d0c7e5af2ccb083c53 (diff) | |
vfs_bio: mark uma zone pointer __read_mostly
Reviewed by: kib, olce
Sponsored by: Dell Inc.
Differential Revision: https://reviews.freebsd.org/D56949
| -rw-r--r-- | sys/kern/vfs_bio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c index 181f2907c245..cb45ca7c75b7 100644 --- a/sys/kern/vfs_bio.c +++ b/sys/kern/vfs_bio.c @@ -405,7 +405,7 @@ struct bufqueue __exclusive_cache_line bqempty; /* * per-cpu empty buffer cache. */ -uma_zone_t buf_zone; +uma_zone_t __read_mostly buf_zone; static int sysctl_runningspace(SYSCTL_HANDLER_ARGS) |
