git: e11b2b69c5a1 - main - ffs_alloc.c: order includes alphabetically
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 01 Feb 2022 04:55:08 UTC
The branch main has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=e11b2b69c5a1d1463720f140e58f9c012cb1b83b
commit e11b2b69c5a1d1463720f140e58f9c012cb1b83b
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2022-01-28 04:36:50 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2022-02-01 04:54:50 +0000
ffs_alloc.c: order includes alphabetically
Reviewed by: mckusick
Discussed with: markj
Tested by: pho
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Differential revision: https://reviews.freebsd.org/D34073
---
sys/ufs/ffs/ffs_alloc.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/sys/ufs/ffs/ffs_alloc.c b/sys/ufs/ffs/ffs_alloc.c
index 42708e3dce71..13c508fde646 100644
--- a/sys/ufs/ffs/ffs_alloc.c
+++ b/sys/ufs/ffs/ffs_alloc.c
@@ -67,24 +67,24 @@ __FBSDID("$FreeBSD$");
#include "opt_quota.h"
#include <sys/param.h>
-#include <sys/capsicum.h>
-#include <sys/gsb_crc32.h>
#include <sys/systm.h>
#include <sys/bio.h>
#include <sys/buf.h>
+#include <sys/capsicum.h>
#include <sys/conf.h>
#include <sys/fcntl.h>
#include <sys/file.h>
#include <sys/filedesc.h>
+#include <sys/gsb_crc32.h>
+#include <sys/kernel.h>
+#include <sys/mount.h>
#include <sys/priv.h>
#include <sys/proc.h>
-#include <sys/vnode.h>
-#include <sys/mount.h>
-#include <sys/kernel.h>
#include <sys/syscallsubr.h>
#include <sys/sysctl.h>
#include <sys/syslog.h>
#include <sys/taskqueue.h>
+#include <sys/vnode.h>
#include <security/audit/audit.h>