diff options
author | Mohammed Junaid <junaid@redhat.com> | 2012-04-25 15:39:20 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-05-15 16:53:28 -0700 |
commit | 4b94890c9777e7d78881d6c72ff739c91a9d3e99 (patch) | |
tree | aa069deb806cf21c4fe8f8fcd7fe2151952ce25d /xlators/mount | |
parent | fd3d555dea7c151265ca252d3c55129ba3fcdbb6 (diff) | |
download | glusterfs-4b94890c9777e7d78881d6c72ff739c91a9d3e99.tar.gz glusterfs-4b94890c9777e7d78881d6c72ff739c91a9d3e99.tar.xz glusterfs-4b94890c9777e7d78881d6c72ff739c91a9d3e99.zip |
mount/fuse: Use state->lk_lock to print lock information on EAGAIN.
Change-Id: I24a4a0b1c8dc0b8e08b380a5bc8efc111ccdb2c3
BUG: 808400
Signed-off-by: Mohammed Junaid <junaid@redhat.com>
Reviewed-on: http://review.gluster.com/3227
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'xlators/mount')
-rw-r--r-- | xlators/mount/fuse/src/fuse-bridge.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c index e2cdbe1411..f14ccf5c17 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)", |