blob: 30e63b73a675afef0b75aea1ab3d7743a3c82b6f [file] [log] [blame]
Gao Xiang29b24f62019-07-31 23:57:31 +08001/* SPDX-License-Identifier: GPL-2.0-only */
2/*
Gao Xiangbfb86742018-07-26 20:21:45 +08003 * Copyright (C) 2017-2018 HUAWEI, Inc.
Alexander A. Klimov592e7cd2020-07-13 15:09:44 +02004 * https://www.huawei.com/
Gao Xiangbfb86742018-07-26 20:21:45 +08005 * Created by Gao Xiang <gaoxiang25@huawei.com>
Gao Xiangbfb86742018-07-26 20:21:45 +08006 */
Gao Xiang14f362b2019-07-31 23:57:36 +08007#ifndef __EROFS_INTERNAL_H
8#define __EROFS_INTERNAL_H
Gao Xiangbfb86742018-07-26 20:21:45 +08009
10#include <linux/fs.h>
11#include <linux/dcache.h>
12#include <linux/mm.h>
13#include <linux/pagemap.h>
14#include <linux/bio.h>
15#include <linux/buffer_head.h>
Gao Xiang47e49372019-08-23 05:36:59 +080016#include <linux/magic.h>
Gao Xiangbfb86742018-07-26 20:21:45 +080017#include <linux/slab.h>
18#include <linux/vmalloc.h>
19#include "erofs_fs.h"
20
21/* redefine pr_fmt "erofs: " */
22#undef pr_fmt
23#define pr_fmt(fmt) "erofs: " fmt
24
Gao Xiang4f761fa2019-09-04 10:09:09 +080025__printf(3, 4) void _erofs_err(struct super_block *sb,
26 const char *function, const char *fmt, ...);
27#define erofs_err(sb, fmt, ...) \
28 _erofs_err(sb, __func__, fmt "\n", ##__VA_ARGS__)
29__printf(3, 4) void _erofs_info(struct super_block *sb,
30 const char *function, const char *fmt, ...);
31#define erofs_info(sb, fmt, ...) \
32 _erofs_info(sb, __func__, fmt "\n", ##__VA_ARGS__)
Gao Xiangbfb86742018-07-26 20:21:45 +080033#ifdef CONFIG_EROFS_FS_DEBUG
Gao Xiang4f761fa2019-09-04 10:09:09 +080034#define erofs_dbg(x, ...) pr_debug(x "\n", ##__VA_ARGS__)
Gao Xiangbfb86742018-07-26 20:21:45 +080035#define DBG_BUGON BUG_ON
36#else
Gao Xiang4f761fa2019-09-04 10:09:09 +080037#define erofs_dbg(x, ...) ((void)0)
Gao Xiangeef16872018-11-23 01:15:59 +080038#define DBG_BUGON(x) ((void)(x))
Gao Xiang14f362b2019-07-31 23:57:36 +080039#endif /* !CONFIG_EROFS_FS_DEBUG */
Gao Xiangbfb86742018-07-26 20:21:45 +080040
41/* EROFS_SUPER_MAGIC_V1 to represent the whole file system */
42#define EROFS_SUPER_MAGIC EROFS_SUPER_MAGIC_V1
43
44typedef u64 erofs_nid_t;
Gao Xiang14f362b2019-07-31 23:57:36 +080045typedef u64 erofs_off_t;
46/* data type for filesystem-wide blocks number */
47typedef u32 erofs_blk_t;
Gao Xiangbfb86742018-07-26 20:21:45 +080048
Chao Yuf57a3fe2020-05-29 18:48:36 +080049struct erofs_fs_context {
50#ifdef CONFIG_EROFS_FS_ZIP
51 /* current strategy of how to use managed cache */
52 unsigned char cache_strategy;
Huang Jianan30048cd2021-03-17 11:54:48 +080053 /* strategy of sync decompression (false - auto, true - force on) */
54 bool readahead_sync_decompress;
Chao Yuf57a3fe2020-05-29 18:48:36 +080055
56 /* threshold for decompression synchronously */
57 unsigned int max_sync_decompress_pages;
58#endif
59 unsigned int mount_opt;
60};
61
Gao Xiangbfb86742018-07-26 20:21:45 +080062struct erofs_sb_info {
Gao Xiang22fe04a2019-07-31 23:57:39 +080063#ifdef CONFIG_EROFS_FS_ZIP
Gao Xiang2497ee42018-07-26 20:22:03 +080064 /* list for all registered superblocks, mainly for shrinker */
65 struct list_head list;
Gao Xianga1581312018-07-26 20:22:04 +080066 struct mutex umount_mutex;
Gao Xiang2497ee42018-07-26 20:22:03 +080067
Gao Xiang64094a02020-02-20 10:46:42 +080068 /* managed XArray arranged in physical block number */
69 struct xarray managed_pslots;
Gao Xiang22fe04a2019-07-31 23:57:39 +080070
Gao Xiang22fe04a2019-07-31 23:57:39 +080071 unsigned int shrinker_run_no;
72
Gao Xiang4279f3f2019-07-31 23:57:49 +080073 /* pseudo inode to manage cached pages */
74 struct inode *managed_cache;
Gao Xiang22fe04a2019-07-31 23:57:39 +080075#endif /* CONFIG_EROFS_FS_ZIP */
Gao Xiangbfb86742018-07-26 20:21:45 +080076 u32 blocks;
77 u32 meta_blkaddr;
Gao Xiangb17500a2018-07-26 20:21:52 +080078#ifdef CONFIG_EROFS_FS_XATTR
79 u32 xattr_blkaddr;
80#endif
Gao Xiangbfb86742018-07-26 20:21:45 +080081
82 /* inode slot unit size in bit shift */
83 unsigned char islotbits;
84
85 u32 build_time_nsec;
86 u64 build_time;
87
88 /* what we really care is nid, rather than ino.. */
89 erofs_nid_t root_nid;
90 /* used for statfs, f_files - f_favail */
91 u64 inos;
92
93 u8 uuid[16]; /* 128-bit uuid for volume */
94 u8 volume_name[16]; /* volume name */
Pratik Shindeb858a482019-11-04 10:49:37 +080095 u32 feature_compat;
Gao Xiang426a9302019-09-04 10:08:53 +080096 u32 feature_incompat;
Gao Xiang5efe5132019-06-13 16:35:41 +080097
Chao Yuf57a3fe2020-05-29 18:48:36 +080098 struct erofs_fs_context ctx; /* options */
Gao Xiangbfb86742018-07-26 20:21:45 +080099};
100
101#define EROFS_SB(sb) ((struct erofs_sb_info *)(sb)->s_fs_info)
102#define EROFS_I_SB(inode) ((struct erofs_sb_info *)(inode)->i_sb->s_fs_info)
103
Gao Xiangb17500a2018-07-26 20:21:52 +0800104/* Mount flags set via mount options or defaults */
105#define EROFS_MOUNT_XATTR_USER 0x00000010
106#define EROFS_MOUNT_POSIX_ACL 0x00000020
107
Chao Yuf57a3fe2020-05-29 18:48:36 +0800108#define clear_opt(ctx, option) ((ctx)->mount_opt &= ~EROFS_MOUNT_##option)
109#define set_opt(ctx, option) ((ctx)->mount_opt |= EROFS_MOUNT_##option)
110#define test_opt(ctx, option) ((ctx)->mount_opt & EROFS_MOUNT_##option)
Gao Xiangbfb86742018-07-26 20:21:45 +0800111
Gao Xiang4279f3f2019-07-31 23:57:49 +0800112enum {
113 EROFS_ZIP_CACHE_DISABLED,
114 EROFS_ZIP_CACHE_READAHEAD,
115 EROFS_ZIP_CACHE_READAROUND
116};
117
Chao Yuf57a3fe2020-05-29 18:48:36 +0800118#ifdef CONFIG_EROFS_FS_ZIP
Gao Xiang14f362b2019-07-31 23:57:36 +0800119#define EROFS_LOCKED_MAGIC (INT_MIN | 0xE0F510CCL)
120
Gao Xiange7e9a302018-07-26 20:22:05 +0800121/* basic unit of the workstation of a super_block */
122struct erofs_workgroup {
123 /* the workgroup index in the workstation */
124 pgoff_t index;
125
126 /* overall workgroup reference count */
127 atomic_t refcount;
128};
129
Gao Xiang73f5c662018-11-23 01:16:02 +0800130#if defined(CONFIG_SMP)
131static inline bool erofs_workgroup_try_to_freeze(struct erofs_workgroup *grp,
132 int val)
Gao Xiange7e9a302018-07-26 20:22:05 +0800133{
Gao Xiange7e9a302018-07-26 20:22:05 +0800134 preempt_disable();
Gao Xiang73f5c662018-11-23 01:16:02 +0800135 if (val != atomic_cmpxchg(&grp->refcount, val, EROFS_LOCKED_MAGIC)) {
Gao Xiange7e9a302018-07-26 20:22:05 +0800136 preempt_enable();
137 return false;
138 }
Gao Xiange7e9a302018-07-26 20:22:05 +0800139 return true;
140}
141
Gao Xiang73f5c662018-11-23 01:16:02 +0800142static inline void erofs_workgroup_unfreeze(struct erofs_workgroup *grp,
143 int orig_val)
Gao Xiange7e9a302018-07-26 20:22:05 +0800144{
Gao Xiang948bbdb2018-11-23 01:16:03 +0800145 /*
146 * other observers should notice all modifications
147 * in the freezing period.
148 */
149 smp_mb();
Gao Xiang73f5c662018-11-23 01:16:02 +0800150 atomic_set(&grp->refcount, orig_val);
Gao Xiange7e9a302018-07-26 20:22:05 +0800151 preempt_enable();
152}
153
Gao Xiangdf134b82018-11-23 01:16:01 +0800154static inline int erofs_wait_on_workgroup_freezed(struct erofs_workgroup *grp)
155{
156 return atomic_cond_read_relaxed(&grp->refcount,
157 VAL != EROFS_LOCKED_MAGIC);
158}
159#else
Gao Xiang73f5c662018-11-23 01:16:02 +0800160static inline bool erofs_workgroup_try_to_freeze(struct erofs_workgroup *grp,
161 int val)
162{
163 preempt_disable();
164 /* no need to spin on UP platforms, let's just disable preemption. */
165 if (val != atomic_read(&grp->refcount)) {
166 preempt_enable();
167 return false;
168 }
169 return true;
170}
171
172static inline void erofs_workgroup_unfreeze(struct erofs_workgroup *grp,
173 int orig_val)
174{
175 preempt_enable();
176}
177
Gao Xiangdf134b82018-11-23 01:16:01 +0800178static inline int erofs_wait_on_workgroup_freezed(struct erofs_workgroup *grp)
179{
180 int v = atomic_read(&grp->refcount);
181
182 /* workgroup is never freezed on uniprocessor systems */
183 DBG_BUGON(v == EROFS_LOCKED_MAGIC);
184 return v;
185}
Gao Xiang14f362b2019-07-31 23:57:36 +0800186#endif /* !CONFIG_SMP */
Gao Xiangdf134b82018-11-23 01:16:01 +0800187
Gao Xiang14f362b2019-07-31 23:57:36 +0800188/* hard limit of pages per compressed cluster */
189#define Z_EROFS_CLUSTER_MAX_PAGES (CONFIG_EROFS_FS_CLUSTER_PAGE_LIMIT)
190#define EROFS_PCPUBUF_NR_PAGES Z_EROFS_CLUSTER_MAX_PAGES
Gao Xiang0a0b7e62018-10-09 21:43:53 +0800191#else
Gao Xiang14f362b2019-07-31 23:57:36 +0800192#define EROFS_PCPUBUF_NR_PAGES 0
Gao Xiang14f362b2019-07-31 23:57:36 +0800193#endif /* !CONFIG_EROFS_FS_ZIP */
Gao Xiange7e9a302018-07-26 20:22:05 +0800194
Gao Xiangbfb86742018-07-26 20:21:45 +0800195/* we strictly follow PAGE_SIZE and no buffer head yet */
196#define LOG_BLOCK_SIZE PAGE_SHIFT
197
198#undef LOG_SECTORS_PER_BLOCK
199#define LOG_SECTORS_PER_BLOCK (PAGE_SHIFT - 9)
200
201#undef SECTORS_PER_BLOCK
202#define SECTORS_PER_BLOCK (1 << SECTORS_PER_BLOCK)
203
204#define EROFS_BLKSIZ (1 << LOG_BLOCK_SIZE)
205
206#if (EROFS_BLKSIZ % 4096 || !EROFS_BLKSIZ)
207#error erofs cannot be used in this platform
208#endif
209
210#define ROOT_NID(sb) ((sb)->root_nid)
211
Gao Xiangbfb86742018-07-26 20:21:45 +0800212#define erofs_blknr(addr) ((addr) / EROFS_BLKSIZ)
213#define erofs_blkoff(addr) ((addr) % EROFS_BLKSIZ)
214#define blknr_to_addr(nr) ((erofs_off_t)(nr) * EROFS_BLKSIZ)
215
216static inline erofs_off_t iloc(struct erofs_sb_info *sbi, erofs_nid_t nid)
217{
218 return blknr_to_addr(sbi->meta_blkaddr) + (nid << sbi->islotbits);
219}
220
Gao Xiang62dc4592019-02-18 15:19:04 +0800221/* atomic flag definitions */
Gao Xianga5876e22019-09-04 10:08:56 +0800222#define EROFS_I_EA_INITED_BIT 0
223#define EROFS_I_Z_INITED_BIT 1
Gao Xiang62dc4592019-02-18 15:19:04 +0800224
225/* bitlock definitions (arranged in reverse order) */
Gao Xianga5876e22019-09-04 10:08:56 +0800226#define EROFS_I_BL_XATTR_BIT (BITS_PER_LONG - 1)
227#define EROFS_I_BL_Z_BIT (BITS_PER_LONG - 2)
Gao Xiangbfb86742018-07-26 20:21:45 +0800228
Gao Xianga5876e22019-09-04 10:08:56 +0800229struct erofs_inode {
Gao Xiangbfb86742018-07-26 20:21:45 +0800230 erofs_nid_t nid;
Gao Xiang62dc4592019-02-18 15:19:04 +0800231
232 /* atomic flags (including bitlocks) */
233 unsigned long flags;
Gao Xiangbfb86742018-07-26 20:21:45 +0800234
Gao Xiang8a765682019-09-04 10:08:54 +0800235 unsigned char datalayout;
Gao Xiangbfb86742018-07-26 20:21:45 +0800236 unsigned char inode_isize;
237 unsigned short xattr_isize;
238
Pratik Shindee82a9a12019-07-15 17:51:27 +0530239 unsigned int xattr_shared_count;
240 unsigned int *xattr_shared_xattrs;
Gao Xiangbfb86742018-07-26 20:21:45 +0800241
Gao Xiang152a3332019-06-24 15:22:52 +0800242 union {
243 erofs_blk_t raw_blkaddr;
244#ifdef CONFIG_EROFS_FS_ZIP
245 struct {
246 unsigned short z_advise;
247 unsigned char z_algorithmtype[2];
248 unsigned char z_logical_clusterbits;
249 unsigned char z_physical_clusterbits[2];
250 };
Gao Xiang14f362b2019-07-31 23:57:36 +0800251#endif /* CONFIG_EROFS_FS_ZIP */
Gao Xiang152a3332019-06-24 15:22:52 +0800252 };
Gao Xiangbfb86742018-07-26 20:21:45 +0800253 /* the corresponding vfs inode */
254 struct inode vfs_inode;
255};
256
Gao Xianga5876e22019-09-04 10:08:56 +0800257#define EROFS_I(ptr) \
258 container_of(ptr, struct erofs_inode, vfs_inode)
Gao Xiangbfb86742018-07-26 20:21:45 +0800259
Gao Xiang99634bf2019-09-04 10:09:05 +0800260static inline unsigned long erofs_inode_datablocks(struct inode *inode)
Gao Xiangbfb86742018-07-26 20:21:45 +0800261{
262 /* since i_size cannot be changed */
263 return DIV_ROUND_UP(inode->i_size, EROFS_BLKSIZ);
264}
265
Gao Xiang8a765682019-09-04 10:08:54 +0800266static inline unsigned int erofs_bitrange(unsigned int value, unsigned int bit,
267 unsigned int bits)
Gao Xiangbfb86742018-07-26 20:21:45 +0800268{
Gao Xiang8a765682019-09-04 10:08:54 +0800269
270 return (value >> bit) & ((1 << bits) - 1);
Gao Xiangbfb86742018-07-26 20:21:45 +0800271}
272
Gao Xiang8a765682019-09-04 10:08:54 +0800273
274static inline unsigned int erofs_inode_version(unsigned int value)
Gao Xiangbfb86742018-07-26 20:21:45 +0800275{
Gao Xiang8a765682019-09-04 10:08:54 +0800276 return erofs_bitrange(value, EROFS_I_VERSION_BIT,
277 EROFS_I_VERSION_BITS);
278}
279
280static inline unsigned int erofs_inode_datalayout(unsigned int value)
281{
282 return erofs_bitrange(value, EROFS_I_DATALAYOUT_BIT,
283 EROFS_I_DATALAYOUT_BITS);
Gao Xiangbfb86742018-07-26 20:21:45 +0800284}
285
286extern const struct super_operations erofs_sops;
Gao Xiangbfb86742018-07-26 20:21:45 +0800287
288extern const struct address_space_operations erofs_raw_access_aops;
Gao Xiang0c638f72019-11-08 11:37:33 +0800289extern const struct address_space_operations z_erofs_aops;
Gao Xiangbfb86742018-07-26 20:21:45 +0800290
291/*
292 * Logical to physical block mapping, used by erofs_map_blocks()
293 *
294 * Different with other file systems, it is used for 2 access modes:
295 *
296 * 1) RAW access mode:
297 *
298 * Users pass a valid (m_lblk, m_lofs -- usually 0) pair,
299 * and get the valid m_pblk, m_pofs and the longest m_len(in bytes).
300 *
301 * Note that m_lblk in the RAW access mode refers to the number of
302 * the compressed ondisk block rather than the uncompressed
303 * in-memory block for the compressed file.
304 *
305 * m_pofs equals to m_lofs except for the inline data page.
306 *
307 * 2) Normal access mode:
308 *
309 * If the inode is not compressed, it has no difference with
310 * the RAW access mode. However, if the inode is compressed,
311 * users should pass a valid (m_lblk, m_lofs) pair, and get
312 * the needed m_pblk, m_pofs, m_len to get the compressed data
313 * and the updated m_lblk, m_lofs which indicates the start
314 * of the corresponding uncompressed data in the file.
315 */
316enum {
317 BH_Zipped = BH_PrivateStart,
Gao Xiangb6a76182019-06-24 15:22:58 +0800318 BH_FullMapped,
Gao Xiangbfb86742018-07-26 20:21:45 +0800319};
320
321/* Has a disk mapping */
322#define EROFS_MAP_MAPPED (1 << BH_Mapped)
323/* Located in metadata (could be copied from bd_inode) */
324#define EROFS_MAP_META (1 << BH_Meta)
325/* The extent has been compressed */
326#define EROFS_MAP_ZIPPED (1 << BH_Zipped)
Gao Xiangb6a76182019-06-24 15:22:58 +0800327/* The length of extent is full */
328#define EROFS_MAP_FULL_MAPPED (1 << BH_FullMapped)
Gao Xiangbfb86742018-07-26 20:21:45 +0800329
330struct erofs_map_blocks {
331 erofs_off_t m_pa, m_la;
332 u64 m_plen, m_llen;
333
334 unsigned int m_flags;
Chao Yu3b423412019-01-15 09:42:21 +0800335
336 struct page *mpage;
Gao Xiangbfb86742018-07-26 20:21:45 +0800337};
338
339/* Flags used by erofs_map_blocks() */
340#define EROFS_GET_BLOCKS_RAW 0x0001
341
Gao Xiang152a3332019-06-24 15:22:52 +0800342/* zmap.c */
Chao Yu3b423412019-01-15 09:42:21 +0800343#ifdef CONFIG_EROFS_FS_ZIP
Gao Xiang152a3332019-06-24 15:22:52 +0800344int z_erofs_fill_inode(struct inode *inode);
Chao Yu3b423412019-01-15 09:42:21 +0800345int z_erofs_map_blocks_iter(struct inode *inode,
346 struct erofs_map_blocks *map,
347 int flags);
348#else
Gao Xiangff784a72019-08-14 18:37:05 +0800349static inline int z_erofs_fill_inode(struct inode *inode) { return -EOPNOTSUPP; }
Chao Yu3b423412019-01-15 09:42:21 +0800350static inline int z_erofs_map_blocks_iter(struct inode *inode,
351 struct erofs_map_blocks *map,
352 int flags)
353{
Gao Xiangff784a72019-08-14 18:37:05 +0800354 return -EOPNOTSUPP;
Chao Yu3b423412019-01-15 09:42:21 +0800355}
Gao Xiang14f362b2019-07-31 23:57:36 +0800356#endif /* !CONFIG_EROFS_FS_ZIP */
Chao Yu3b423412019-01-15 09:42:21 +0800357
Gao Xiangbfb86742018-07-26 20:21:45 +0800358/* data.c */
Gao Xiange655b5b2019-09-04 10:09:03 +0800359struct page *erofs_get_meta_page(struct super_block *sb, erofs_blk_t blkaddr);
Gao Xiang6e789012018-08-21 22:49:30 +0800360
Gao Xiang2e1d6632019-01-16 16:59:56 +0800361int erofs_map_blocks(struct inode *, struct erofs_map_blocks *, int);
Gao Xiangbfb86742018-07-26 20:21:45 +0800362
Gao Xiangbfb86742018-07-26 20:21:45 +0800363/* inode.c */
Gao Xiang2abd7812018-10-09 22:07:13 +0800364static inline unsigned long erofs_inode_hash(erofs_nid_t nid)
365{
366#if BITS_PER_LONG == 32
367 return (nid >> 32) ^ (nid & 0xffffffff);
368#else
369 return nid;
370#endif
371}
372
Gao Xiang60939822019-01-14 19:40:24 +0800373extern const struct inode_operations erofs_generic_iops;
374extern const struct inode_operations erofs_symlink_iops;
375extern const struct inode_operations erofs_fast_symlink_iops;
Gao Xiangb17500a2018-07-26 20:21:52 +0800376
Gao Xiang2e1d6632019-01-16 16:59:56 +0800377struct inode *erofs_iget(struct super_block *sb, erofs_nid_t nid, bool dir);
Christian Brauner549c7292021-01-21 14:19:43 +0100378int erofs_getattr(struct user_namespace *mnt_userns, const struct path *path,
379 struct kstat *stat, u32 request_mask,
380 unsigned int query_flags);
Gao Xiang2e1d6632019-01-16 16:59:56 +0800381
Gao Xiang60939822019-01-14 19:40:24 +0800382/* namei.c */
383extern const struct inode_operations erofs_dir_iops;
384
385int erofs_namei(struct inode *dir, struct qstr *name,
386 erofs_nid_t *nid, unsigned int *d_type);
387
388/* dir.c */
389extern const struct file_operations erofs_dir_fops;
390
Gao Xiang14f362b2019-07-31 23:57:36 +0800391/* utils.c / zdata.c */
Gao Xiang5ddcee12019-11-21 21:59:54 +0800392struct page *erofs_allocpage(struct list_head *pool, gfp_t gfp);
Gao Xiangfa61a332019-06-24 15:22:53 +0800393
394#if (EROFS_PCPUBUF_NR_PAGES > 0)
395void *erofs_get_pcpubuf(unsigned int pagenr);
396#define erofs_put_pcpubuf(buf) do { \
397 (void)&(buf); \
398 preempt_enable(); \
399} while (0)
400#else
401static inline void *erofs_get_pcpubuf(unsigned int pagenr)
402{
Gao Xiangff784a72019-08-14 18:37:05 +0800403 return ERR_PTR(-EOPNOTSUPP);
Gao Xiangfa61a332019-06-24 15:22:53 +0800404}
405
406#define erofs_put_pcpubuf(buf) do {} while (0)
407#endif
408
Gao Xiang22fe04a2019-07-31 23:57:39 +0800409#ifdef CONFIG_EROFS_FS_ZIP
Gao Xiang14f362b2019-07-31 23:57:36 +0800410int erofs_workgroup_put(struct erofs_workgroup *grp);
411struct erofs_workgroup *erofs_find_workgroup(struct super_block *sb,
Vladimir Zapolskiy997626d2020-01-02 14:01:16 +0200412 pgoff_t index);
Gao Xiang64094a02020-02-20 10:46:42 +0800413struct erofs_workgroup *erofs_insert_workgroup(struct super_block *sb,
414 struct erofs_workgroup *grp);
Gao Xiang14f362b2019-07-31 23:57:36 +0800415void erofs_workgroup_free_rcu(struct erofs_workgroup *grp);
Gao Xiang22fe04a2019-07-31 23:57:39 +0800416void erofs_shrinker_register(struct super_block *sb);
417void erofs_shrinker_unregister(struct super_block *sb);
418int __init erofs_init_shrinker(void);
419void erofs_exit_shrinker(void);
420int __init z_erofs_init_zip_subsystem(void);
421void z_erofs_exit_zip_subsystem(void);
Gao Xiang14f362b2019-07-31 23:57:36 +0800422int erofs_try_to_free_all_cached_pages(struct erofs_sb_info *sbi,
423 struct erofs_workgroup *egrp);
424int erofs_try_to_free_cached_page(struct address_space *mapping,
425 struct page *page);
Gao Xiang22fe04a2019-07-31 23:57:39 +0800426#else
427static inline void erofs_shrinker_register(struct super_block *sb) {}
428static inline void erofs_shrinker_unregister(struct super_block *sb) {}
429static inline int erofs_init_shrinker(void) { return 0; }
430static inline void erofs_exit_shrinker(void) {}
431static inline int z_erofs_init_zip_subsystem(void) { return 0; }
432static inline void z_erofs_exit_zip_subsystem(void) {}
433#endif /* !CONFIG_EROFS_FS_ZIP */
Gao Xiang2e1d6632019-01-16 16:59:56 +0800434
Gao Xianga6b9b1d2019-08-14 18:37:03 +0800435#define EFSCORRUPTED EUCLEAN /* Filesystem is corrupted */
436
Gao Xiang14f362b2019-07-31 23:57:36 +0800437#endif /* __EROFS_INTERNAL_H */
Gao Xiangbfb86742018-07-26 20:21:45 +0800438