diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 1998-09-06 01:48:59 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 1998-09-06 01:48:59 +0000 |
commit | d26c937ecb3896ff85d968b4abb1cd16a3e39f7e (patch) | |
tree | 410b54ee363426317304c37ae011a9fe8b7f8096 /sys/xfs/xfs_vfsops.c | |
parent | fb090325ce4af869fe7c650047c28a23cf1867ef (diff) |
* reorganize some includes
* start using the VT_XFS tag on vnodes
* be more paranoid about closed channel when going to sleep.
Diffstat (limited to 'sys/xfs/xfs_vfsops.c')
-rw-r--r-- | sys/xfs/xfs_vfsops.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/sys/xfs/xfs_vfsops.c b/sys/xfs/xfs_vfsops.c index 55d9c59ec5f..22874d6430e 100644 --- a/sys/xfs/xfs_vfsops.c +++ b/sys/xfs/xfs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xfs_vfsops.c,v 1.2 1998/08/31 05:13:19 art Exp $ */ +/* $OpenBSD: xfs_vfsops.c,v 1.3 1998/09/06 01:48:58 art Exp $ */ /* * Copyright (c) 1995, 1996, 1997, 1998 Kungliga Tekniska Högskolan * (Royal Institute of Technology, Stockholm, Sweden). @@ -45,8 +45,13 @@ #include <sys/namei.h> #include <sys/conf.h> #include <sys/proc.h> +#include <sys/vnode.h> #include <xfs/xfs_common.h> +#include <xfs/xfs_message.h> +#include <xfs/xfs_dev.h> +#include <xfs/xfs_fs.h> +#include <xfs/xfs_deb.h> RCSID("$KTH: xfs_vfsops.c,v 1.22 1998/08/13 01:38:49 art Exp $"); @@ -54,12 +59,6 @@ RCSID("$KTH: xfs_vfsops.c,v 1.22 1998/08/13 01:38:49 art Exp $"); * XFS vfs operations. */ -#include <xfs/xfs_common.h> -#include <xfs/xfs_message.h> -#include <xfs/xfs_dev.h> -#include <xfs/xfs_fs.h> -#include <xfs/xfs_deb.h> - static struct vnode *make_dead_vnode(struct mount *mp); struct xfs xfs[NXFS]; |