diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-30 19:16:45 -0400 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-30 19:16:45 -0400 |
commit | ada47b5fe13d89735805b566185f4885f5a3f750 (patch) | |
tree | 644b88f8a71896307d71438e9b3af49126ffb22b /fs/ceph/msgpool.h | |
parent | 43e98717ad40a4ae64545b5ba047c7b86aa44f4f (diff) | |
parent | 3280f21d43ee541f97f8cda5792150d2dbec20d5 (diff) |
Merge branch 'wip-2.6.34' into old-private-masterarchived-private-master
Diffstat (limited to 'fs/ceph/msgpool.h')
-rw-r--r-- | fs/ceph/msgpool.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/fs/ceph/msgpool.h b/fs/ceph/msgpool.h new file mode 100644 index 000000000000..bc834bfcd720 --- /dev/null +++ b/fs/ceph/msgpool.h | |||
@@ -0,0 +1,27 @@ | |||
1 | #ifndef _FS_CEPH_MSGPOOL | ||
2 | #define _FS_CEPH_MSGPOOL | ||
3 | |||
4 | #include "messenger.h" | ||
5 | |||
6 | /* | ||
7 | * we use memory pools for preallocating messages we may receive, to | ||
8 | * avoid unexpected OOM conditions. | ||
9 | */ | ||
10 | struct ceph_msgpool { | ||
11 | spinlock_t lock; | ||
12 | int front_len; /* preallocated payload size */ | ||
13 | struct list_head msgs; /* msgs in the pool; each has 1 ref */ | ||
14 | int num, min; /* cur, min # msgs in the pool */ | ||
15 | bool blocking; | ||
16 | wait_queue_head_t wait; | ||
17 | }; | ||
18 | |||
19 | extern int ceph_msgpool_init(struct ceph_msgpool *pool, | ||
20 | int front_len, int size, bool blocking); | ||
21 | extern void ceph_msgpool_destroy(struct ceph_msgpool *pool); | ||
22 | extern int ceph_msgpool_resv(struct ceph_msgpool *, int delta); | ||
23 | extern struct ceph_msg *ceph_msgpool_get(struct ceph_msgpool *, | ||
24 | int front_len); | ||
25 | extern void ceph_msgpool_put(struct ceph_msgpool *, struct ceph_msg *); | ||
26 | |||
27 | #endif | ||