blob: dd65a6438131c5f08cbe97085b6b1ba3f671076d [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 Weil4f482802010-04-24 09:56:35 -070013 void *p;
Sage Weil8fc91fd2009-10-06 11:31:13 -070014
Yehuda Sadeh34d23762010-04-06 14:33:58 -070015 p = ceph_msg_new(0, pool->front_len, gfp_mask);
Sage Weil4f482802010-04-24 09:56:35 -070016 if (!p)
17 pr_err("msgpool %s alloc failed\n", pool->name);
18 return p;
Sage Weild52f8472010-04-01 15:23:14 -070019}
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 Weil4f482802010-04-24 09:56:35 -070027 int front_len, int size, bool blocking, const char *name)
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;
Sage Weil4f482802010-04-24 09:56:35 -070033 pool->name = name;
Sage Weild52f8472010-04-01 15:23:14 -070034 return 0;
Sage Weil8fc91fd2009-10-06 11:31:13 -070035}
36
37void ceph_msgpool_destroy(struct ceph_msgpool *pool)
38{
Sage Weild52f8472010-04-01 15:23:14 -070039 mempool_destroy(pool->pool);
Sage Weil8fc91fd2009-10-06 11:31:13 -070040}
41
Sage Weild52f8472010-04-01 15:23:14 -070042struct ceph_msg *ceph_msgpool_get(struct ceph_msgpool *pool,
43 int front_len)
Sage Weil8fc91fd2009-10-06 11:31:13 -070044{
Sage Weild52f8472010-04-01 15:23:14 -070045 if (front_len > pool->front_len) {
Sage Weil4f482802010-04-24 09:56:35 -070046 pr_err("msgpool_get pool %s need front %d, pool size is %d\n",
47 pool->name, front_len, pool->front_len);
Sage Weil8f3bc052009-10-14 17:36:07 -070048 WARN_ON(1);
49
50 /* try to alloc a fresh message */
Yehuda Sadeh34d23762010-04-06 14:33:58 -070051 return ceph_msg_new(0, front_len, GFP_NOFS);
Sage Weil8f3bc052009-10-14 17:36:07 -070052 }
53
Sage Weild52f8472010-04-01 15:23:14 -070054 return mempool_alloc(pool->pool, GFP_NOFS);
Sage Weil8fc91fd2009-10-06 11:31:13 -070055}
56
57void ceph_msgpool_put(struct ceph_msgpool *pool, struct ceph_msg *msg)
58{
Sage Weild52f8472010-04-01 15:23:14 -070059 /* reset msg front_len; user may have changed it */
60 msg->front.iov_len = pool->front_len;
61 msg->hdr.front_len = cpu_to_le32(pool->front_len);
Sage Weil3ca02ef2010-03-01 15:25:00 -080062
Sage Weild52f8472010-04-01 15:23:14 -070063 kref_init(&msg->kref); /* retake single ref */
Sage Weil8fc91fd2009-10-06 11:31:13 -070064}