diff options
author | Pedro Martelletto <pedro@cvs.openbsd.org> | 2005-12-06 20:18:58 +0000 |
---|---|---|
committer | Pedro Martelletto <pedro@cvs.openbsd.org> | 2005-12-06 20:18:58 +0000 |
commit | 4e376184e91e776fb4cba753cd78b3a10bd3658f (patch) | |
tree | ac4b0703bd855d3efaf6d28000ef4e98c4977792 /sys/kern/vfs_conf.c | |
parent | 51007cbcbcf55ded13128f1a9ec227007f716a21 (diff) |
Remove fdescfs
Diffstat (limited to 'sys/kern/vfs_conf.c')
-rw-r--r-- | sys/kern/vfs_conf.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c index 90b33ba92cf..3dfd0bbb179 100644 --- a/sys/kern/vfs_conf.c +++ b/sys/kern/vfs_conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_conf.c,v 1.28 2005/11/24 12:08:16 pedro Exp $ */ +/* $OpenBSD: vfs_conf.c,v 1.29 2005/12/06 20:18:57 pedro Exp $ */ /* $NetBSD: vfs_conf.c,v 1.21.4.1 1995/11/01 00:06:26 jtc Exp $ */ /* @@ -100,10 +100,6 @@ extern const struct vfsops msdosfs_vfsops; extern const struct vfsops nfs_vfsops; #endif -#ifdef FDESC -extern const struct vfsops fdesc_vfsops; -#endif - #ifdef PORTAL extern const struct vfsops portal_vfsops; #endif @@ -194,11 +190,6 @@ static struct vfsconf vfsconflist[] = { { &portal_vfsops, MOUNT_PORTAL, 8, 0, 0, NULL, NULL }, #endif - /* File Descriptor Filesystem */ -#ifdef FDESC - { &fdesc_vfsops, MOUNT_FDESC, 7, 0, 0, NULL, NULL }, -#endif - /* NTFS Filesystem */ #ifdef NTFS { &ntfs_vfsops, MOUNT_NTFS, 6, 0, MNT_LOCAL, NULL, NULL }, @@ -239,7 +230,6 @@ extern struct vnodeopv_desc spec_vnodeop_opv_desc; extern struct vnodeopv_desc nfsv2_vnodeop_opv_desc; extern struct vnodeopv_desc spec_nfsv2nodeop_opv_desc; extern struct vnodeopv_desc fifo_nfsv2nodeop_opv_desc; -extern struct vnodeopv_desc fdesc_vnodeop_opv_desc; extern struct vnodeopv_desc portal_vnodeop_opv_desc; extern struct vnodeopv_desc procfs_vnodeop_opv_desc; extern struct vnodeopv_desc cd9660_vnodeop_opv_desc; @@ -285,9 +275,6 @@ struct vnodeopv_desc *vfs_opv_descs[] = { &fifo_nfsv2nodeop_opv_desc, #endif #endif -#ifdef FDESC - &fdesc_vnodeop_opv_desc, -#endif #ifdef PORTAL &portal_vnodeop_opv_desc, #endif |