summaryrefslogtreecommitdiffstats
path: root/sys/ufs
diff options
context:
space:
mode:
authormckusick <mckusick@FreeBSD.org>2013-08-06 16:50:05 +0000
committermckusick <mckusick@FreeBSD.org>2013-08-06 16:50:05 +0000
commit9e78a97e0065d580c560b84772c2959b79755500 (patch)
tree5338a5dc3a07634a35c04b3b4d6d76a23a60f656 /sys/ufs
parentcea3d0ebcfdb9647d94f329cbe2a8eb90e3de9d7 (diff)
downloadFreeBSD-src-9e78a97e0065d580c560b84772c2959b79755500.zip
FreeBSD-src-9e78a97e0065d580c560b84772c2959b79755500.tar.gz
This bug fix is in a code path in rename taken when there is a
collision between a rename and an open system call for the same target file. Here, rename releases its vnode references, waits for the open to finish, and then restarts by reacquiring its needed vnode locks. In this case, rename was unlocking but failing to release its reference to one of its held vnodes. The effect was that even after all the actual references to the vnode had gone, the vnode still showed active references. For files that had been removed, their space was not reclaimed until the filesystem was forcibly unmounted. This bug manifested itself in the Postgres server which would leak/lose hundreds of files per day amounting to many gigabytes of disk space. This bug required shutting down Postgres, forcibly unmounting its filesystem, remounting its filesystem and restarting Postgres every few days to recover the lost space. Reported by: Dan Thomas and Palle Girgensohn Bug-fix by: kib Tested by: Dan Thomas and Palle Girgensohn MFC after: 2 weeks
Diffstat (limited to 'sys/ufs')
-rw-r--r--sys/ufs/ufs/ufs_vnops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ufs/ufs/ufs_vnops.c b/sys/ufs/ufs/ufs_vnops.c
index 14df1f3..729e967 100644
--- a/sys/ufs/ufs/ufs_vnops.c
+++ b/sys/ufs/ufs/ufs_vnops.c
@@ -1263,7 +1263,7 @@ relock:
error = VFS_VGET(mp, ino, LK_EXCLUSIVE, &nvp);
if (error != 0)
goto releout;
- VOP_UNLOCK(nvp, 0);
+ vput(nvp);
atomic_add_int(&rename_restarts, 1);
goto relock;
}
OpenPOWER on IntegriCloud