diff options
author | Anand Avati <avati@redhat.com> | 2012-05-29 22:30:53 -0700 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-05-29 22:57:18 -0700 |
commit | 0fd6f1491050a2ac515ecbe8a1100342a3948305 (patch) | |
tree | d60ac775426c4c8994f2ff968ab70f8d8fe35649 /xlators/protocol/client | |
parent | be395fe8a31a580510595b672f72626d61d81493 (diff) |
protocol: do not log getxattr/ENODATA as warning
When SELinux is enabled, most of the files do not have labels and
result is a ton of unnecessary logs
Change-Id: I0e781e2fb6bcfb3fb12298175a41f7b981af9c39
BUG: 811217
Signed-off-by: Anand Avati <avati@redhat.com>
Reviewed-on: http://review.gluster.com/3486
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Diffstat (limited to 'xlators/protocol/client')
-rw-r--r-- | xlators/protocol/client/src/client3_1-fops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/protocol/client/src/client3_1-fops.c b/xlators/protocol/client/src/client3_1-fops.c index 061bfcd7e..fb3d61703 100644 --- a/xlators/protocol/client/src/client3_1-fops.c +++ b/xlators/protocol/client/src/client3_1-fops.c @@ -1051,7 +1051,7 @@ client3_1_getxattr_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 (this->name, (((op_errno == ENOTSUP) || (op_errno == ENODATA)) ? GF_LOG_DEBUG : GF_LOG_WARNING), "remote operation failed: %s. Path: %s (%s). Key: %s", strerror (op_errno), |