From 6827f56dfcde4546e5adb3af65e7f21bef7fd58a Mon Sep 17 00:00:00 2001 From: Rajesh Amaravathi Date: Wed, 15 Feb 2012 14:33:19 +0530 Subject: protocol/client: delete locks only for non-anonymous fds delete_granted_lock_owners () is not called for anonymous fds since they are not involved in locking Change-Id: Icdc7818f98f5371232ba276ed442704ef69e6b0e BUG: 787365 Signed-off-by: Rajesh Amaravathi Reviewed-on: http://review.gluster.com/2754 Tested-by: Gluster Build System Reviewed-by: Amar Tumballi Reviewed-by: Vijay Bellur --- xlators/protocol/client/src/client-lk.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'xlators/protocol/client/src/client-lk.c') diff --git a/xlators/protocol/client/src/client-lk.c b/xlators/protocol/client/src/client-lk.c index 1bdde87df47..842e3ec5b62 100644 --- a/xlators/protocol/client/src/client-lk.c +++ b/xlators/protocol/client/src/client-lk.c @@ -375,9 +375,8 @@ delete_granted_locks_owner (fd_t *fd, gf_lkowner_t *owner) this = THIS; fdctx = this_fd_get_ctx (fd, this); if (!fdctx) { - if (!fd_is_anonymous (fd)) - gf_log (this->name, GF_LOG_WARNING, - "fdctx not valid"); + gf_log (this->name, GF_LOG_WARNING, + "fdctx not valid"); ret = -1; goto out; } -- cgit