summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_conf.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2007-06-01 05:37:15 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2007-06-01 05:37:15 +0000
commitec42e67e3ece7b764cc447806ce367beb91df444 (patch)
treea64b0f9ee3677762cbc5f1d7556548fbcd0b725c /sys/kern/vfs_conf.c
parent38941110e226cedb7c40f10d71f5f62cb24aa3c1 (diff)
remove crufty adosfs. everytime we try to change a vfs layer interface,
adosfs has the issue and in an entirely different way. noone uses this code so this is hte best way to handle the problem diff from pedro who went to sleep but we need to move ahead; ok thib
Diffstat (limited to 'sys/kern/vfs_conf.c')
-rw-r--r--sys/kern/vfs_conf.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c
index 49ef87809e5..2c011d3ee9a 100644
--- a/sys/kern/vfs_conf.c
+++ b/sys/kern/vfs_conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_conf.c,v 1.32 2007/05/08 20:26:19 deraadt Exp $ */
+/* $OpenBSD: vfs_conf.c,v 1.33 2007/06/01 05:37:14 deraadt Exp $ */
/* $NetBSD: vfs_conf.c,v 1.21.4.1 1995/11/01 00:06:26 jtc Exp $ */
/*
@@ -103,10 +103,6 @@ extern const struct vfsops procfs_vfsops;
extern const struct vfsops cd9660_vfsops;
#endif
-#ifdef ADOSFS
-extern const struct vfsops adosfs_vfsops;
-#endif
-
#ifdef EXT2FS
extern const struct vfsops ext2fs_vfsops;
#endif
@@ -151,11 +147,6 @@ static struct vfsconf vfsconflist[] = {
{ &msdosfs_vfsops, MOUNT_MSDOS, 4, 0, MNT_LOCAL, NULL, NULL },
#endif
- /* AmigaDOS Filesystem */
-#ifdef ADOSFS
- { &adosfs_vfsops, MOUNT_ADOSFS, 16, 0, MNT_LOCAL, NULL, NULL },
-#endif
-
/* Sun-compatible Network Filesystem */
#ifdef NFSCLIENT
{ &nfs_vfsops, MOUNT_NFS, 2, 0, 0, nfs_mountroot, NULL },
@@ -219,7 +210,6 @@ extern struct vnodeopv_desc cd9660_vnodeop_opv_desc;
extern struct vnodeopv_desc cd9660_specop_opv_desc;
extern struct vnodeopv_desc cd9660_fifoop_opv_desc;
extern struct vnodeopv_desc msdosfs_vnodeop_opv_desc;
-extern struct vnodeopv_desc adosfs_vnodeop_opv_desc;
extern struct vnodeopv_desc ext2fs_vnodeop_opv_desc;
extern struct vnodeopv_desc ext2fs_specop_opv_desc;
extern struct vnodeopv_desc ext2fs_fifoop_opv_desc;
@@ -267,9 +257,6 @@ struct vnodeopv_desc *vfs_opv_descs[] = {
#ifdef MSDOSFS
&msdosfs_vnodeop_opv_desc,
#endif
-#ifdef ADOSFS
- &adosfs_vnodeop_opv_desc,
-#endif
#ifdef EXT2FS
&ext2fs_vnodeop_opv_desc,
&ext2fs_specop_opv_desc,