Sage Weil | 8fc91fd | 2009-10-06 11:31:13 -0700 | [diff] [blame] | 1 | #include "ceph_debug.h" |
| 2 | |
| 3 | #include <linux/err.h> |
| 4 | #include <linux/sched.h> |
| 5 | #include <linux/types.h> |
| 6 | #include <linux/vmalloc.h> |
| 7 | |
| 8 | #include "msgpool.h" |
| 9 | |
Sage Weil | d52f847 | 2010-04-01 15:23:14 -0700 | [diff] [blame] | 10 | static void *alloc_fn(gfp_t gfp_mask, void *arg) |
Sage Weil | 8fc91fd | 2009-10-06 11:31:13 -0700 | [diff] [blame] | 11 | { |
Sage Weil | d52f847 | 2010-04-01 15:23:14 -0700 | [diff] [blame] | 12 | struct ceph_msgpool *pool = arg; |
Sage Weil | 8fc91fd | 2009-10-06 11:31:13 -0700 | [diff] [blame] | 13 | |
Sage Weil | bb25766 | 2010-04-01 16:07:23 -0700 | [diff] [blame^] | 14 | return ceph_msg_new(0, pool->front_len); |
Sage Weil | d52f847 | 2010-04-01 15:23:14 -0700 | [diff] [blame] | 15 | } |
| 16 | |
| 17 | static void free_fn(void *element, void *arg) |
| 18 | { |
| 19 | ceph_msg_put(element); |
Sage Weil | 8fc91fd | 2009-10-06 11:31:13 -0700 | [diff] [blame] | 20 | } |
| 21 | |
| 22 | int ceph_msgpool_init(struct ceph_msgpool *pool, |
Sage Weil | d52f847 | 2010-04-01 15:23:14 -0700 | [diff] [blame] | 23 | int front_len, int size, bool blocking) |
Sage Weil | 8fc91fd | 2009-10-06 11:31:13 -0700 | [diff] [blame] | 24 | { |
Sage Weil | 8fc91fd | 2009-10-06 11:31:13 -0700 | [diff] [blame] | 25 | pool->front_len = front_len; |
Sage Weil | d52f847 | 2010-04-01 15:23:14 -0700 | [diff] [blame] | 26 | pool->pool = mempool_create(size, alloc_fn, free_fn, pool); |
| 27 | if (!pool->pool) |
| 28 | return -ENOMEM; |
| 29 | return 0; |
Sage Weil | 8fc91fd | 2009-10-06 11:31:13 -0700 | [diff] [blame] | 30 | } |
| 31 | |
| 32 | void ceph_msgpool_destroy(struct ceph_msgpool *pool) |
| 33 | { |
Sage Weil | d52f847 | 2010-04-01 15:23:14 -0700 | [diff] [blame] | 34 | mempool_destroy(pool->pool); |
Sage Weil | 8fc91fd | 2009-10-06 11:31:13 -0700 | [diff] [blame] | 35 | } |
| 36 | |
Sage Weil | d52f847 | 2010-04-01 15:23:14 -0700 | [diff] [blame] | 37 | struct ceph_msg *ceph_msgpool_get(struct ceph_msgpool *pool, |
| 38 | int front_len) |
Sage Weil | 8fc91fd | 2009-10-06 11:31:13 -0700 | [diff] [blame] | 39 | { |
Sage Weil | d52f847 | 2010-04-01 15:23:14 -0700 | [diff] [blame] | 40 | if (front_len > pool->front_len) { |
Sage Weil | 8f3bc05 | 2009-10-14 17:36:07 -0700 | [diff] [blame] | 41 | pr_err("msgpool_get pool %p need front %d, pool size is %d\n", |
| 42 | pool, front_len, pool->front_len); |
| 43 | WARN_ON(1); |
| 44 | |
| 45 | /* try to alloc a fresh message */ |
Sage Weil | bb25766 | 2010-04-01 16:07:23 -0700 | [diff] [blame^] | 46 | return ceph_msg_new(0, front_len); |
Sage Weil | 8f3bc05 | 2009-10-14 17:36:07 -0700 | [diff] [blame] | 47 | } |
| 48 | |
Sage Weil | d52f847 | 2010-04-01 15:23:14 -0700 | [diff] [blame] | 49 | return mempool_alloc(pool->pool, GFP_NOFS); |
Sage Weil | 8fc91fd | 2009-10-06 11:31:13 -0700 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | void ceph_msgpool_put(struct ceph_msgpool *pool, struct ceph_msg *msg) |
| 53 | { |
Sage Weil | d52f847 | 2010-04-01 15:23:14 -0700 | [diff] [blame] | 54 | /* reset msg front_len; user may have changed it */ |
| 55 | msg->front.iov_len = pool->front_len; |
| 56 | msg->hdr.front_len = cpu_to_le32(pool->front_len); |
Sage Weil | 3ca02ef | 2010-03-01 15:25:00 -0800 | [diff] [blame] | 57 | |
Sage Weil | d52f847 | 2010-04-01 15:23:14 -0700 | [diff] [blame] | 58 | kref_init(&msg->kref); /* retake single ref */ |
Sage Weil | 8fc91fd | 2009-10-06 11:31:13 -0700 | [diff] [blame] | 59 | } |