]>
Commit | Line | Data |
---|---|---|
20c8ccb1 | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
846b730e PL |
2 | #ifndef PAGE_ACTOR_H |
3 | #define PAGE_ACTOR_H | |
4 | /* | |
5 | * Copyright (c) 2013 | |
6 | * Phillip Lougher <[email protected]> | |
846b730e PL |
7 | */ |
8 | ||
0d455c12 PL |
9 | struct squashfs_page_actor { |
10 | union { | |
11 | void **buffer; | |
12 | struct page **page; | |
13 | }; | |
14 | void *pageaddr; | |
f268eedd | 15 | void *tmp_buffer; |
0d455c12 PL |
16 | void *(*squashfs_first_page)(struct squashfs_page_actor *); |
17 | void *(*squashfs_next_page)(struct squashfs_page_actor *); | |
18 | void (*squashfs_finish_page)(struct squashfs_page_actor *); | |
19 | int pages; | |
20 | int length; | |
21 | int next_page; | |
f268eedd PL |
22 | int alloc_buffer; |
23 | int returned_pages; | |
24 | pgoff_t next_index; | |
0d455c12 PL |
25 | }; |
26 | ||
f268eedd PL |
27 | extern struct squashfs_page_actor *squashfs_page_actor_init(void **buffer, |
28 | int pages, int length); | |
29 | extern struct squashfs_page_actor *squashfs_page_actor_init_special( | |
30 | struct squashfs_sb_info *msblk, | |
31 | struct page **page, int pages, int length); | |
1f13dff0 PL |
32 | static inline void squashfs_page_actor_free(struct squashfs_page_actor *actor) |
33 | { | |
34 | kfree(actor->tmp_buffer); | |
35 | kfree(actor); | |
36 | } | |
0d455c12 PL |
37 | static inline void *squashfs_first_page(struct squashfs_page_actor *actor) |
38 | { | |
39 | return actor->squashfs_first_page(actor); | |
40 | } | |
41 | static inline void *squashfs_next_page(struct squashfs_page_actor *actor) | |
42 | { | |
43 | return actor->squashfs_next_page(actor); | |
44 | } | |
45 | static inline void squashfs_finish_page(struct squashfs_page_actor *actor) | |
46 | { | |
47 | actor->squashfs_finish_page(actor); | |
48 | } | |
f268eedd PL |
49 | static inline void squashfs_actor_nobuff(struct squashfs_page_actor *actor) |
50 | { | |
51 | actor->alloc_buffer = 0; | |
52 | } | |
0d455c12 | 53 | #endif |