summaryrefslogtreecommitdiffstats
path: root/xlators/mount
diff options
context:
space:
mode:
authorKrutika Dhananjay <kdhananj@redhat.com>2016-05-11 16:39:59 +0530
committerRaghavendra G <rgowdapp@redhat.com>2016-05-12 21:40:28 -0700
commit12d1c993660d6ae93b0fd08de9a6d7bb7431e7b0 (patch)
tree764df909c98367cb9c34c55bc3408e70838cc04f /xlators/mount
parent803069efb9f5c5d809237543044577f1a71a10d3 (diff)
mount/fuse: Log gfid and fd ptr as well when writev/readv fail
Change-Id: Iaed3850171155f2452fc29ebecd350c2da0b55cb BUG: 1335091 Signed-off-by: Krutika Dhananjay <kdhananj@redhat.com> Reviewed-on: http://review.gluster.org/14291 NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> Smoke: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com> CentOS-regression: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Raghavendra G <rgowdapp@redhat.com>
Diffstat (limited to 'xlators/mount')
-rw-r--r--xlators/mount/fuse/src/fuse-bridge.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c
index ee93aa3291f..c8e7c35ce17 100644
--- a/xlators/mount/fuse/src/fuse-bridge.c
+++ b/xlators/mount/fuse/src/fuse-bridge.c
@@ -2221,8 +2221,11 @@ fuse_readv_cbk (call_frame_t *frame, void *cookie, xlator_t *this,
send_fuse_err (this, finh, ENOMEM);
} else {
gf_log ("glusterfs-fuse", GF_LOG_WARNING,
- "%"PRIu64": READ => %d (%s)", frame->root->unique,
- op_ret, strerror (op_errno));
+ "%"PRIu64": READ => %d gfid=%s fd=%p (%s)",
+ frame->root->unique, op_ret,
+ (state->fd && state->fd->inode) ?
+ uuid_utoa (state->fd->inode->gfid) : "nil",
+ state->fd, strerror (op_errno));
send_fuse_err (this, finh, op_errno);
}
@@ -2302,7 +2305,10 @@ fuse_writev_cbk (call_frame_t *frame, void *cookie, xlator_t *this,
send_fuse_obj (this, finh, &fwo);
} else {
gf_log ("glusterfs-fuse", GF_LOG_WARNING,
- "%"PRIu64": WRITE => -1 (%s)", frame->root->unique,
+ "%"PRIu64": WRITE => -1 gfid=%s fd=%p (%s)",
+ frame->root->unique,
+ (state->fd && state->fd->inode) ?
+ uuid_utoa (state->fd->inode->gfid) : "nil", state->fd,
strerror (op_errno));
send_fuse_err (this, finh, op_errno);