Date: Fri, 20 Jan 2023 03:23:50 GMT From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: da5871423955 - stable/13 - ffs_suspend.c: clean up includes Message-ID: <202301200323.30K3NoU3042715@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=da5871423955e5313cac01e3d6c1f47876e18411 commit da5871423955e5313cac01e3d6c1f47876e18411 Author: Konstantin Belousov <kib@FreeBSD.org> AuthorDate: 2022-12-28 18:17:53 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2023-01-20 03:21:30 +0000 ffs_suspend.c: clean up includes Tested by: pho (cherry picked from commit 68912701700ca3230f3e2d4b7858a038f884a327) --- sys/ufs/ffs/ffs_suspend.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sys/ufs/ffs/ffs_suspend.c b/sys/ufs/ffs/ffs_suspend.c index d13097109758..e7c976b6e921 100644 --- a/sys/ufs/ffs/ffs_suspend.c +++ b/sys/ufs/ffs/ffs_suspend.c @@ -33,15 +33,14 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); -#include <sys/param.h> #include <sys/systm.h> #include <sys/buf.h> -#include <sys/ioccom.h> -#include <sys/mount.h> -#include <sys/vnode.h> #include <sys/conf.h> +#include <sys/ioccom.h> #include <sys/jail.h> +#include <sys/mount.h> #include <sys/sx.h> +#include <sys/vnode.h> #include <security/mac/mac_framework.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202301200323.30K3NoU3042715>