Date: Wed, 14 May 2025 00:51:45 GMT From: Mark Johnston <markj@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 735138131408 - main - vfs: Restore a require include Message-ID: <202505140051.54E0pjvA041409@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=73513813140871969fff1af3525aec6f314652aa commit 73513813140871969fff1af3525aec6f314652aa Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2025-05-14 00:43:42 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2025-05-14 00:49:09 +0000 vfs: Restore a require include BO_LOCK etc. require rwlock.h. For some reason this only manifested as a build failure for 32-bit powerpc. Reported by: Jenkins Fixes: aee6c83e06a8 ("vfs: Sort includes in vfs_vnops.c") --- sys/kern/vfs_vnops.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/kern/vfs_vnops.c b/sys/kern/vfs_vnops.c index 78888ec22e9a..696f5c11c8fc 100644 --- a/sys/kern/vfs_vnops.c +++ b/sys/kern/vfs_vnops.c @@ -62,6 +62,7 @@ #include <sys/priv.h> #include <sys/prng.h> #include <sys/proc.h> +#include <sys/rwlock.h> #include <sys/sleepqueue.h> #include <sys/stat.h> #include <sys/sysctl.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202505140051.54E0pjvA041409>