]>
Commit | Line | Data |
---|---|---|
3d14c5d2 | 1 | #include <linux/ceph/ceph_debug.h> |
8fc91fd8 SW |
2 | |
3 | #include <linux/err.h> | |
4 | #include <linux/sched.h> | |
5 | #include <linux/types.h> | |
6 | #include <linux/vmalloc.h> | |
7 | ||
3d14c5d2 | 8 | #include <linux/ceph/msgpool.h> |
8fc91fd8 | 9 | |
5185352c | 10 | static void *msgpool_alloc(gfp_t gfp_mask, void *arg) |
d52f847a SW |
11 | { |
12 | struct ceph_msgpool *pool = arg; | |
5185352c | 13 | struct ceph_msg *msg; |
8fc91fd8 | 14 | |
d50b409f | 15 | msg = ceph_msg_new(pool->type, pool->front_len, gfp_mask, true); |
5185352c SW |
16 | if (!msg) { |
17 | dout("msgpool_alloc %s failed\n", pool->name); | |
18 | } else { | |
19 | dout("msgpool_alloc %s %p\n", pool->name, msg); | |
20 | msg->pool = pool; | |
21 | } | |
22 | return msg; | |
d52f847a | 23 | } |
8fc91fd8 | 24 | |
5185352c | 25 | static void msgpool_free(void *element, void *arg) |
8fc91fd8 | 26 | { |
5185352c SW |
27 | struct ceph_msgpool *pool = arg; |
28 | struct ceph_msg *msg = element; | |
29 | ||
30 | dout("msgpool_release %s %p\n", pool->name, msg); | |
31 | msg->pool = NULL; | |
32 | ceph_msg_put(msg); | |
8fc91fd8 SW |
33 | } |
34 | ||
d50b409f | 35 | int ceph_msgpool_init(struct ceph_msgpool *pool, int type, |
4f48280e | 36 | int front_len, int size, bool blocking, const char *name) |
8fc91fd8 | 37 | { |
5185352c | 38 | dout("msgpool %s init\n", name); |
d50b409f | 39 | pool->type = type; |
8fc91fd8 | 40 | pool->front_len = front_len; |
5185352c | 41 | pool->pool = mempool_create(size, msgpool_alloc, msgpool_free, pool); |
d52f847a SW |
42 | if (!pool->pool) |
43 | return -ENOMEM; | |
4f48280e | 44 | pool->name = name; |
d52f847a | 45 | return 0; |
8fc91fd8 SW |
46 | } |
47 | ||
48 | void ceph_msgpool_destroy(struct ceph_msgpool *pool) | |
49 | { | |
5185352c | 50 | dout("msgpool %s destroy\n", pool->name); |
d52f847a | 51 | mempool_destroy(pool->pool); |
8fc91fd8 SW |
52 | } |
53 | ||
d52f847a SW |
54 | struct ceph_msg *ceph_msgpool_get(struct ceph_msgpool *pool, |
55 | int front_len) | |
8fc91fd8 | 56 | { |
5185352c SW |
57 | struct ceph_msg *msg; |
58 | ||
d52f847a | 59 | if (front_len > pool->front_len) { |
5185352c | 60 | dout("msgpool_get %s need front %d, pool size is %d\n", |
4f48280e | 61 | pool->name, front_len, pool->front_len); |
8f3bc053 SW |
62 | WARN_ON(1); |
63 | ||
64 | /* try to alloc a fresh message */ | |
d50b409f | 65 | return ceph_msg_new(pool->type, front_len, GFP_NOFS, false); |
8f3bc053 SW |
66 | } |
67 | ||
5185352c SW |
68 | msg = mempool_alloc(pool->pool, GFP_NOFS); |
69 | dout("msgpool_get %s %p\n", pool->name, msg); | |
70 | return msg; | |
8fc91fd8 SW |
71 | } |
72 | ||
73 | void ceph_msgpool_put(struct ceph_msgpool *pool, struct ceph_msg *msg) | |
74 | { | |
5185352c SW |
75 | dout("msgpool_put %s %p\n", pool->name, msg); |
76 | ||
d52f847a SW |
77 | /* reset msg front_len; user may have changed it */ |
78 | msg->front.iov_len = pool->front_len; | |
79 | msg->hdr.front_len = cpu_to_le32(pool->front_len); | |
3ca02ef9 | 80 | |
d52f847a | 81 | kref_init(&msg->kref); /* retake single ref */ |
5185352c | 82 | mempool_free(msg, pool->pool); |
8fc91fd8 | 83 | } |