diff options
-rw-r--r-- | xlators/features/marker/src/marker.c | 4 |
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), |