summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_init.c
diff options
context:
space:
mode:
authorThordur I. Bjornsson <thib@cvs.openbsd.org>2008-05-08 17:45:46 +0000
committerThordur I. Bjornsson <thib@cvs.openbsd.org>2008-05-08 17:45:46 +0000
commitb3fe4a82b9c59193788f636ef8321ca582f7c456 (patch)
tree104aa0b409788809a80a585feae3138637223309 /sys/kern/vfs_init.c
parentc663795752232f934b1f838e28540feceaf5f23e (diff)
retire vn_default_error() and replace all instances
with eopnotsupp() instead; ok blambert@
Diffstat (limited to 'sys/kern/vfs_init.c')
-rw-r--r--sys/kern/vfs_init.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/sys/kern/vfs_init.c b/sys/kern/vfs_init.c
index 4b13438a0d4..6eaceb58cc8 100644
--- a/sys/kern/vfs_init.c
+++ b/sys/kern/vfs_init.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_init.c,v 1.20 2007/09/07 15:00:20 art Exp $ */
+/* $OpenBSD: vfs_init.c,v 1.21 2008/05/08 17:45:45 thib Exp $ */
/* $NetBSD: vfs_init.c,v 1.6 1996/02/09 19:00:58 christos Exp $ */
/*
@@ -74,18 +74,6 @@ int vfs_opv_numops;
typedef int (*PFI)(void *);
/*
- * A miscellaneous routine.
- * A generic "default" routine that just returns an error.
- */
-/*ARGSUSED*/
-int
-vn_default_error(void *v)
-{
-
- return (EOPNOTSUPP);
-}
-
-/*
* vfs_init.c
*
* Allocate and fill in operations vectors.