diff options
Diffstat (limited to 'xlators/cluster/afr/src/afr-inode-write.c')
| -rw-r--r-- | xlators/cluster/afr/src/afr-inode-write.c | 22 | 
1 files changed, 0 insertions, 22 deletions
diff --git a/xlators/cluster/afr/src/afr-inode-write.c b/xlators/cluster/afr/src/afr-inode-write.c index a7441676881..7f7d9b4f8df 100644 --- a/xlators/cluster/afr/src/afr-inode-write.c +++ b/xlators/cluster/afr/src/afr-inode-write.c @@ -578,14 +578,11 @@ afr_truncate_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                         struct iatt *postbuf, dict_t *xdata)  {          afr_local_t *   local = NULL; -        afr_private_t * priv  = NULL;          int child_index = (long) cookie;          int read_child  = 0;          int call_count  = -1; -        int need_unwind = 0;          local = frame->local; -        priv  = this->private;          read_child = afr_inode_get_read_ctx (this, local->loc.inode, NULL); @@ -611,19 +608,11 @@ afr_truncate_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                          }                          local->success_count++; - -                        if ((local->success_count >= priv->wait_count) -                            && local->read_child_returned) { -                                need_unwind = 1; -                        }                  }                  local->op_errno = op_errno;          }          UNLOCK (&frame->lock); -        if (need_unwind) -                local->transaction.unwind (frame, this); -          call_count = afr_frame_return (frame);          if (call_count == 0) { @@ -788,14 +777,11 @@ afr_ftruncate_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                          struct iatt *postbuf, dict_t *xdata)  {          afr_local_t *   local = NULL; -        afr_private_t * priv  = NULL;          int child_index = (long) cookie;          int call_count  = -1; -        int need_unwind = 0;          int read_child  = 0;          local = frame->local; -        priv  = this->private;          read_child = afr_inode_get_read_ctx (this, local->fd->inode, NULL); @@ -821,19 +807,11 @@ afr_ftruncate_wind_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                          }                          local->success_count++; - -                        if ((local->success_count >= priv->wait_count) -                            && local->read_child_returned) { -                                need_unwind = 1; -                        }                  }                  local->op_errno = op_errno;          }          UNLOCK (&frame->lock); -        if (need_unwind) -                local->transaction.unwind (frame, this); -          call_count = afr_frame_return (frame);          if (call_count == 0) {  | 
