diff options
| author | Pranith Kumar K <pkarampu@redhat.com> | 2016-05-27 15:47:07 +0530 | 
|---|---|---|
| committer | Pranith Kumar Karampuri <pkarampu@redhat.com> | 2016-05-30 21:27:35 -0700 | 
| commit | 3d75e32d6ada03c979077681ff414d948800f07e (patch) | |
| tree | 18297f74761127aa7dc3ca65a3dffa5d61eb10ff /xlators/cluster/afr/src/afr-inode-write.c | |
| parent | a45bef14b370fe82d4f3af41a35d2802a359c287 (diff) | |
cluster/afr: Unwind xdata_rsp even in case of failures
DHT expects GF_PREOP_CHECK_FAILED to be present in xdata_rsp in case of mkdir
failures because of stale layout. But AFR was unwinding null xdata_rsp in case
of failures. This was leading to mkdir failures just after remove-brick. Unwind
the xdata_rsp in case of failures to make sure the response from brick reaches
dht.
BUG: 1340623
Change-Id: Idd3f7b95730e8ea987b608e892011ff190e181d1
Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
Reviewed-on: http://review.gluster.org/14553
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
Reviewed-by: Ravishankar N <ravishankar@redhat.com>
Smoke: Gluster Build System <jenkins@build.gluster.com>
CentOS-regression: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anuradha Talur <atalur@redhat.com>
Reviewed-by: Krutika Dhananjay <kdhananj@redhat.com>
Diffstat (limited to 'xlators/cluster/afr/src/afr-inode-write.c')
| -rw-r--r-- | xlators/cluster/afr/src/afr-inode-write.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/xlators/cluster/afr/src/afr-inode-write.c b/xlators/cluster/afr/src/afr-inode-write.c index 36889429657..47320ce9412 100644 --- a/xlators/cluster/afr/src/afr-inode-write.c +++ b/xlators/cluster/afr/src/afr-inode-write.c @@ -84,7 +84,7 @@ __afr_inode_write_finalize (call_frame_t *frame, xlator_t *this)                                                                 &args);  		else  			read_subvol = afr_data_subvol_get (local->inode, this, -							   NULL, NULL, &args); +                                                       NULL, NULL, NULL, &args);  	}  	local->op_ret = -1; @@ -164,8 +164,8 @@ __afr_inode_write_fill (call_frame_t *frame, xlator_t *this, int child_index,  			local->replies[child_index].poststat = *postbuf;  		if (xattr)  			local->replies[child_index].xattr = dict_ref (xattr); -		if (xdata) -			local->replies[child_index].xdata = dict_ref (xdata); +                if (xdata) +                        local->replies[child_index].xdata = dict_ref (xdata);  	} else {  		afr_transaction_fop_failed (frame, this, child_index);  	}  | 
