[Sheepdog] [PATCH] store: use hex to printf error code
Liu Yuan
namei.unix at gmail.com
Fri Apr 20 09:14:17 CEST 2012
From: Liu Yuan <tailai.ly at taobao.com>
Signed-off-by: Liu Yuan <tailai.ly at taobao.com>
---
sheep/store.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/sheep/store.c b/sheep/store.c
index d4546cd..dac0bff 100644
--- a/sheep/store.c
+++ b/sheep/store.c
@@ -826,7 +826,7 @@ static int fix_object_consistency(struct request *req)
req->op = get_sd_op(SD_OP_READ_OBJ);
ret = forward_read_obj_req(req);
if (ret != SD_RES_SUCCESS) {
- eprintf("failed to read object %d\n", ret);
+ eprintf("failed to read object %x\n", ret);
goto out;
}
@@ -836,7 +836,7 @@ static int fix_object_consistency(struct request *req)
req->op = get_sd_op(hdr->opcode);
ret = forward_write_obj_req(req);
if (ret != SD_RES_SUCCESS) {
- eprintf("failed to write object %d\n", ret);
+ eprintf("failed to write object %x\n", ret);
goto out;
}
out:
@@ -944,7 +944,7 @@ void do_io_request(struct work *work)
}
out:
if (ret != SD_RES_SUCCESS)
- dprintf("failed: %x, %" PRIx64" , %u, %"PRIu32"\n",
+ dprintf("failed: %x, %" PRIx64" , %u, %"PRIx32"\n",
opcode, oid, epoch, ret);
rsp->result = ret;
}
--
1.7.8.2
More information about the sheepdog
mailing list