diff options
author | 2007-04-11 16:08:50 +0000 | |
---|---|---|
committer | 2007-04-11 16:08:50 +0000 | |
commit | a782e7fd985a45f35ef1dc6a2ffb7f794b87e679 (patch) | |
tree | 8f8bb3786e6029f2b3a6a1cf82f43d3c49ac2ec8 /sys/ufs/ext2fs/ext2fs_inode.c | |
parent | in ffs_reload() use ffs_validate() to check if the (diff) | |
download | wireguard-openbsd-a782e7fd985a45f35ef1dc6a2ffb7f794b87e679.tar.xz wireguard-openbsd-a782e7fd985a45f35ef1dc6a2ffb7f794b87e679.zip |
Remove the simplelock argument from vrecycle();
ok pedro@, sturm@
Diffstat (limited to 'sys/ufs/ext2fs/ext2fs_inode.c')
-rw-r--r-- | sys/ufs/ext2fs/ext2fs_inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ext2fs/ext2fs_inode.c b/sys/ufs/ext2fs/ext2fs_inode.c index 83f4bf967a7..7a1240593e3 100644 --- a/sys/ufs/ext2fs/ext2fs_inode.c +++ b/sys/ufs/ext2fs/ext2fs_inode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ext2fs_inode.c,v 1.33 2006/06/18 14:18:25 pedro Exp $ */ +/* $OpenBSD: ext2fs_inode.c,v 1.34 2007/04/11 16:08:50 thib Exp $ */ /* $NetBSD: ext2fs_inode.c,v 1.24 2001/06/19 12:59:18 wiz Exp $ */ /* @@ -148,7 +148,7 @@ out: * so that it can be reused immediately. */ if (ip->i_e2din == NULL || ip->i_e2fs_dtime != 0) - vrecycle(vp, NULL, p); + vrecycle(vp, p); return (error); } |