| Sage Weil | c30dbb9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1 |  | 
|  | 2 | #include "ceph_debug.h" | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 3 |  | 
|  | 4 | #include <linux/slab.h> | 
|  | 5 |  | 
| Sage Weil | c30dbb9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 6 | #include "buffer.h" | 
| Sage Weil | c7e337d | 2010-02-02 16:11:19 -0800 | [diff] [blame] | 7 | #include "decode.h" | 
| Sage Weil | c30dbb9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 8 |  | 
| Sage Weil | b6c1d5b | 2009-12-07 12:17:17 -0800 | [diff] [blame] | 9 | struct ceph_buffer *ceph_buffer_new(size_t len, gfp_t gfp) | 
| Sage Weil | c30dbb9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 10 | { | 
|  | 11 | struct ceph_buffer *b; | 
|  | 12 |  | 
|  | 13 | b = kmalloc(sizeof(*b), gfp); | 
|  | 14 | if (!b) | 
|  | 15 | return NULL; | 
| Sage Weil | b6c1d5b | 2009-12-07 12:17:17 -0800 | [diff] [blame] | 16 |  | 
|  | 17 | b->vec.iov_base = kmalloc(len, gfp | __GFP_NOWARN); | 
|  | 18 | if (b->vec.iov_base) { | 
|  | 19 | b->is_vmalloc = false; | 
|  | 20 | } else { | 
|  | 21 | b->vec.iov_base = __vmalloc(len, gfp, PAGE_KERNEL); | 
|  | 22 | if (!b->vec.iov_base) { | 
|  | 23 | kfree(b); | 
|  | 24 | return NULL; | 
|  | 25 | } | 
|  | 26 | b->is_vmalloc = true; | 
|  | 27 | } | 
|  | 28 |  | 
| Sage Weil | dd26d85 | 2009-12-05 10:13:33 -0800 | [diff] [blame] | 29 | kref_init(&b->kref); | 
| Sage Weil | b6c1d5b | 2009-12-07 12:17:17 -0800 | [diff] [blame] | 30 | b->alloc_len = len; | 
|  | 31 | b->vec.iov_len = len; | 
|  | 32 | dout("buffer_new %p\n", b); | 
| Sage Weil | c30dbb9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 33 | return b; | 
|  | 34 | } | 
|  | 35 |  | 
| Sage Weil | dd26d85 | 2009-12-05 10:13:33 -0800 | [diff] [blame] | 36 | void ceph_buffer_release(struct kref *kref) | 
|  | 37 | { | 
|  | 38 | struct ceph_buffer *b = container_of(kref, struct ceph_buffer, kref); | 
| Sage Weil | b6c1d5b | 2009-12-07 12:17:17 -0800 | [diff] [blame] | 39 |  | 
|  | 40 | dout("buffer_release %p\n", b); | 
| Sage Weil | dd26d85 | 2009-12-05 10:13:33 -0800 | [diff] [blame] | 41 | if (b->vec.iov_base) { | 
|  | 42 | if (b->is_vmalloc) | 
|  | 43 | vfree(b->vec.iov_base); | 
|  | 44 | else | 
|  | 45 | kfree(b->vec.iov_base); | 
|  | 46 | } | 
|  | 47 | kfree(b); | 
|  | 48 | } | 
|  | 49 |  | 
| Sage Weil | c30dbb9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 50 | int ceph_buffer_alloc(struct ceph_buffer *b, int len, gfp_t gfp) | 
|  | 51 | { | 
|  | 52 | b->vec.iov_base = kmalloc(len, gfp | __GFP_NOWARN); | 
|  | 53 | if (b->vec.iov_base) { | 
|  | 54 | b->is_vmalloc = false; | 
|  | 55 | } else { | 
|  | 56 | b->vec.iov_base = __vmalloc(len, gfp, PAGE_KERNEL); | 
|  | 57 | b->is_vmalloc = true; | 
|  | 58 | } | 
|  | 59 | if (!b->vec.iov_base) | 
|  | 60 | return -ENOMEM; | 
|  | 61 | b->alloc_len = len; | 
|  | 62 | b->vec.iov_len = len; | 
|  | 63 | return 0; | 
|  | 64 | } | 
|  | 65 |  | 
| Sage Weil | c7e337d | 2010-02-02 16:11:19 -0800 | [diff] [blame] | 66 | int ceph_decode_buffer(struct ceph_buffer **b, void **p, void *end) | 
|  | 67 | { | 
|  | 68 | size_t len; | 
|  | 69 |  | 
|  | 70 | ceph_decode_need(p, end, sizeof(u32), bad); | 
|  | 71 | len = ceph_decode_32(p); | 
|  | 72 | dout("decode_buffer len %d\n", (int)len); | 
|  | 73 | ceph_decode_need(p, end, len, bad); | 
|  | 74 | *b = ceph_buffer_new(len, GFP_NOFS); | 
|  | 75 | if (!*b) | 
|  | 76 | return -ENOMEM; | 
|  | 77 | ceph_decode_copy(p, (*b)->vec.iov_base, len); | 
|  | 78 | return 0; | 
|  | 79 | bad: | 
|  | 80 | return -EINVAL; | 
|  | 81 | } |