Date: Tue, 13 May 2025 23:33:41 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: aee6c83e06a8 - main - vfs: Sort includes in vfs_vnops.c Message-ID: <202505132333.54DNXfJZ095073@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=aee6c83e06a807caf1ebb48d3ddb8df68a5f2bfe commit aee6c83e06a807caf1ebb48d3ddb8df68a5f2bfe Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2025-05-13 23:26:14 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2025-05-13 23:27:13 +0000 vfs: Sort includes in vfs_vnops.c Remove some that are not needed. No functional change intended. Reviewed by: olce, kib MFC after: 1 week Sponsored by: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D50316 --- sys/kern/vfs_vnops.c | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/sys/kern/vfs_vnops.c b/sys/kern/vfs_vnops.c index eaa1d298bdc6..78888ec22e9a 100644 --- a/sys/kern/vfs_vnops.c +++ b/sys/kern/vfs_vnops.c @@ -40,43 +40,34 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> #include "opt_hwpmc_hooks.h" #include <sys/param.h> #include <sys/systm.h> +#include <sys/buf.h> #include <sys/disk.h> +#include <sys/dirent.h> #include <sys/fail.h> #include <sys/fcntl.h> #include <sys/file.h> -#include <sys/kdb.h> +#include <sys/filio.h> #include <sys/ktr.h> -#include <sys/stat.h> -#include <sys/priv.h> -#include <sys/proc.h> +#include <sys/ktrace.h> #include <sys/limits.h> #include <sys/lock.h> #include <sys/mman.h> #include <sys/mount.h> #include <sys/mutex.h> #include <sys/namei.h> -#include <sys/vnode.h> -#include <sys/dirent.h> -#include <sys/bio.h> -#include <sys/buf.h> -#include <sys/filio.h> -#include <sys/resourcevar.h> -#include <sys/rwlock.h> +#include <sys/priv.h> #include <sys/prng.h> -#include <sys/sx.h> +#include <sys/proc.h> #include <sys/sleepqueue.h> +#include <sys/stat.h> #include <sys/sysctl.h> -#include <sys/ttycom.h> -#include <sys/conf.h> -#include <sys/syslog.h> #include <sys/unistd.h> #include <sys/user.h> -#include <sys/ktrace.h> +#include <sys/vnode.h> #include <security/audit/audit.h> #include <security/mac/mac_framework.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202505132333.54DNXfJZ095073>