diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-09-19 00:53:14 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-09-19 00:53:14 +0000 |
commit | b9265b0b2ad7db218ca33b4816c298c9c70d454d (patch) | |
tree | 086fafc97289d09c8f972dc3fcdb215890212f4c /sys | |
parent | c302545c133fb73348345fcbf5dfcc6aeec98c11 (diff) |
vhold() and vdrop() are prototyped in vnode.h, so don't repeat them here
ok beck@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/vfs_subr.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index 25a5dbf2e4e..6ed94c45ab0 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_subr.c,v 1.197 2012/07/16 15:31:17 deraadt Exp $ */ +/* $OpenBSD: vfs_subr.c,v 1.198 2012/09/19 00:53:13 guenther Exp $ */ /* $NetBSD: vfs_subr.c,v 1.53 1996/04/22 01:39:13 christos Exp $ */ /* @@ -95,8 +95,6 @@ struct freelst vnode_free_list; /* vnode free list */ struct mntlist mountlist; /* mounted filesystem list */ void vclean(struct vnode *, int, struct proc *); -void vhold(struct vnode *); -void vdrop(struct vnode *); void insmntque(struct vnode *, struct mount *); int getdevvp(dev_t, struct vnode **, enum vtype); |