diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-07-04 20:35:36 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-07-04 20:35:36 +0000 |
commit | dcbf20f66fb414a09cad90c98f477ca3881f1bb8 (patch) | |
tree | 6be8ce2adac21165dfc48ee4b31256bf24665088 /sys/ufs/ext2fs | |
parent | 1ab5aa432da05705598d34b699d62a502ea36734 (diff) |
move the specfs code to a place people can see it; ok guenther thib krw
Diffstat (limited to 'sys/ufs/ext2fs')
-rw-r--r-- | sys/ufs/ext2fs/ext2fs_bmap.c | 5 | ||||
-rw-r--r-- | sys/ufs/ext2fs/ext2fs_subr.c | 4 | ||||
-rw-r--r-- | sys/ufs/ext2fs/ext2fs_vfsops.c | 5 | ||||
-rw-r--r-- | sys/ufs/ext2fs/ext2fs_vnops.c | 4 |
4 files changed, 8 insertions, 10 deletions
diff --git a/sys/ufs/ext2fs/ext2fs_bmap.c b/sys/ufs/ext2fs/ext2fs_bmap.c index 2d87ee895f4..f685d496984 100644 --- a/sys/ufs/ext2fs/ext2fs_bmap.c +++ b/sys/ufs/ext2fs/ext2fs_bmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ext2fs_bmap.c,v 1.18 2008/06/12 06:58:40 deraadt Exp $ */ +/* $OpenBSD: ext2fs_bmap.c,v 1.19 2011/07/04 20:35:35 deraadt Exp $ */ /* $NetBSD: ext2fs_bmap.c,v 1.5 2000/03/30 12:41:11 augustss Exp $ */ /* @@ -46,8 +46,7 @@ #include <sys/vnode.h> #include <sys/mount.h> #include <sys/resourcevar.h> - -#include <miscfs/specfs/specdev.h> +#include <sys/specdev.h> #include <ufs/ufs/quota.h> #include <ufs/ufs/inode.h> diff --git a/sys/ufs/ext2fs/ext2fs_subr.c b/sys/ufs/ext2fs/ext2fs_subr.c index 8878644ad64..eabec5a499f 100644 --- a/sys/ufs/ext2fs/ext2fs_subr.c +++ b/sys/ufs/ext2fs/ext2fs_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ext2fs_subr.c,v 1.26 2011/07/04 04:30:41 tedu Exp $ */ +/* $OpenBSD: ext2fs_subr.c,v 1.27 2011/07/04 20:35:35 deraadt Exp $ */ /* $NetBSD: ext2fs_subr.c,v 1.1 1997/06/11 09:34:03 bouyer Exp $ */ /* @@ -39,6 +39,7 @@ #include <sys/vnode.h> #include <sys/mount.h> #include <sys/buf.h> +#include <sys/specdev.h> #include <ufs/ufs/quota.h> #include <ufs/ufs/inode.h> @@ -47,7 +48,6 @@ #include <ufs/ext2fs/ext2fs.h> #include <ufs/ext2fs/ext2fs_extern.h> -#include <miscfs/specfs/specdev.h> #include <miscfs/fifofs/fifo.h> union _qcvt { diff --git a/sys/ufs/ext2fs/ext2fs_vfsops.c b/sys/ufs/ext2fs/ext2fs_vfsops.c index 356976e3715..a3f618ce44a 100644 --- a/sys/ufs/ext2fs/ext2fs_vfsops.c +++ b/sys/ufs/ext2fs/ext2fs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ext2fs_vfsops.c,v 1.63 2011/07/04 04:30:41 tedu Exp $ */ +/* $OpenBSD: ext2fs_vfsops.c,v 1.64 2011/07/04 20:35:35 deraadt Exp $ */ /* $NetBSD: ext2fs_vfsops.c,v 1.1 1997/06/11 09:34:07 bouyer Exp $ */ /* @@ -54,8 +54,7 @@ #include <sys/pool.h> #include <sys/lock.h> #include <sys/dkio.h> - -#include <miscfs/specfs/specdev.h> +#include <sys/specdev.h> #include <ufs/ufs/quota.h> #include <ufs/ufs/ufsmount.h> diff --git a/sys/ufs/ext2fs/ext2fs_vnops.c b/sys/ufs/ext2fs/ext2fs_vnops.c index 9a4c310ea45..c320d7c7096 100644 --- a/sys/ufs/ext2fs/ext2fs_vnops.c +++ b/sys/ufs/ext2fs/ext2fs_vnops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ext2fs_vnops.c,v 1.60 2011/07/03 18:23:10 tedu Exp $ */ +/* $OpenBSD: ext2fs_vnops.c,v 1.61 2011/07/04 20:35:35 deraadt Exp $ */ /* $NetBSD: ext2fs_vnops.c,v 1.1 1997/06/11 09:34:09 bouyer Exp $ */ /* @@ -55,11 +55,11 @@ #include <sys/malloc.h> #include <sys/pool.h> #include <sys/signalvar.h> +#include <sys/specdev.h> #include <uvm/uvm_extern.h> #include <miscfs/fifofs/fifo.h> -#include <miscfs/specfs/specdev.h> #include <ufs/ufs/quota.h> #include <ufs/ufs/inode.h> |