diff options
author | Anand Avati <avati@gluster.com> | 2011-06-10 04:37:38 +0000 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2011-06-10 03:53:40 -0700 |
commit | 241f9c83bfb85519e131d4ec345d0556c4f296cc (patch) | |
tree | db84d9115236d9b518d911474a2360fb5901787e | |
parent | b25a987e3796b3c33fb4bdb8251ea498a8453cce (diff) |
cluster/afr: propagate proper errno returned by lock fops
If locks could not be held on any of the servers, then propagate the
errno returned by the lock FOPs instead of hardcoding EAGAIN/EINVAL.
Signed-off-by: Anand Avati <avati@gluster.com>
BUG: 2993 ([glusterfs-3.2.0qa2]: hang while doing the selfheal)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2993
-rw-r--r-- | xlators/cluster/afr/src/afr-lk-common.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/xlators/cluster/afr/src/afr-lk-common.c b/xlators/cluster/afr/src/afr-lk-common.c index 65cfaf0638f..eb4dbdbf5be 100644 --- a/xlators/cluster/afr/src/afr-lk-common.c +++ b/xlators/cluster/afr/src/afr-lk-common.c @@ -934,8 +934,6 @@ afr_lock_blocking (call_frame_t *frame, xlator_t *this, int child_index) local->op_ret = -1; int_lock->lock_op_ret = -1; - local->op_errno = EINVAL; - int_lock->lock_op_errno = EINVAL; afr_copy_locked_nodes (frame, this); @@ -969,8 +967,6 @@ afr_lock_blocking (call_frame_t *frame, xlator_t *this, int child_index) local->op_ret = -1; int_lock->lock_op_ret = -1; - local->op_errno = EAGAIN; - int_lock->lock_op_errno = EAGAIN; afr_copy_locked_nodes (frame, this); |