diff options
author | Ashish Pandey <aspandey@redhat.com> | 2018-04-25 16:48:56 +0530 |
---|---|---|
committer | Xavi Hernandez <xhernandez@redhat.com> | 2018-05-03 07:16:21 +0000 |
commit | 112048652ab00d9650053396c1b28a49d1853783 (patch) | |
tree | 057218aa883d970a5a30bd3e74a523a0c6444f61 /xlators/features/locks/src | |
parent | 11b747bcec316aad77c68451346e092f33b2f218 (diff) |
protocol/server : unwind as per op version
Change-Id: Id6717640ac14881b490e512c4682e45ffffa7f5b
fixes: bz#1570538
BUG: 1570538
Signed-off-by: Ashish Pandey <aspandey@redhat.com>
Diffstat (limited to 'xlators/features/locks/src')
-rw-r--r-- | xlators/features/locks/src/posix.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/xlators/features/locks/src/posix.c b/xlators/features/locks/src/posix.c index 1e1d9e5ae30..57753dac588 100644 --- a/xlators/features/locks/src/posix.c +++ b/xlators/features/locks/src/posix.c @@ -1562,7 +1562,13 @@ int pl_flush_cbk (call_frame_t *frame, void *cookie, xlator_t *this, int32_t op_ret, int32_t op_errno, dict_t *xdata) { - PL_STACK_UNWIND (flush, xdata, frame, op_ret, op_errno, xdata); + + if (frame->root->client && + (frame->root->client->opversion < GD_OP_VERSION_3_10_0)) { + STACK_UNWIND_STRICT (flush, frame, op_ret, op_errno, xdata); + } else { + PL_STACK_UNWIND (flush, xdata, frame, op_ret, op_errno, xdata); + } return 0; } |