From d88237faa6982c9f0beca65262a220becaacb096 Mon Sep 17 00:00:00 2001 From: Raghavendra Bhat Date: Wed, 2 May 2012 16:29:49 +0530 Subject: cluster/pump: Fixed fd leaks in pump directory traversal logic Change-Id: Ie54c8c9b19be6824445ada6bbcd4983e90a7c5c4 BUG: 818593 Signed-off-by: Raghavendra Bhat Reviewed-on: http://review.gluster.com/3267 Tested-by: Gluster Build System Reviewed-by: Anand Avati --- libglusterfs/src/defaults.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libglusterfs/src') diff --git a/libglusterfs/src/defaults.c b/libglusterfs/src/defaults.c index a3f506d9bf5..7e09a2c2b3e 100644 --- a/libglusterfs/src/defaults.c +++ b/libglusterfs/src/defaults.c @@ -1265,8 +1265,8 @@ default_fsetattr (call_frame_t *frame, xlator_t *this, fd_t *fd, int32_t default_forget (xlator_t *this, inode_t *inode) { - gf_log (this->name, GF_LOG_WARNING, "xlator does not implement " - "forget_cbk"); + gf_log_callingfn (this->name, GF_LOG_WARNING, "xlator does not " + "implement forget_cbk"); return 0; } @@ -1274,16 +1274,16 @@ default_forget (xlator_t *this, inode_t *inode) int32_t default_releasedir (xlator_t *this, fd_t *fd) { - gf_log (this->name, GF_LOG_WARNING, "xlator does not implement " - "releasedir_cbk"); + gf_log_callingfn (this->name, GF_LOG_WARNING, "xlator does not " + "implement releasedir_cbk"); return 0; } int32_t default_release (xlator_t *this, fd_t *fd) { - gf_log (this->name, GF_LOG_WARNING, "xlator does not implement " - "release_cbk"); + gf_log_callingfn (this->name, GF_LOG_WARNING, "xlator does not " + "implement release_cbk"); return 0; } -- cgit