blob: 3f541a13094fcecb4260c22def4c7f93b19ce55b [file] [log] [blame]
Sage Weilc30dbb92009-10-06 11:31:07 -07001#ifndef __FS_CEPH_BUFFER_H
2#define __FS_CEPH_BUFFER_H
3
Sage Weildd26d852009-12-05 10:13:33 -08004#include <linux/kref.h>
Sage Weilc30dbb92009-10-06 11:31:07 -07005#include <linux/mm.h>
6#include <linux/vmalloc.h>
7#include <linux/types.h>
8#include <linux/uio.h>
9
10/*
11 * a simple reference counted buffer.
12 *
13 * use kmalloc for small sizes (<= one page), vmalloc for larger
14 * sizes.
15 */
16struct ceph_buffer {
Sage Weildd26d852009-12-05 10:13:33 -080017 struct kref kref;
Sage Weilc30dbb92009-10-06 11:31:07 -070018 struct kvec vec;
19 size_t alloc_len;
20 bool is_vmalloc;
21};
22
23struct ceph_buffer *ceph_buffer_new(gfp_t gfp);
24int ceph_buffer_alloc(struct ceph_buffer *b, int len, gfp_t gfp);
25
26static inline struct ceph_buffer *ceph_buffer_get(struct ceph_buffer *b)
27{
Sage Weildd26d852009-12-05 10:13:33 -080028 kref_get(&b->kref);
Sage Weilc30dbb92009-10-06 11:31:07 -070029 return b;
30}
31
Sage Weildd26d852009-12-05 10:13:33 -080032void ceph_buffer_release(struct kref *kref);
33
Sage Weilc30dbb92009-10-06 11:31:07 -070034static inline void ceph_buffer_put(struct ceph_buffer *b)
35{
Sage Weildd26d852009-12-05 10:13:33 -080036 if (b)
37 kref_put(&b->kref, ceph_buffer_release);
Sage Weilc30dbb92009-10-06 11:31:07 -070038}
39
40static inline struct ceph_buffer *ceph_buffer_new_alloc(int len, gfp_t gfp)
41{
42 struct ceph_buffer *b = ceph_buffer_new(gfp);
43
44 if (b && ceph_buffer_alloc(b, len, gfp) < 0) {
45 ceph_buffer_put(b);
46 b = NULL;
47 }
48 return b;
49}
50
51#endif