From e30e507a7737eb7cc2d2592a26171a2d5cf6c4f5 Mon Sep 17 00:00:00 2001 From: Ryan Libby Date: Wed, 13 May 2026 10:43:21 -0700 Subject: [PATCH] vfs_bio: mark uma zone pointer __read_mostly Reviewed by: kib, olce Sponsored by: Dell Inc. Differential Revision: https://reviews.freebsd.org/D56949 --- sys/kern/vfs_bio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c index 181f2907c24..cb45ca7c75b 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)