diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-02-24 02:17:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-02-24 02:17:23 +0000 |
commit | d21cf289e8a11e241c843eb635ea02322717c62e (patch) | |
tree | c729eb6431504bd1f769b3b11b3b828245320ed3 | |
parent | 8b07ca29448745bf8e6aab3e47987ea48c0e4863 (diff) |
bye bye tcfs
-rw-r--r-- | sys/kern/vfs_conf.c | 13 | ||||
-rw-r--r-- | sys/sys/mount.h | 3 | ||||
-rw-r--r-- | sys/sys/vnode.h | 4 |
3 files changed, 4 insertions, 16 deletions
diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c index 96c7a45c921..6a9c0f23ede 100644 --- a/sys/kern/vfs_conf.c +++ b/sys/kern/vfs_conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_conf.c,v 1.15 2000/06/17 17:16:05 provos Exp $ */ +/* $OpenBSD: vfs_conf.c,v 1.16 2003/02/24 02:17:22 deraadt Exp $ */ /* $NetBSD: vfs_conf.c,v 1.21.4.1 1995/11/01 00:06:26 jtc Exp $ */ /* @@ -151,10 +151,6 @@ extern struct vfsops ext2fs_vfsops; extern struct vfsops xfs_vfsops; #endif -#ifdef TCFS -extern struct vfsops tcfs_vfsops; -#endif - /* * Set up the filesystem operations for vnodes. */ @@ -243,10 +239,6 @@ static struct vfsconf vfsconflist[] = { { &kernfs_vfsops, MOUNT_KERNFS, 11, 0, 0, NULL, NULL }, #endif -#ifdef TCFS - { &tcfs_vfsops, MOUNT_TCFS, 22, 0, 0, NULL, NULL }, -#endif - }; @@ -370,9 +362,6 @@ struct vnodeopv_desc *vfs_opv_descs[] = { #ifdef XFS &xfs_vnodeop_opv_desc, #endif -#ifdef TCFS - &tcfs_vnodeop_opv_desc, -#endif NULL }; diff --git a/sys/sys/mount.h b/sys/sys/mount.h index ccb07578bcd..be6632b1935 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.h,v 1.48 2002/07/12 14:02:23 art Exp $ */ +/* $OpenBSD: mount.h,v 1.49 2003/02/24 02:17:22 deraadt Exp $ */ /* $NetBSD: mount.h,v 1.48 1996/02/18 11:55:47 fvdl Exp $ */ /* @@ -320,7 +320,6 @@ struct ostatfs { #define MOUNT_EXT2FS "ext2fs" /* Second Extended Filesystem */ #define MOUNT_NCPFS "ncpfs" /* NetWare Network File System */ #define MOUNT_XFS "xfs" /* xfs */ -#define MOUNT_TCFS "tcfs" /* tcfs */ /* * Structure per mounted file system. Each mounted file system has an diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index cd98ccaedef..df1d61151b4 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vnode.h,v 1.51 2002/07/03 21:19:08 miod Exp $ */ +/* $OpenBSD: vnode.h,v 1.52 2003/02/24 02:17:22 deraadt Exp $ */ /* $NetBSD: vnode.h,v 1.38 1996/02/29 20:59:05 cgd Exp $ */ /* @@ -69,7 +69,7 @@ enum vtype { VNON, VREG, VDIR, VBLK, VCHR, VLNK, VSOCK, VFIFO, VBAD }; enum vtagtype { VT_NON, VT_UFS, VT_NFS, VT_MFS, VT_MSDOSFS, VT_LFS, VT_LOFS, VT_FDESC, VT_PORTAL, VT_NULL, VT_UMAP, VT_KERNFS, VT_PROCFS, VT_AFS, VT_ISOFS, - VT_UNION, VT_ADOSFS, VT_EXT2FS, VT_NCPFS, VT_VFS, VT_XFS, VT_TCFS + VT_UNION, VT_ADOSFS, VT_EXT2FS, VT_NCPFS, VT_VFS, VT_XFS }; /* |