blob: ca032223e87bae165561dcad5bb830a228e0f3ca [file] [log] [blame]
Sage Weil8fc91fd2009-10-06 11:31:13 -07001#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 Weild52f8472010-04-01 15:23:14 -070010static void *alloc_fn(gfp_t gfp_mask, void *arg)
Sage Weil8fc91fd2009-10-06 11:31:13 -070011{
Sage Weild52f8472010-04-01 15:23:14 -070012 struct ceph_msgpool *pool = arg;
13 struct ceph_msg *m;
Sage Weil8fc91fd2009-10-06 11:31:13 -070014
Sage Weild52f8472010-04-01 15:23:14 -070015 m = ceph_msg_new(0, pool->front_len, 0, 0, NULL);
16 if (IS_ERR(m))
17 return NULL;
18 return m;
19}
20
21static void free_fn(void *element, void *arg)
22{
23 ceph_msg_put(element);
Sage Weil8fc91fd2009-10-06 11:31:13 -070024}
25
26int ceph_msgpool_init(struct ceph_msgpool *pool,
Sage Weild52f8472010-04-01 15:23:14 -070027 int front_len, int size, bool blocking)
Sage Weil8fc91fd2009-10-06 11:31:13 -070028{
Sage Weil8fc91fd2009-10-06 11:31:13 -070029 pool->front_len = front_len;
Sage Weild52f8472010-04-01 15:23:14 -070030 pool->pool = mempool_create(size, alloc_fn, free_fn, pool);
31 if (!pool->pool)
32 return -ENOMEM;
33 return 0;
Sage Weil8fc91fd2009-10-06 11:31:13 -070034}
35
36void ceph_msgpool_destroy(struct ceph_msgpool *pool)
37{
Sage Weild52f8472010-04-01 15:23:14 -070038 mempool_destroy(pool->pool);
Sage Weil8fc91fd2009-10-06 11:31:13 -070039}
40
Sage Weild52f8472010-04-01 15:23:14 -070041struct ceph_msg *ceph_msgpool_get(struct ceph_msgpool *pool,
42 int front_len)
Sage Weil8fc91fd2009-10-06 11:31:13 -070043{
Sage Weild52f8472010-04-01 15:23:14 -070044 if (front_len > pool->front_len) {
45 struct ceph_msg *msg;
Sage Weil8fc91fd2009-10-06 11:31:13 -070046
Sage Weil8f3bc052009-10-14 17:36:07 -070047 pr_err("msgpool_get pool %p need front %d, pool size is %d\n",
48 pool, front_len, pool->front_len);
49 WARN_ON(1);
50
51 /* try to alloc a fresh message */
52 msg = ceph_msg_new(0, front_len, 0, 0, NULL);
53 if (!IS_ERR(msg))
54 return msg;
Sage Weild52f8472010-04-01 15:23:14 -070055 return NULL;
Sage Weil8f3bc052009-10-14 17:36:07 -070056 }
57
Sage Weild52f8472010-04-01 15:23:14 -070058 return mempool_alloc(pool->pool, GFP_NOFS);
Sage Weil8fc91fd2009-10-06 11:31:13 -070059}
60
61void ceph_msgpool_put(struct ceph_msgpool *pool, struct ceph_msg *msg)
62{
Sage Weild52f8472010-04-01 15:23:14 -070063 /* reset msg front_len; user may have changed it */
64 msg->front.iov_len = pool->front_len;
65 msg->hdr.front_len = cpu_to_le32(pool->front_len);
Sage Weil3ca02ef2010-03-01 15:25:00 -080066
Sage Weild52f8472010-04-01 15:23:14 -070067 kref_init(&msg->kref); /* retake single ref */
Sage Weil8fc91fd2009-10-06 11:31:13 -070068}