1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright (C) 2017-2018 HUAWEI, Inc.
4 * https://www.huawei.com/
5 * Copyright (C) 2021, Alibaba Cloud
6 */
7 #ifndef __EROFS_INTERNAL_H
8 #define __EROFS_INTERNAL_H
9
10 #include <linux/fs.h>
11 #include <linux/dax.h>
12 #include <linux/dcache.h>
13 #include <linux/mm.h>
14 #include <linux/module.h>
15 #include <linux/pagemap.h>
16 #include <linux/bio.h>
17 #include <linux/magic.h>
18 #include <linux/slab.h>
19 #include <linux/vmalloc.h>
20 #include <linux/iomap.h>
21 #include "erofs_fs.h"
22
23 __printf(2, 3) void _erofs_printk(struct super_block *sb, const char *fmt, ...);
24 #define erofs_err(sb, fmt, ...) \
25 _erofs_printk(sb, KERN_ERR fmt "\n", ##__VA_ARGS__)
26 #define erofs_info(sb, fmt, ...) \
27 _erofs_printk(sb, KERN_INFO fmt "\n", ##__VA_ARGS__)
28
29 #ifdef CONFIG_EROFS_FS_DEBUG
30 #define DBG_BUGON BUG_ON
31 #else
32 #define DBG_BUGON(x) ((void)(x))
33 #endif /* !CONFIG_EROFS_FS_DEBUG */
34
35 /* EROFS_SUPER_MAGIC_V1 to represent the whole file system */
36 #define EROFS_SUPER_MAGIC EROFS_SUPER_MAGIC_V1
37
38 typedef u64 erofs_nid_t;
39 typedef u64 erofs_off_t;
40 typedef u64 erofs_blk_t;
41
42 struct erofs_device_info {
43 char *path;
44 struct erofs_fscache *fscache;
45 struct file *file;
46 struct dax_device *dax_dev;
47 u64 fsoff, dax_part_off;
48
49 erofs_blk_t blocks;
50 erofs_blk_t uniaddr;
51 };
52
53 enum {
54 EROFS_SYNC_DECOMPRESS_AUTO,
55 EROFS_SYNC_DECOMPRESS_FORCE_ON,
56 EROFS_SYNC_DECOMPRESS_FORCE_OFF
57 };
58
59 struct erofs_mount_opts {
60 /* current strategy of how to use managed cache */
61 unsigned char cache_strategy;
62 /* strategy of sync decompression (0 - auto, 1 - force on, 2 - force off) */
63 unsigned int sync_decompress;
64 /* threshold for decompression synchronously */
65 unsigned int max_sync_decompress_pages;
66 unsigned int mount_opt;
67 };
68
69 struct erofs_dev_context {
70 struct idr tree;
71 struct rw_semaphore rwsem;
72
73 unsigned int extra_devices;
74 bool flatdev;
75 };
76
77 /* all filesystem-wide lz4 configurations */
78 struct erofs_sb_lz4_info {
79 /* # of pages needed for EROFS lz4 rolling decompression */
80 u16 max_distance_pages;
81 /* maximum possible blocks for pclusters in the filesystem */
82 u16 max_pclusterblks;
83 };
84
85 struct erofs_domain {
86 refcount_t ref;
87 struct list_head list;
88 struct fscache_volume *volume;
89 char *domain_id;
90 };
91
92 struct erofs_fscache {
93 struct fscache_cookie *cookie;
94 struct inode *inode; /* anonymous inode for the blob */
95
96 /* used for share domain mode */
97 struct erofs_domain *domain;
98 struct list_head node;
99 refcount_t ref;
100 char *name;
101 };
102
103 struct erofs_xattr_prefix_item {
104 struct erofs_xattr_long_prefix *prefix;
105 u8 infix_len;
106 };
107
108 struct erofs_sb_info {
109 struct erofs_device_info dif0;
110 struct erofs_mount_opts opt; /* options */
111 #ifdef CONFIG_EROFS_FS_ZIP
112 /* list for all registered superblocks, mainly for shrinker */
113 struct list_head list;
114 struct mutex umount_mutex;
115
116 /* managed XArray arranged in physical block number */
117 struct xarray managed_pslots;
118
119 unsigned int shrinker_run_no;
120 u16 available_compr_algs;
121
122 /* pseudo inode to manage cached pages */
123 struct inode *managed_cache;
124
125 struct erofs_sb_lz4_info lz4;
126 #endif /* CONFIG_EROFS_FS_ZIP */
127 struct inode *packed_inode;
128 struct inode *metabox_inode;
129 struct erofs_dev_context *devs;
130 u64 total_blocks;
131
132 u32 meta_blkaddr;
133 #ifdef CONFIG_EROFS_FS_XATTR
134 u32 xattr_blkaddr;
135 u32 xattr_prefix_start;
136 u8 xattr_prefix_count;
137 struct erofs_xattr_prefix_item *xattr_prefixes;
138 unsigned int xattr_filter_reserved;
139 #endif
140 u16 device_id_mask; /* valid bits of device id to be used */
141
142 unsigned char islotbits; /* inode slot unit size in bit shift */
143 unsigned char blkszbits; /* filesystem block size in bit shift */
144
145 u32 sb_size; /* total superblock size */
146 u32 fixed_nsec;
147 s64 epoch;
148
149 /* what we really care is nid, rather than ino.. */
150 erofs_nid_t root_nid;
151 erofs_nid_t packed_nid;
152 erofs_nid_t metabox_nid;
153 /* used for statfs, f_files - f_favail */
154 u64 inos;
155
156 u32 feature_compat;
157 u32 feature_incompat;
158
159 /* sysfs support */
160 struct kobject s_kobj; /* /sys/fs/erofs/<devname> */
161 struct completion s_kobj_unregister;
162 erofs_off_t dir_ra_bytes;
163
164 /* fscache support */
165 struct fscache_volume *volume;
166 struct erofs_domain *domain;
167 char *fsid;
168 char *domain_id;
169 };
170
171 #define EROFS_SB(sb) ((struct erofs_sb_info *)(sb)->s_fs_info)
172 #define EROFS_I_SB(inode) ((struct erofs_sb_info *)(inode)->i_sb->s_fs_info)
173
174 /* Mount flags set via mount options or defaults */
175 #define EROFS_MOUNT_XATTR_USER 0x00000010
176 #define EROFS_MOUNT_POSIX_ACL 0x00000020
177 #define EROFS_MOUNT_DAX_ALWAYS 0x00000040
178 #define EROFS_MOUNT_DAX_NEVER 0x00000080
179 #define EROFS_MOUNT_DIRECT_IO 0x00000100
180
181 #define clear_opt(opt, option) ((opt)->mount_opt &= ~EROFS_MOUNT_##option)
182 #define set_opt(opt, option) ((opt)->mount_opt |= EROFS_MOUNT_##option)
183 #define test_opt(opt, option) ((opt)->mount_opt & EROFS_MOUNT_##option)
184
erofs_is_fileio_mode(struct erofs_sb_info * sbi)185 static inline bool erofs_is_fileio_mode(struct erofs_sb_info *sbi)
186 {
187 return IS_ENABLED(CONFIG_EROFS_FS_BACKED_BY_FILE) && sbi->dif0.file;
188 }
189
erofs_is_fscache_mode(struct super_block * sb)190 static inline bool erofs_is_fscache_mode(struct super_block *sb)
191 {
192 return IS_ENABLED(CONFIG_EROFS_FS_ONDEMAND) &&
193 !erofs_is_fileio_mode(EROFS_SB(sb)) && !sb->s_bdev;
194 }
195
196 enum {
197 EROFS_ZIP_CACHE_DISABLED,
198 EROFS_ZIP_CACHE_READAHEAD,
199 EROFS_ZIP_CACHE_READAROUND
200 };
201
202 struct erofs_buf {
203 struct address_space *mapping;
204 struct file *file;
205 u64 off;
206 struct page *page;
207 void *base;
208 };
209 #define __EROFS_BUF_INITIALIZER ((struct erofs_buf){ .page = NULL })
210
211 #define erofs_blknr(sb, pos) ((erofs_blk_t)((pos) >> (sb)->s_blocksize_bits))
212 #define erofs_blkoff(sb, pos) ((pos) & ((sb)->s_blocksize - 1))
213 #define erofs_pos(sb, blk) ((erofs_off_t)(blk) << (sb)->s_blocksize_bits)
214 #define erofs_iblks(i) (round_up((i)->i_size, i_blocksize(i)) >> (i)->i_blkbits)
215
216 #define EROFS_FEATURE_FUNCS(name, compat, feature) \
217 static inline bool erofs_sb_has_##name(struct erofs_sb_info *sbi) \
218 { \
219 return sbi->feature_##compat & EROFS_FEATURE_##feature; \
220 }
221
EROFS_FEATURE_FUNCS(zero_padding,incompat,INCOMPAT_ZERO_PADDING)222 EROFS_FEATURE_FUNCS(zero_padding, incompat, INCOMPAT_ZERO_PADDING)
223 EROFS_FEATURE_FUNCS(compr_cfgs, incompat, INCOMPAT_COMPR_CFGS)
224 EROFS_FEATURE_FUNCS(big_pcluster, incompat, INCOMPAT_BIG_PCLUSTER)
225 EROFS_FEATURE_FUNCS(chunked_file, incompat, INCOMPAT_CHUNKED_FILE)
226 EROFS_FEATURE_FUNCS(device_table, incompat, INCOMPAT_DEVICE_TABLE)
227 EROFS_FEATURE_FUNCS(compr_head2, incompat, INCOMPAT_COMPR_HEAD2)
228 EROFS_FEATURE_FUNCS(ztailpacking, incompat, INCOMPAT_ZTAILPACKING)
229 EROFS_FEATURE_FUNCS(fragments, incompat, INCOMPAT_FRAGMENTS)
230 EROFS_FEATURE_FUNCS(dedupe, incompat, INCOMPAT_DEDUPE)
231 EROFS_FEATURE_FUNCS(xattr_prefixes, incompat, INCOMPAT_XATTR_PREFIXES)
232 EROFS_FEATURE_FUNCS(48bit, incompat, INCOMPAT_48BIT)
233 EROFS_FEATURE_FUNCS(metabox, incompat, INCOMPAT_METABOX)
234 EROFS_FEATURE_FUNCS(sb_chksum, compat, COMPAT_SB_CHKSUM)
235 EROFS_FEATURE_FUNCS(xattr_filter, compat, COMPAT_XATTR_FILTER)
236 EROFS_FEATURE_FUNCS(shared_ea_in_metabox, compat, COMPAT_SHARED_EA_IN_METABOX)
237
238 static inline u64 erofs_nid_to_ino64(struct erofs_sb_info *sbi, erofs_nid_t nid)
239 {
240 if (!erofs_sb_has_metabox(sbi))
241 return nid;
242
243 /*
244 * When metadata compression is enabled, avoid generating excessively
245 * large inode numbers for metadata-compressed inodes. Shift NIDs in
246 * the 31-62 bit range left by one and move the metabox flag to bit 31.
247 *
248 * Note: on-disk NIDs remain unchanged as they are primarily used for
249 * compatibility with non-LFS 32-bit applications.
250 */
251 return ((nid << 1) & GENMASK_ULL(63, 32)) | (nid & GENMASK(30, 0)) |
252 ((nid >> EROFS_DIRENT_NID_METABOX_BIT) << 31);
253 }
254
255 /* atomic flag definitions */
256 #define EROFS_I_EA_INITED_BIT 0
257 #define EROFS_I_Z_INITED_BIT 1
258
259 /* bitlock definitions (arranged in reverse order) */
260 #define EROFS_I_BL_XATTR_BIT (BITS_PER_LONG - 1)
261 #define EROFS_I_BL_Z_BIT (BITS_PER_LONG - 2)
262
263 /* default readahead size of directories */
264 #define EROFS_DIR_RA_BYTES 16384
265
266 struct erofs_inode {
267 erofs_nid_t nid;
268
269 /* atomic flags (including bitlocks) */
270 unsigned long flags;
271
272 unsigned char datalayout;
273 unsigned char inode_isize;
274 bool dot_omitted;
275 unsigned int xattr_isize;
276
277 unsigned int xattr_name_filter;
278 unsigned int xattr_shared_count;
279 unsigned int *xattr_shared_xattrs;
280
281 union {
282 erofs_blk_t startblk;
283 struct {
284 unsigned short chunkformat;
285 unsigned char chunkbits;
286 };
287 #ifdef CONFIG_EROFS_FS_ZIP
288 struct {
289 unsigned short z_advise;
290 unsigned char z_algorithmtype[2];
291 unsigned char z_lclusterbits;
292 union {
293 u64 z_tailextent_headlcn;
294 u64 z_extents;
295 };
296 erofs_off_t z_fragmentoff;
297 unsigned short z_idata_size;
298 };
299 #endif /* CONFIG_EROFS_FS_ZIP */
300 };
301 /* the corresponding vfs inode */
302 struct inode vfs_inode;
303 };
304
305 #define EROFS_I(ptr) container_of(ptr, struct erofs_inode, vfs_inode)
306
erofs_inode_in_metabox(struct inode * inode)307 static inline bool erofs_inode_in_metabox(struct inode *inode)
308 {
309 return EROFS_I(inode)->nid & BIT_ULL(EROFS_DIRENT_NID_METABOX_BIT);
310 }
311
erofs_iloc(struct inode * inode)312 static inline erofs_off_t erofs_iloc(struct inode *inode)
313 {
314 struct erofs_sb_info *sbi = EROFS_I_SB(inode);
315 erofs_nid_t nid_lo = EROFS_I(inode)->nid & EROFS_DIRENT_NID_MASK;
316
317 if (erofs_inode_in_metabox(inode))
318 return nid_lo << sbi->islotbits;
319 return erofs_pos(inode->i_sb, sbi->meta_blkaddr) +
320 (nid_lo << sbi->islotbits);
321 }
322
erofs_inode_version(unsigned int ifmt)323 static inline unsigned int erofs_inode_version(unsigned int ifmt)
324 {
325 return (ifmt >> EROFS_I_VERSION_BIT) & EROFS_I_VERSION_MASK;
326 }
327
erofs_inode_datalayout(unsigned int ifmt)328 static inline unsigned int erofs_inode_datalayout(unsigned int ifmt)
329 {
330 return (ifmt >> EROFS_I_DATALAYOUT_BIT) & EROFS_I_DATALAYOUT_MASK;
331 }
332
333 /* reclaiming is never triggered when allocating new folios. */
erofs_grab_folio_nowait(struct address_space * as,pgoff_t index)334 static inline struct folio *erofs_grab_folio_nowait(struct address_space *as,
335 pgoff_t index)
336 {
337 return __filemap_get_folio(as, index,
338 FGP_LOCK|FGP_CREAT|FGP_NOFS|FGP_NOWAIT,
339 readahead_gfp_mask(as) & ~__GFP_RECLAIM);
340 }
341
342 /* Has a disk mapping */
343 #define EROFS_MAP_MAPPED 0x0001
344 /* Located in metadata (could be copied from bd_inode) */
345 #define EROFS_MAP_META 0x0002
346 /* The extent is encoded */
347 #define EROFS_MAP_ENCODED 0x0004
348 /* The length of extent is full */
349 #define EROFS_MAP_FULL_MAPPED 0x0008
350 /* Located in the special packed inode */
351 #define __EROFS_MAP_FRAGMENT 0x0010
352 /* The extent refers to partial decompressed data */
353 #define EROFS_MAP_PARTIAL_REF 0x0020
354
355 #define EROFS_MAP_FRAGMENT (EROFS_MAP_MAPPED | __EROFS_MAP_FRAGMENT)
356
357 struct erofs_map_blocks {
358 struct erofs_buf buf;
359
360 erofs_off_t m_pa, m_la;
361 u64 m_plen, m_llen;
362
363 unsigned short m_deviceid;
364 char m_algorithmformat;
365 unsigned int m_flags;
366 };
367
368 /*
369 * Used to get the exact decompressed length, e.g. fiemap (consider lookback
370 * approach instead if possible since it's more metadata lightweight.)
371 */
372 #define EROFS_GET_BLOCKS_FIEMAP 0x0001
373 /* Used to map the whole extent if non-negligible data is requested for LZMA */
374 #define EROFS_GET_BLOCKS_READMORE 0x0002
375 /* Used to map tail extent for tailpacking inline or fragment pcluster */
376 #define EROFS_GET_BLOCKS_FINDTAIL 0x0004
377
378 enum {
379 Z_EROFS_COMPRESSION_SHIFTED = Z_EROFS_COMPRESSION_MAX,
380 Z_EROFS_COMPRESSION_INTERLACED,
381 Z_EROFS_COMPRESSION_RUNTIME_MAX
382 };
383
384 struct erofs_map_dev {
385 struct super_block *m_sb;
386 struct erofs_device_info *m_dif;
387 struct block_device *m_bdev;
388
389 erofs_off_t m_pa;
390 unsigned int m_deviceid;
391 };
392
393 extern const struct super_operations erofs_sops;
394
395 extern const struct address_space_operations erofs_aops;
396 extern const struct address_space_operations erofs_fileio_aops;
397 extern const struct address_space_operations z_erofs_aops;
398 extern const struct address_space_operations erofs_fscache_access_aops;
399
400 extern const struct inode_operations erofs_generic_iops;
401 extern const struct inode_operations erofs_symlink_iops;
402 extern const struct inode_operations erofs_fast_symlink_iops;
403 extern const struct inode_operations erofs_dir_iops;
404
405 extern const struct file_operations erofs_file_fops;
406 extern const struct file_operations erofs_dir_fops;
407
408 extern const struct iomap_ops z_erofs_iomap_report_ops;
409
410 /* flags for erofs_fscache_register_cookie() */
411 #define EROFS_REG_COOKIE_SHARE 0x0001
412 #define EROFS_REG_COOKIE_NEED_NOEXIST 0x0002
413
414 void *erofs_read_metadata(struct super_block *sb, struct erofs_buf *buf,
415 erofs_off_t *offset, int *lengthp);
416 void erofs_unmap_metabuf(struct erofs_buf *buf);
417 void erofs_put_metabuf(struct erofs_buf *buf);
418 void *erofs_bread(struct erofs_buf *buf, erofs_off_t offset, bool need_kmap);
419 int erofs_init_metabuf(struct erofs_buf *buf, struct super_block *sb,
420 bool in_metabox);
421 void *erofs_read_metabuf(struct erofs_buf *buf, struct super_block *sb,
422 erofs_off_t offset, bool in_metabox);
423 int erofs_map_dev(struct super_block *sb, struct erofs_map_dev *dev);
424 int erofs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
425 u64 start, u64 len);
426 int erofs_map_blocks(struct inode *inode, struct erofs_map_blocks *map);
427 void erofs_onlinefolio_init(struct folio *folio);
428 void erofs_onlinefolio_split(struct folio *folio);
429 void erofs_onlinefolio_end(struct folio *folio, int err, bool dirty);
430 struct inode *erofs_iget(struct super_block *sb, erofs_nid_t nid);
431 int erofs_getattr(struct mnt_idmap *idmap, const struct path *path,
432 struct kstat *stat, u32 request_mask,
433 unsigned int query_flags);
434 int erofs_namei(struct inode *dir, const struct qstr *name,
435 erofs_nid_t *nid, unsigned int *d_type);
436
erofs_vm_map_ram(struct page ** pages,unsigned int count)437 static inline void *erofs_vm_map_ram(struct page **pages, unsigned int count)
438 {
439 int retried = 0;
440
441 while (1) {
442 void *p = vm_map_ram(pages, count, -1);
443
444 /* retry two more times (totally 3 times) */
445 if (p || ++retried >= 3)
446 return p;
447 vm_unmap_aliases();
448 }
449 return NULL;
450 }
451
452 int erofs_register_sysfs(struct super_block *sb);
453 void erofs_unregister_sysfs(struct super_block *sb);
454 int __init erofs_init_sysfs(void);
455 void erofs_exit_sysfs(void);
456
457 struct page *__erofs_allocpage(struct page **pagepool, gfp_t gfp, bool tryrsv);
erofs_allocpage(struct page ** pagepool,gfp_t gfp)458 static inline struct page *erofs_allocpage(struct page **pagepool, gfp_t gfp)
459 {
460 return __erofs_allocpage(pagepool, gfp, false);
461 }
erofs_pagepool_add(struct page ** pagepool,struct page * page)462 static inline void erofs_pagepool_add(struct page **pagepool, struct page *page)
463 {
464 set_page_private(page, (unsigned long)*pagepool);
465 *pagepool = page;
466 }
467 void erofs_release_pages(struct page **pagepool);
468
469 #ifdef CONFIG_EROFS_FS_ZIP
470 #define MNGD_MAPPING(sbi) ((sbi)->managed_cache->i_mapping)
471
472 extern atomic_long_t erofs_global_shrink_cnt;
473 void erofs_shrinker_register(struct super_block *sb);
474 void erofs_shrinker_unregister(struct super_block *sb);
475 int __init erofs_init_shrinker(void);
476 void erofs_exit_shrinker(void);
477 int __init z_erofs_init_subsystem(void);
478 void z_erofs_exit_subsystem(void);
479 int z_erofs_init_super(struct super_block *sb);
480 unsigned long z_erofs_shrink_scan(struct erofs_sb_info *sbi,
481 unsigned long nr_shrink);
482 int z_erofs_map_blocks_iter(struct inode *inode, struct erofs_map_blocks *map,
483 int flags);
484 void *z_erofs_get_gbuf(unsigned int requiredpages);
485 void z_erofs_put_gbuf(void *ptr);
486 int z_erofs_gbuf_growsize(unsigned int nrpages);
487 int __init z_erofs_gbuf_init(void);
488 void z_erofs_gbuf_exit(void);
489 int z_erofs_parse_cfgs(struct super_block *sb, struct erofs_super_block *dsb);
490 #else
erofs_shrinker_register(struct super_block * sb)491 static inline void erofs_shrinker_register(struct super_block *sb) {}
erofs_shrinker_unregister(struct super_block * sb)492 static inline void erofs_shrinker_unregister(struct super_block *sb) {}
erofs_init_shrinker(void)493 static inline int erofs_init_shrinker(void) { return 0; }
erofs_exit_shrinker(void)494 static inline void erofs_exit_shrinker(void) {}
z_erofs_init_subsystem(void)495 static inline int z_erofs_init_subsystem(void) { return 0; }
z_erofs_exit_subsystem(void)496 static inline void z_erofs_exit_subsystem(void) {}
z_erofs_init_super(struct super_block * sb)497 static inline int z_erofs_init_super(struct super_block *sb) { return 0; }
498 #endif /* !CONFIG_EROFS_FS_ZIP */
499
500 #ifdef CONFIG_EROFS_FS_BACKED_BY_FILE
501 struct bio *erofs_fileio_bio_alloc(struct erofs_map_dev *mdev);
502 void erofs_fileio_submit_bio(struct bio *bio);
503 #else
erofs_fileio_bio_alloc(struct erofs_map_dev * mdev)504 static inline struct bio *erofs_fileio_bio_alloc(struct erofs_map_dev *mdev) { return NULL; }
erofs_fileio_submit_bio(struct bio * bio)505 static inline void erofs_fileio_submit_bio(struct bio *bio) {}
506 #endif
507
508 #ifdef CONFIG_EROFS_FS_ONDEMAND
509 int erofs_fscache_register_fs(struct super_block *sb);
510 void erofs_fscache_unregister_fs(struct super_block *sb);
511
512 struct erofs_fscache *erofs_fscache_register_cookie(struct super_block *sb,
513 char *name, unsigned int flags);
514 void erofs_fscache_unregister_cookie(struct erofs_fscache *fscache);
515 struct bio *erofs_fscache_bio_alloc(struct erofs_map_dev *mdev);
516 void erofs_fscache_submit_bio(struct bio *bio);
517 #else
erofs_fscache_register_fs(struct super_block * sb)518 static inline int erofs_fscache_register_fs(struct super_block *sb)
519 {
520 return -EOPNOTSUPP;
521 }
erofs_fscache_unregister_fs(struct super_block * sb)522 static inline void erofs_fscache_unregister_fs(struct super_block *sb) {}
523
524 static inline
erofs_fscache_register_cookie(struct super_block * sb,char * name,unsigned int flags)525 struct erofs_fscache *erofs_fscache_register_cookie(struct super_block *sb,
526 char *name, unsigned int flags)
527 {
528 return ERR_PTR(-EOPNOTSUPP);
529 }
530
erofs_fscache_unregister_cookie(struct erofs_fscache * fscache)531 static inline void erofs_fscache_unregister_cookie(struct erofs_fscache *fscache)
532 {
533 }
erofs_fscache_bio_alloc(struct erofs_map_dev * mdev)534 static inline struct bio *erofs_fscache_bio_alloc(struct erofs_map_dev *mdev) { return NULL; }
erofs_fscache_submit_bio(struct bio * bio)535 static inline void erofs_fscache_submit_bio(struct bio *bio) {}
536 #endif
537
538 #define EFSCORRUPTED EUCLEAN /* Filesystem is corrupted */
539
540 #endif /* __EROFS_INTERNAL_H */
541