Files
linux-apfs/include/linux/ceph/buffer.h
T

40 lines
818 B
C
Raw Normal View History

2009-10-06 11:31:07 -07:00
#ifndef __FS_CEPH_BUFFER_H
#define __FS_CEPH_BUFFER_H
2009-12-05 10:13:33 -08:00
#include <linux/kref.h>
2009-10-06 11:31:07 -07:00
#include <linux/mm.h>
#include <linux/vmalloc.h>
#include <linux/types.h>
#include <linux/uio.h>
/*
* a simple reference counted buffer.
*
* use kmalloc for small sizes (<= one page), vmalloc for larger
* sizes.
*/
struct ceph_buffer {
2009-12-05 10:13:33 -08:00
struct kref kref;
2009-10-06 11:31:07 -07:00
struct kvec vec;
size_t alloc_len;
bool is_vmalloc;
};
2009-12-07 12:17:17 -08:00
extern struct ceph_buffer *ceph_buffer_new(size_t len, gfp_t gfp);
extern void ceph_buffer_release(struct kref *kref);
2009-10-06 11:31:07 -07:00
static inline struct ceph_buffer *ceph_buffer_get(struct ceph_buffer *b)
{
2009-12-05 10:13:33 -08:00
kref_get(&b->kref);
2009-10-06 11:31:07 -07:00
return b;
}
static inline void ceph_buffer_put(struct ceph_buffer *b)
{
2009-12-07 12:17:17 -08:00
kref_put(&b->kref, ceph_buffer_release);
2009-10-06 11:31:07 -07:00
}
2010-02-02 16:11:19 -08:00
extern int ceph_decode_buffer(struct ceph_buffer **b, void **p, void *end);
2009-10-06 11:31:07 -07:00
#endif