diff options
Diffstat (limited to 'xlators/cluster')
| -rw-r--r-- | xlators/cluster/afr/src/afr-inode-write.c | 7 | ||||
| -rw-r--r-- | xlators/cluster/afr/src/afr-transaction.c | 27 | 
2 files changed, 21 insertions, 13 deletions
diff --git a/xlators/cluster/afr/src/afr-inode-write.c b/xlators/cluster/afr/src/afr-inode-write.c index 7c3d38e9..c619536c 100644 --- a/xlators/cluster/afr/src/afr-inode-write.c +++ b/xlators/cluster/afr/src/afr-inode-write.c @@ -296,6 +296,13 @@ afr_do_writev (call_frame_t *frame, xlator_t *this)          local->transaction.main_frame = frame;          if (local->fd->flags & O_APPEND) { +               /* +                * Backend vfs ignores the 'offset' for append mode fd so +                * locking just the region provided for the writev does not +                * give consistency gurantee. The actual write may happen at a +                * completely different range than the one provided by the +                * offset, len in the fop. So lock the entire file. +                */                  local->transaction.start   = 0;                  local->transaction.len     = 0;          } else { diff --git a/xlators/cluster/afr/src/afr-transaction.c b/xlators/cluster/afr/src/afr-transaction.c index 4e7ed55a..c0316f86 100644 --- a/xlators/cluster/afr/src/afr-transaction.c +++ b/xlators/cluster/afr/src/afr-transaction.c @@ -220,9 +220,12 @@ afr_transaction_perform_fop (call_frame_t *frame, xlator_t *this)  {          afr_local_t     *local = NULL;          afr_private_t   *priv = NULL; +        fd_t            *fd   = NULL;          local = frame->local;          priv  = this->private; +        fd    = local->fd; +          __mark_all_success (local->pending, priv->child_count,                              local->transaction.type); @@ -236,6 +239,17 @@ afr_transaction_perform_fop (call_frame_t *frame, xlator_t *this)          frame->root->lk_owner =                  local->transaction.main_frame->root->lk_owner; + +        /* The wake up needs to happen independent of +           what type of fop arrives here. If it was +           a write, then it has already inherited the +           lock and changelog. If it was not a write, +           then the presumption of the optimization (of +           optimizing for successive write operations) +           fails. +        */ +        if (fd) +                afr_delayed_changelog_wake_up (this, fd);          local->transaction.fop (frame, this);  } @@ -1392,23 +1406,10 @@ afr_transaction_resume (call_frame_t *frame, xlator_t *this)          afr_internal_lock_t *int_lock = NULL;          afr_local_t         *local    = NULL;          afr_private_t       *priv     = NULL; -	fd_t                *fd = NULL;          local    = frame->local;          int_lock = &local->internal_lock;          priv     = this->private; -	fd       = local->fd; - -	if (fd) -		/* The wake up needs to happen independent of -		   what type of fop arrives here. If it was -		   a write, then it has already inherited the -		   lock and changelog. If it was not a write, -		   then the presumption of the optimization (of -		   optimizing for successive write operations) -		   fails. -		*/ -		afr_delayed_changelog_wake_up (this, fd);  	afr_restore_lk_owner (frame);  | 
