summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVikas Gorur <vikas@gluster.com>2010-04-13 12:47:14 +0000
committerAnand V. Avati <avati@dev.gluster.com>2010-04-20 01:51:02 -0700
commit477f6d1cdcc347bb0fa4ae79c9e48be7d0811235 (patch)
tree0346087cb32b381d8d498e948fb134032c3f0aa3
parent51f521ac9a140c147d22a2a38463984132a083a8 (diff)
cluster/afr: Send xattr in lookup from the source subvolume.
Signed-off-by: Vikas Gorur <vikas@gluster.com> Signed-off-by: Anand V. Avati <avati@dev.gluster.com> BUG: 815 (quick-read and replicate self-heal interaction result in empty reads) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=815
-rw-r--r--xlators/cluster/afr/src/afr-self-heal-data.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/xlators/cluster/afr/src/afr-self-heal-data.c b/xlators/cluster/afr/src/afr-self-heal-data.c
index 5711c89cf66..2d74ed1e98d 100644
--- a/xlators/cluster/afr/src/afr-self-heal-data.c
+++ b/xlators/cluster/afr/src/afr-self-heal-data.c
@@ -734,6 +734,14 @@ afr_sh_data_fix (call_frame_t *frame, xlator_t *this)
afr_set_read_child (this, local->loc.inode, sh->source);
+ /*
+ quick-read might have read the file, so send xattr from
+ the source subvolume (http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=815)
+ */
+
+ dict_unref (orig_local->cont.lookup.xattr);
+ orig_local->cont.lookup.xattr = dict_ref (orig_local->cont.lookup.xattrs[sh->source]);
+
if (sh->background) {
sh->unwind (sh->orig_frame, this);
sh->unwound = _gf_true;