drivers/video/bfin-lq035q1-fb.c: introduce missing kfree
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / ceph / pagelist.h
blob9660d6b0a35d780dbe0806edf6193d1f7d5ef8f5
1 #ifndef __FS_CEPH_PAGELIST_H
2 #define __FS_CEPH_PAGELIST_H
4 #include <linux/list.h>
6 struct ceph_pagelist {
7 struct list_head head;
8 void *mapped_tail;
9 size_t length;
10 size_t room;
11 struct list_head free_list;
12 size_t num_pages_free;
15 struct ceph_pagelist_cursor {
16 struct ceph_pagelist *pl; /* pagelist, for error checking */
17 struct list_head *page_lru; /* page in list */
18 size_t room; /* room remaining to reset to */
21 static inline void ceph_pagelist_init(struct ceph_pagelist *pl)
23 INIT_LIST_HEAD(&pl->head);
24 pl->mapped_tail = NULL;
25 pl->length = 0;
26 pl->room = 0;
27 INIT_LIST_HEAD(&pl->free_list);
28 pl->num_pages_free = 0;
31 extern int ceph_pagelist_release(struct ceph_pagelist *pl);
33 extern int ceph_pagelist_append(struct ceph_pagelist *pl, const void *d, size_t l);
35 extern int ceph_pagelist_reserve(struct ceph_pagelist *pl, size_t space);
37 extern int ceph_pagelist_free_reserve(struct ceph_pagelist *pl);
39 extern void ceph_pagelist_set_cursor(struct ceph_pagelist *pl,
40 struct ceph_pagelist_cursor *c);
42 extern int ceph_pagelist_truncate(struct ceph_pagelist *pl,
43 struct ceph_pagelist_cursor *c);
45 static inline int ceph_pagelist_encode_64(struct ceph_pagelist *pl, u64 v)
47 __le64 ev = cpu_to_le64(v);
48 return ceph_pagelist_append(pl, &ev, sizeof(ev));
50 static inline int ceph_pagelist_encode_32(struct ceph_pagelist *pl, u32 v)
52 __le32 ev = cpu_to_le32(v);
53 return ceph_pagelist_append(pl, &ev, sizeof(ev));
55 static inline int ceph_pagelist_encode_16(struct ceph_pagelist *pl, u16 v)
57 __le16 ev = cpu_to_le16(v);
58 return ceph_pagelist_append(pl, &ev, sizeof(ev));
60 static inline int ceph_pagelist_encode_8(struct ceph_pagelist *pl, u8 v)
62 return ceph_pagelist_append(pl, &v, 1);
64 static inline int ceph_pagelist_encode_string(struct ceph_pagelist *pl,
65 char *s, size_t len)
67 int ret = ceph_pagelist_encode_32(pl, len);
68 if (ret)
69 return ret;
70 if (len)
71 return ceph_pagelist_append(pl, s, len);
72 return 0;
75 #endif