summaryrefslogtreecommitdiff
path: root/sys/xfs
diff options
context:
space:
mode:
authorThordur I. Bjornsson <thib@cvs.openbsd.org>2007-04-11 16:08:51 +0000
committerThordur I. Bjornsson <thib@cvs.openbsd.org>2007-04-11 16:08:51 +0000
commit7924b5b21bdc71d47b6162b7b1145eb2d98a1ae3 (patch)
tree7870003757b8e32a6cf615f58598647d7b5d3280 /sys/xfs
parent39929f6d9647b209b77dec51adf21cddcbd03fe0 (diff)
Remove the simplelock argument from vrecycle();
ok pedro@, sturm@
Diffstat (limited to 'sys/xfs')
-rw-r--r--sys/xfs/xfs_message.c2
-rw-r--r--sys/xfs/xfs_vnodeops-common.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/xfs/xfs_message.c b/sys/xfs/xfs_message.c
index 7f8e59241cd..b17e04f8693 100644
--- a/sys/xfs/xfs_message.c
+++ b/sys/xfs/xfs_message.c
@@ -336,7 +336,7 @@ xfs_message_invalidnode(int fd,
if (vp->v_usecount == 0) {
#ifndef __osf__
NNPFSDEB(XDEBVNOPS, ("xfs_message_invalidnode: vrecycle\n"));
- vrecycle(vp, 0, p);
+ vrecycle(vp, p);
#else
/* XXX */
#endif /* __osf__ */
diff --git a/sys/xfs/xfs_vnodeops-common.c b/sys/xfs/xfs_vnodeops-common.c
index 0c223988671..ecb61f8d839 100644
--- a/sys/xfs/xfs_vnodeops-common.c
+++ b/sys/xfs/xfs_vnodeops-common.c
@@ -1027,7 +1027,7 @@ xfs_inactive_common(struct vnode *vp, d_thread_t *p)
#ifndef __osf__
xfs_vfs_unlock(vp, p);
NNPFSDEB(XDEBVNOPS, ("xfs_inactive: vrecycle\n"));
- vrecycle(vp, 0, p);
+ vrecycle(vp, p);
#else /* __osf__ */
NNPFSDEB(XDEBVNOPS, ("xfs_inactive: vp = %lx vp->v_usecount= %d\n",
(unsigned long)vp, vp?vp->v_usecount:0));