summaryrefslogtreecommitdiffstats
path: root/xlators/features/marker
diff options
context:
space:
mode:
authorSachin Pandit <spandit@redhat.com>2015-06-04 11:01:38 +0530
committerRaghavendra G <rgowdapp@redhat.com>2015-06-11 04:33:31 -0700
commit3eafe6a81fecc493e60f3781246daefbf4393602 (patch)
tree3044cfa9ab2a503fb22bd54e9bcf3fde1dbbc2df /xlators/features/marker
parent515feb9885c193255121342540eac07f77b4b580 (diff)
features/marker : Pass along xdata to lower translator
The problem was in marker xlator, where during rename a NULL value is passed during STACK_WIND. Marker needs to pass the xdata un-modified to next translator if marker does not rely on that. Change-Id: I9e47e504fd241263987645abfed7ca13c0d54a80 BUG: 1228492 Signed-off-by: Sachin Pandit <spandit@redhat.com> Reviewed-on: http://review.gluster.org/11089 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Raghavendra G <rgowdapp@redhat.com> Tested-by: Raghavendra G <rgowdapp@redhat.com>
Diffstat (limited to 'xlators/features/marker')
-rw-r--r--xlators/features/marker/src/marker.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/xlators/features/marker/src/marker.c b/xlators/features/marker/src/marker.c
index f28b112cc29..2943f3b067d 100644
--- a/xlators/features/marker/src/marker.c
+++ b/xlators/features/marker/src/marker.c
@@ -1334,7 +1334,7 @@ marker_do_rename (call_frame_t *frame, void *cookie, xlator_t *this,
STACK_WIND (frame, marker_rename_cbk, FIRST_CHILD(this),
FIRST_CHILD(this)->fops->rename, &oplocal->loc,
- &local->loc, NULL);
+ &local->loc, local->xdata);
return 0;
@@ -1591,6 +1591,8 @@ marker_rename (call_frame_t *frame, xlator_t *this, loc_t *oldloc,
lock.l_type = F_WRLCK;
lock.l_whence = SEEK_SET;
+ local->xdata = dict_ref (xdata);
+
STACK_WIND (frame,
marker_rename_inodelk_cbk,
FIRST_CHILD(this),