diff options
author | Sage Weil <sage@newdream.net> | 2010-04-24 16:56:35 (GMT) |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-05-17 22:25:24 (GMT) |
commit | 4f48280ee1d0654390cd50ad0c41ea93309e7c91 (patch) | |
tree | e0a9b6502ddcf09caa66c99b787685f4846ea7ef /fs/ceph/osd_client.c | |
parent | 8c6efb58a5bab880d45b2078cb55ec4320707daf (diff) | |
download | linux-4f48280ee1d0654390cd50ad0c41ea93309e7c91.tar.xz |
ceph: name msgpools; useful error messages
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/osd_client.c')
-rw-r--r-- | fs/ceph/osd_client.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/ceph/osd_client.c b/fs/ceph/osd_client.c index 97a3a57..c0aca73 100644 --- a/fs/ceph/osd_client.c +++ b/fs/ceph/osd_client.c @@ -1214,11 +1214,13 @@ int ceph_osdc_init(struct ceph_osd_client *osdc, struct ceph_client *client) if (!osdc->req_mempool) goto out; - err = ceph_msgpool_init(&osdc->msgpool_op, OSD_OP_FRONT_LEN, 10, true); + err = ceph_msgpool_init(&osdc->msgpool_op, OSD_OP_FRONT_LEN, 10, true, + "osd_op"); if (err < 0) goto out_mempool; err = ceph_msgpool_init(&osdc->msgpool_op_reply, - OSD_OPREPLY_FRONT_LEN, 10, true); + OSD_OPREPLY_FRONT_LEN, 10, true, + "osd_op_reply"); if (err < 0) goto out_msgpool; return 0; |