blob: 10d3632cc403efc9603da396d2c6007fae85f3ca [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;
Sage Weil8fc91fd2009-10-06 11:31:13 -070013
Sage Weilbb257662010-04-01 16:07:23 -070014 return ceph_msg_new(0, pool->front_len);
Sage Weild52f8472010-04-01 15:23:14 -070015}
16
17static void free_fn(void *element, void *arg)
18{
19 ceph_msg_put(element);
Sage Weil8fc91fd2009-10-06 11:31:13 -070020}
21
22int ceph_msgpool_init(struct ceph_msgpool *pool,
Sage Weild52f8472010-04-01 15:23:14 -070023 int front_len, int size, bool blocking)
Sage Weil8fc91fd2009-10-06 11:31:13 -070024{
Sage Weil8fc91fd2009-10-06 11:31:13 -070025 pool->front_len = front_len;
Sage Weild52f8472010-04-01 15:23:14 -070026 pool->pool = mempool_create(size, alloc_fn, free_fn, pool);
27 if (!pool->pool)
28 return -ENOMEM;
29 return 0;
Sage Weil8fc91fd2009-10-06 11:31:13 -070030}
31
32void ceph_msgpool_destroy(struct ceph_msgpool *pool)
33{
Sage Weild52f8472010-04-01 15:23:14 -070034 mempool_destroy(pool->pool);
Sage Weil8fc91fd2009-10-06 11:31:13 -070035}
36
Sage Weild52f8472010-04-01 15:23:14 -070037struct ceph_msg *ceph_msgpool_get(struct ceph_msgpool *pool,
38 int front_len)
Sage Weil8fc91fd2009-10-06 11:31:13 -070039{
Sage Weild52f8472010-04-01 15:23:14 -070040 if (front_len > pool->front_len) {
Sage Weil8f3bc052009-10-14 17:36:07 -070041 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 Weilbb257662010-04-01 16:07:23 -070046 return ceph_msg_new(0, front_len);
Sage Weil8f3bc052009-10-14 17:36:07 -070047 }
48
Sage Weild52f8472010-04-01 15:23:14 -070049 return mempool_alloc(pool->pool, GFP_NOFS);
Sage Weil8fc91fd2009-10-06 11:31:13 -070050}
51
52void ceph_msgpool_put(struct ceph_msgpool *pool, struct ceph_msg *msg)
53{
Sage Weild52f8472010-04-01 15:23:14 -070054 /* 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 Weil3ca02ef2010-03-01 15:25:00 -080057
Sage Weild52f8472010-04-01 15:23:14 -070058 kref_init(&msg->kref); /* retake single ref */
Sage Weil8fc91fd2009-10-06 11:31:13 -070059}