msgpool.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. #include <linux/ceph/ceph_debug.h>
  2. #include <linux/err.h>
  3. #include <linux/sched.h>
  4. #include <linux/types.h>
  5. #include <linux/vmalloc.h>
  6. #include <linux/ceph/msgpool.h>
  7. static void *msgpool_alloc(gfp_t gfp_mask, void *arg)
  8. {
  9. struct ceph_msgpool *pool = arg;
  10. struct ceph_msg *msg;
  11. msg = ceph_msg_new(pool->type, pool->front_len, gfp_mask, true);
  12. if (!msg) {
  13. dout("msgpool_alloc %s failed\n", pool->name);
  14. } else {
  15. dout("msgpool_alloc %s %p\n", pool->name, msg);
  16. msg->pool = pool;
  17. }
  18. return msg;
  19. }
  20. static void msgpool_free(void *element, void *arg)
  21. {
  22. struct ceph_msgpool *pool = arg;
  23. struct ceph_msg *msg = element;
  24. dout("msgpool_release %s %p\n", pool->name, msg);
  25. msg->pool = NULL;
  26. ceph_msg_put(msg);
  27. }
  28. int ceph_msgpool_init(struct ceph_msgpool *pool, int type,
  29. int front_len, int size, bool blocking, const char *name)
  30. {
  31. dout("msgpool %s init\n", name);
  32. pool->type = type;
  33. pool->front_len = front_len;
  34. pool->pool = mempool_create(size, msgpool_alloc, msgpool_free, pool);
  35. if (!pool->pool)
  36. return -ENOMEM;
  37. pool->name = name;
  38. return 0;
  39. }
  40. void ceph_msgpool_destroy(struct ceph_msgpool *pool)
  41. {
  42. dout("msgpool %s destroy\n", pool->name);
  43. mempool_destroy(pool->pool);
  44. }
  45. struct ceph_msg *ceph_msgpool_get(struct ceph_msgpool *pool,
  46. int front_len)
  47. {
  48. struct ceph_msg *msg;
  49. if (front_len > pool->front_len) {
  50. dout("msgpool_get %s need front %d, pool size is %d\n",
  51. pool->name, front_len, pool->front_len);
  52. WARN_ON(1);
  53. /* try to alloc a fresh message */
  54. return ceph_msg_new(pool->type, front_len, GFP_NOFS, false);
  55. }
  56. msg = mempool_alloc(pool->pool, GFP_NOFS);
  57. dout("msgpool_get %s %p\n", pool->name, msg);
  58. return msg;
  59. }
  60. void ceph_msgpool_put(struct ceph_msgpool *pool, struct ceph_msg *msg)
  61. {
  62. dout("msgpool_put %s %p\n", pool->name, msg);
  63. /* 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);
  66. kref_init(&msg->kref); /* retake single ref */
  67. mempool_free(msg, pool->pool);
  68. }