From bcca5847d5e7a197302d7689cd358f5ce6316d0a Mon Sep 17 00:00:00 2001 From: markm Date: Tue, 1 May 2001 08:13:21 +0000 Subject: Undo part of the tangle of having sys/lock.h and sys/mutex.h included in other "system" header files. Also help the deprecation of lockmgr.h by making it a sub-include of sys/lock.h and removing sys/lockmgr.h form kernel .c files. Sort sys/*.h includes where possible in affected files. OK'ed by: bde (with reservations) --- sys/kern/vfs_mount.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'sys/kern/vfs_mount.c') diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c index 34fba78..e651ef0 100644 --- a/sys/kern/vfs_mount.c +++ b/sys/kern/vfs_mount.c @@ -45,8 +45,10 @@ #include "opt_rootdevname.h" #include -#include #include +#include +#include +#include #include #include #include @@ -55,13 +57,16 @@ #include #include #include -#include +#include #include "opt_ddb.h" + #ifdef DDB #include #endif +#include + MALLOC_DEFINE(M_MOUNT, "mount", "vfs mount structure"); #define ROOTNAME "root_device" -- cgit v1.1