]>
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 *); | |
9ef8eb61 | 19 | struct page *last_page; |
0d455c12 PL |
20 | int pages; |
21 | int length; | |
22 | int next_page; | |
f268eedd PL |
23 | int alloc_buffer; |
24 | int returned_pages; | |
25 | pgoff_t next_index; | |
0d455c12 PL |
26 | }; |
27 | ||
f268eedd PL |
28 | extern struct squashfs_page_actor *squashfs_page_actor_init(void **buffer, |
29 | int pages, int length); | |
30 | extern struct squashfs_page_actor *squashfs_page_actor_init_special( | |
31 | struct squashfs_sb_info *msblk, | |
32 | struct page **page, int pages, int length); | |
9ef8eb61 | 33 | static inline struct page *squashfs_page_actor_free(struct squashfs_page_actor *actor) |
1f13dff0 | 34 | { |
9ef8eb61 PL |
35 | struct page *last_page = actor->last_page; |
36 | ||
1f13dff0 PL |
37 | kfree(actor->tmp_buffer); |
38 | kfree(actor); | |
9ef8eb61 | 39 | return last_page; |
1f13dff0 | 40 | } |
0d455c12 PL |
41 | static inline void *squashfs_first_page(struct squashfs_page_actor *actor) |
42 | { | |
43 | return actor->squashfs_first_page(actor); | |
44 | } | |
45 | static inline void *squashfs_next_page(struct squashfs_page_actor *actor) | |
46 | { | |
47 | return actor->squashfs_next_page(actor); | |
48 | } | |
49 | static inline void squashfs_finish_page(struct squashfs_page_actor *actor) | |
50 | { | |
51 | actor->squashfs_finish_page(actor); | |
52 | } | |
f268eedd PL |
53 | static inline void squashfs_actor_nobuff(struct squashfs_page_actor *actor) |
54 | { | |
55 | actor->alloc_buffer = 0; | |
56 | } | |
0d455c12 | 57 | #endif |