Module Name:    src
Committed By:   riastradh
Date:           Sat Apr 29 10:07:13 UTC 2023

Modified Files:
        src/sys/kern: vfs_init.c

Log Message:
kern/vfs_init.c: Sort includes.  No functional change intended.


To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 src/sys/kern/vfs_init.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/kern/vfs_init.c
diff -u src/sys/kern/vfs_init.c:1.59 src/sys/kern/vfs_init.c:1.60
--- src/sys/kern/vfs_init.c:1.59	Fri Nov 18 00:10:03 2022
+++ src/sys/kern/vfs_init.c	Sat Apr 29 10:07:13 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: vfs_init.c,v 1.59 2022/11/18 00:10:03 riastradh Exp $	*/
+/*	$NetBSD: vfs_init.c,v 1.60 2023/04/29 10:07:13 riastradh Exp $	*/
 
 /*-
  * Copyright (c) 1998, 2000, 2008 The NetBSD Foundation, Inc.
@@ -67,23 +67,25 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_init.c,v 1.59 2022/11/18 00:10:03 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_init.c,v 1.60 2023/04/29 10:07:13 riastradh Exp $");
 
 #include <sys/param.h>
-#include <sys/mount.h>
-#include <sys/time.h>
-#include <sys/vnode.h>
-#include <sys/stat.h>
-#include <sys/namei.h>
-#include <sys/ucred.h>
+#include <sys/types.h>
+
 #include <sys/buf.h>
+#include <sys/dirhash.h>
 #include <sys/errno.h>
+#include <sys/kauth.h>
 #include <sys/kmem.h>
-#include <sys/systm.h>
 #include <sys/module.h>
-#include <sys/dirhash.h>
+#include <sys/mount.h>
+#include <sys/namei.h>
+#include <sys/stat.h>
 #include <sys/sysctl.h>
-#include <sys/kauth.h>
+#include <sys/systm.h>
+#include <sys/time.h>
+#include <sys/ucred.h>
+#include <sys/vnode.h>
 
 #include <miscfs/deadfs/deadfs.h>
 #include <miscfs/fifofs/fifo.h>

Reply via email to