diff options
author | Alex Elder <elder@inktank.com> | 2013-05-01 12:43:04 -0500 |
---|---|---|
committer | Alex Elder <elder@inktank.com> | 2013-05-02 11:58:41 -0500 |
commit | 5522ae0b68421e2645303ff010e27afc5292e0ab (patch) | |
tree | 200ec4895513e032a6ce9e844a457150f22b0708 /include/linux/ceph/osd_client.h | |
parent | 81b36be4c56299ac4c4c786908cb117ad232b62e (diff) | |
download | talos-op-linux-5522ae0b68421e2645303ff010e27afc5292e0ab.tar.gz talos-op-linux-5522ae0b68421e2645303ff010e27afc5292e0ab.zip |
libceph: use slab cache for osd client requests
Create a slab cache to manage allocation of ceph_osdc_request
structures.
This resolves:
http://tracker.ceph.com/issues/3926
Signed-off-by: Alex Elder <elder@inktank.com>
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
Diffstat (limited to 'include/linux/ceph/osd_client.h')
-rw-r--r-- | include/linux/ceph/osd_client.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/ceph/osd_client.h b/include/linux/ceph/osd_client.h index 4191cd2c55e5..186db0bf4951 100644 --- a/include/linux/ceph/osd_client.h +++ b/include/linux/ceph/osd_client.h @@ -224,6 +224,9 @@ struct ceph_osd_client { struct workqueue_struct *notify_wq; }; +extern int ceph_osdc_setup(void); +extern void ceph_osdc_cleanup(void); + extern int ceph_osdc_init(struct ceph_osd_client *osdc, struct ceph_client *client); extern void ceph_osdc_stop(struct ceph_osd_client *osdc); |