1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2019 HUAWEI, Inc.
4 * https://www.huawei.com/
6 #ifndef __EROFS_FS_COMPRESS_H
7 #define __EROFS_FS_COMPRESS_H
11 struct z_erofs_decompress_req {
12 struct super_block *sb;
13 struct page **in, **out;
15 unsigned short pageofs_in, pageofs_out;
16 unsigned int inputsize, outputsize;
18 /* indicate the algorithm will be used for decompression */
20 bool inplace_io, partial_decoding, fillgaps;
23 struct z_erofs_decompressor {
24 int (*decompress)(struct z_erofs_decompress_req *rq,
25 struct page **pagepool);
29 /* some special page->private (unsigned long, see below) */
30 #define Z_EROFS_SHORTLIVED_PAGE (-1UL << 2)
31 #define Z_EROFS_PREALLOCATED_PAGE (-2UL << 2)
34 * For all pages in a pcluster, page->private should be one of
35 * Type Last 2bits page->private
36 * short-lived page 00 Z_EROFS_SHORTLIVED_PAGE
37 * preallocated page (tryalloc) 00 Z_EROFS_PREALLOCATED_PAGE
38 * cached/managed page 00 pointer to z_erofs_pcluster
39 * online page (file-backed, 01/10/11 sub-index << 2 | count
40 * some pages can be used for inplace I/O)
42 * page->mapping should be one of
44 * short-lived page NULL
45 * preallocated page NULL
46 * cached/managed page non-NULL or NULL (invalidated/truncated page)
47 * online page non-NULL
49 * For all managed pages, PG_private should be set with 1 extra refcount,
50 * which is used for page reclaim / migration.
54 * short-lived pages are pages directly from buddy system with specific
55 * page->private (no need to set PagePrivate since these are non-LRU /
56 * non-movable pages and bypass reclaim / migration code).
58 static inline bool z_erofs_is_shortlived_page(struct page *page)
60 if (page->private != Z_EROFS_SHORTLIVED_PAGE)
63 DBG_BUGON(page->mapping);
67 static inline bool z_erofs_put_shortlivedpage(struct page **pagepool,
70 if (!z_erofs_is_shortlived_page(page))
73 /* short-lived pages should not be used by others at the same time */
74 if (page_ref_count(page) > 1) {
77 /* follow the pcluster rule above. */
78 erofs_pagepool_add(pagepool, page);
83 #define MNGD_MAPPING(sbi) ((sbi)->managed_cache->i_mapping)
84 static inline bool erofs_page_is_managed(const struct erofs_sb_info *sbi,
87 return page->mapping == MNGD_MAPPING(sbi);
90 int z_erofs_fixup_insize(struct z_erofs_decompress_req *rq, const char *padbuf,
91 unsigned int padbufsize);
92 extern const struct z_erofs_decompressor erofs_decompressors[];
94 /* prototypes for specific algorithms */
95 int z_erofs_lzma_decompress(struct z_erofs_decompress_req *rq,
96 struct page **pagepool);
97 int z_erofs_deflate_decompress(struct z_erofs_decompress_req *rq,
98 struct page **pagepool);