diff options
| -rw-r--r-- | xlators/protocol/client/src/client3_1-fops.c | 15 | 
1 files changed, 10 insertions, 5 deletions
diff --git a/xlators/protocol/client/src/client3_1-fops.c b/xlators/protocol/client/src/client3_1-fops.c index 5b6971dde13..492c469d84d 100644 --- a/xlators/protocol/client/src/client3_1-fops.c +++ b/xlators/protocol/client/src/client3_1-fops.c @@ -1220,7 +1220,8 @@ client3_1_inodelk_cbk (struct rpc_req *req, struct iovec *iov, int count,          }  out: -        if ((rsp.op_ret == -1) && (EAGAIN != rsp.op_errno)) { +        if ((rsp.op_ret == -1) && +            (EAGAIN != gf_error_to_errno (rsp.op_errno))) {                  gf_log (this->name, GF_LOG_INFO, "remote operation failed: %s",                          strerror (gf_error_to_errno (rsp.op_errno)));          } @@ -1257,7 +1258,8 @@ client3_1_finodelk_cbk (struct rpc_req *req, struct iovec *iov, int count,          }  out: -        if ((rsp.op_ret == -1) && (EAGAIN != rsp.op_errno)) { +        if ((rsp.op_ret == -1) && +            (EAGAIN != gf_error_to_errno (rsp.op_errno))) {                  gf_log (this->name, GF_LOG_INFO, "remote operation failed: %s",                          strerror (gf_error_to_errno (rsp.op_errno)));          } @@ -1295,7 +1297,8 @@ client3_1_entrylk_cbk (struct rpc_req *req, struct iovec *iov, int count,  out: -        if ((rsp.op_ret == -1) && (EAGAIN != rsp.op_errno)) { +        if ((rsp.op_ret == -1) && +            (EAGAIN != gf_error_to_errno (rsp.op_errno))) {                  gf_log (this->name, GF_LOG_INFO, "remote operation failed: %s",                          strerror (gf_error_to_errno (rsp.op_errno)));          } @@ -1332,7 +1335,8 @@ client3_1_fentrylk_cbk (struct rpc_req *req, struct iovec *iov, int count,          }  out: -        if ((rsp.op_ret == -1) && (EAGAIN != rsp.op_errno)) { +        if ((rsp.op_ret == -1) && +            (EAGAIN != gf_error_to_errno (rsp.op_errno))) {                  gf_log (this->name, GF_LOG_INFO, "remote operation failed: %s",                          strerror (gf_error_to_errno (rsp.op_errno)));          } @@ -1824,7 +1828,8 @@ client3_1_lk_cbk (struct rpc_req *req, struct iovec *iov, int count,          client_local_wipe (local);  out: -        if ((rsp.op_ret == -1) && (EAGAIN != rsp.op_errno)) { +        if ((rsp.op_ret == -1) && +            (EAGAIN != gf_error_to_errno (rsp.op_errno))) {                  gf_log (this->name, GF_LOG_INFO, "remote operation failed: %s",                          strerror (gf_error_to_errno (rsp.op_errno)));          }  | 
