Files
kernel/include/linux/ceph/msgpool.h
T

27 lines
770 B
C
Raw Normal View History

2009-10-06 11:31:13 -07:00
#ifndef _FS_CEPH_MSGPOOL
#define _FS_CEPH_MSGPOOL
2010-04-01 15:23:14 -07:00
#include <linux/mempool.h>
#include <linux/ceph/messenger.h>
2009-10-06 11:31:13 -07:00
/*
* we use memory pools for preallocating messages we may receive, to
* avoid unexpected OOM conditions.
*/
struct ceph_msgpool {
2010-04-24 09:56:35 -07:00
const char *name;
2010-04-01 15:23:14 -07:00
mempool_t *pool;
2012-07-09 14:22:34 -07:00
int type; /* preallocated message type */
2009-10-06 11:31:13 -07:00
int front_len; /* preallocated payload size */
};
2012-07-09 14:22:34 -07:00
extern int ceph_msgpool_init(struct ceph_msgpool *pool, int type,
2010-04-24 09:56:35 -07:00
int front_len, int size, bool blocking,
const char *name);
2009-10-06 11:31:13 -07:00
extern void ceph_msgpool_destroy(struct ceph_msgpool *pool);
extern struct ceph_msg *ceph_msgpool_get(struct ceph_msgpool *,
int front_len);
2009-10-06 11:31:13 -07:00
extern void ceph_msgpool_put(struct ceph_msgpool *, struct ceph_msg *);
#endif