From 8c1304b03542eefbbff82014827fc782c3c3584f Mon Sep 17 00:00:00 2001 From: Pranith Kumar K Date: Sat, 3 Aug 2013 08:27:27 +0530 Subject: performance/open-behind: Fix fd-leaks in unlink, rename Change-Id: Ia8d4bed7ccd316a83c397b53b9c1b1806024f83e BUG: 991622 Signed-off-by: Pranith Kumar K Reviewed-on: http://review.gluster.org/5493 Tested-by: Gluster Build System Reviewed-by: Anand Avati --- xlators/performance/open-behind/src/open-behind.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'xlators') diff --git a/xlators/performance/open-behind/src/open-behind.c b/xlators/performance/open-behind/src/open-behind.c index 26b684e8..df402750 100644 --- a/xlators/performance/open-behind/src/open-behind.c +++ b/xlators/performance/open-behind/src/open-behind.c @@ -734,6 +734,8 @@ ob_unlink (call_frame_t *frame, xlator_t *this, loc_t *loc, int xflags, fd = fd_lookup (loc->inode, 0); open_and_resume (this, fd, stub); + if (fd) + fd_unref (fd); return 0; err: @@ -758,6 +760,8 @@ ob_rename (call_frame_t *frame, xlator_t *this, loc_t *src, loc_t *dst, fd = fd_lookup (dst->inode, 0); open_and_resume (this, fd, stub); + if (fd) + fd_unref (fd); return 0; err: -- cgit