diff options
| -rw-r--r-- | xlators/mount/fuse/src/fuse-bridge.c | 7 | ||||
| -rw-r--r-- | xlators/performance/quick-read/src/quick-read.c | 2 | 
2 files changed, 4 insertions, 5 deletions
diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c index e2cdbe141..f14ccf5c1 100644 --- a/xlators/mount/fuse/src/fuse-bridge.c +++ b/xlators/mount/fuse/src/fuse-bridge.c @@ -3186,11 +3186,10 @@ fuse_setlk_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                          gf_log ("glusterfs-fuse", GF_LOG_DEBUG,                                  "Returning EAGAIN Flock: "                                  "start=%llu, len=%llu, pid=%llu, lk-owner=%s", -                                (unsigned long long) lock->l_start, -                                (unsigned long long) lock->l_len, -                                (unsigned long long) lock->l_pid, +                                (unsigned long long) state->lk_lock.l_start, +                                (unsigned long long) state->lk_lock.l_len, +                                (unsigned long long) state->lk_lock.l_pid,                                  lkowner_utoa (&frame->root->lk_owner)); -                  } else  {                          gf_log ("glusterfs-fuse", GF_LOG_WARNING,                                  "%"PRIu64": ERR => -1 (%s)", diff --git a/xlators/performance/quick-read/src/quick-read.c b/xlators/performance/quick-read/src/quick-read.c index 6e0aa7cdd..ef980a589 100644 --- a/xlators/performance/quick-read/src/quick-read.c +++ b/xlators/performance/quick-read/src/quick-read.c @@ -3051,7 +3051,7 @@ qr_lk_helper (call_frame_t *frame, xlator_t *this, fd_t *fd, int32_t cmd,          return 0;  unwind: -        QR_STACK_UNWIND (lk, frame, -1, op_errno, NULL, NULL); +        QR_STACK_UNWIND (lk, frame, -1, op_errno, lock, xdata);          return 0;  }  | 
