protocols: Suppress getxattr log when errno is ENOENT
Change-Id: I3f4fe3f382aec5fd142cc409b80bd73aebd8b39b BUG: 861015 Signed-off-by: Pranith Kumar K <pkarampu@redhat.com> Reviewed-on: http://review.gluster.org/4097 Reviewed-by: Jeff Darcy <jdarcy@redhat.com> Tested-by: Gluster Build System <jenkins@build.gluster.com>
This commit is contained in:
parent
8534cd56d8
commit
232adb8851
@ -1093,7 +1093,9 @@ client3_3_getxattr_cbk (struct rpc_req *req, struct iovec *iov, int count,
|
||||
|
||||
out:
|
||||
if (rsp.op_ret == -1) {
|
||||
gf_log (this->name, (((op_errno == ENOTSUP) || (op_errno == ENODATA)) ?
|
||||
gf_log (this->name, (((op_errno == ENOTSUP) ||
|
||||
(op_errno == ENODATA) ||
|
||||
(op_errno == ENOENT)) ?
|
||||
GF_LOG_DEBUG : GF_LOG_WARNING),
|
||||
"remote operation failed: %s. Path: %s (%s). Key: %s",
|
||||
strerror (op_errno),
|
||||
|
@ -819,7 +819,8 @@ server_getxattr_cbk (call_frame_t *frame, void *cookie, xlator_t *this,
|
||||
|
||||
if (op_ret == -1) {
|
||||
gf_log (this->name, (((op_errno == ENOTSUP) ||
|
||||
(op_errno == ENODATA)) ?
|
||||
(op_errno == ENODATA) ||
|
||||
(op_errno == ENOENT)) ?
|
||||
GF_LOG_DEBUG : GF_LOG_INFO),
|
||||
"%"PRId64": GETXATTR %s (%s) (%s) ==> (%s)",
|
||||
frame->root->unique, state->loc.path,
|
||||
|
Loading…
x
Reference in New Issue
Block a user