diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2008-05-08 17:45:46 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2008-05-08 17:45:46 +0000 |
commit | b3fe4a82b9c59193788f636ef8321ca582f7c456 (patch) | |
tree | 104aa0b409788809a80a585feae3138637223309 /sys/kern/vfs_init.c | |
parent | c663795752232f934b1f838e28540feceaf5f23e (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.c | 14 |
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. |