diff options
author | Raghavendra Talur <rtalur@redhat.com> | 2014-07-16 16:03:00 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-07-18 04:35:07 -0700 |
commit | 37b82b8abe665f2e6f991aa1aab8d8e1d2a02881 (patch) | |
tree | 884ce6c60e7bfcf720466176caa82f33e7d40fac /xlators/protocol/client/src | |
parent | 74d92e322e3c9f4f70ddfbf9b0e2140922009658 (diff) |
protocol/client: Log ENOENT and ENODATA messages to debug.
Change-Id: I6f8ccf1650ff74e46e5a93a6701d4e694118b273
BUG: 1120136
Signed-off-by: Raghavendra Talur <rtalur@redhat.com>
Reviewed-on: http://review.gluster.org/8315
Reviewed-by: Krishnan Parthasarathi <kparthas@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/protocol/client/src')
-rw-r--r-- | xlators/protocol/client/src/client-rpc-fops.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/xlators/protocol/client/src/client-rpc-fops.c b/xlators/protocol/client/src/client-rpc-fops.c index 64d30f2a99f..50ade5dc442 100644 --- a/xlators/protocol/client/src/client-rpc-fops.c +++ b/xlators/protocol/client/src/client-rpc-fops.c @@ -1149,10 +1149,13 @@ client3_3_fgetxattr_cbk (struct rpc_req *req, struct iovec *iov, int count, out: if (rsp.op_ret == -1) { - gf_log (this->name, ((op_errno == ENOTSUP) ? - GF_LOG_DEBUG : GF_LOG_WARNING), - "remote operation failed: %s", - strerror (op_errno)); + gf_log (this->name, (((op_errno == ENOTSUP) || + (op_errno == ERANGE) || + (op_errno == ENODATA) || + (op_errno == ENOENT)) ? + GF_LOG_DEBUG : GF_LOG_WARNING), + "remote operation failed: %s", + strerror (op_errno)); } CLIENT_STACK_UNWIND (fgetxattr, frame, rsp.op_ret, op_errno, dict, xdata); |