diff options
author | Mark Murray <markm@FreeBSD.org> | 2001-05-01 08:13:21 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 2001-05-01 08:13:21 +0000 |
commit | fb919e4d5a2c1baca52ac70d1064f140fffdda71 (patch) | |
tree | 62c0461c4eb61081648eebf963146193ebdc7398 /sys/nfs/nfs_node.c | |
parent | 8904de15a20f7c5372ec763d2b637b0997485466 (diff) |
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)
Notes
Notes:
svn path=/head/; revision=76166
Diffstat (limited to 'sys/nfs/nfs_node.c')
-rw-r--r-- | sys/nfs/nfs_node.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/nfs/nfs_node.c b/sys/nfs/nfs_node.c index 0191b664a813..dc21bc35eaeb 100644 --- a/sys/nfs/nfs_node.c +++ b/sys/nfs/nfs_node.c @@ -40,12 +40,15 @@ #include <sys/param.h> #include <sys/systm.h> +#include <sys/fnv_hash.h> +#include <sys/lock.h> +#include <sys/malloc.h> #include <sys/mount.h> #include <sys/namei.h> -#include <sys/vnode.h> -#include <sys/malloc.h> -#include <sys/fnv_hash.h> +#include <sys/proc.h> +#include <sys/socket.h> #include <sys/sysctl.h> +#include <sys/vnode.h> #include <vm/vm_zone.h> |