xref: /openbmc/linux/fs/erofs/zdata.c (revision 7674a42f)
147e4937aSGao Xiang // SPDX-License-Identifier: GPL-2.0-only
247e4937aSGao Xiang /*
347e4937aSGao Xiang  * Copyright (C) 2018 HUAWEI, Inc.
4592e7cd0SAlexander A. Klimov  *             https://www.huawei.com/
506a304cdSGao Xiang  * Copyright (C) 2022 Alibaba Cloud
647e4937aSGao Xiang  */
747e4937aSGao Xiang #include "compress.h"
899486c51SChristoph Hellwig #include <linux/psi.h>
93fffb589SSandeep Dhavale #include <linux/cpuhotplug.h>
1047e4937aSGao Xiang #include <trace/events/erofs.h>
1147e4937aSGao Xiang 
12a9a94d93SGao Xiang #define Z_EROFS_PCLUSTER_MAX_PAGES	(Z_EROFS_PCLUSTER_MAX_SIZE / PAGE_SIZE)
13a9a94d93SGao Xiang #define Z_EROFS_INLINE_BVECS		2
14a9a94d93SGao Xiang 
15a9a94d93SGao Xiang /*
16a9a94d93SGao Xiang  * let's leave a type here in case of introducing
17a9a94d93SGao Xiang  * another tagged pointer later.
18a9a94d93SGao Xiang  */
19a9a94d93SGao Xiang typedef void *z_erofs_next_pcluster_t;
20a9a94d93SGao Xiang 
21a9a94d93SGao Xiang struct z_erofs_bvec {
22a9a94d93SGao Xiang 	struct page *page;
23a9a94d93SGao Xiang 	int offset;
24a9a94d93SGao Xiang 	unsigned int end;
25a9a94d93SGao Xiang };
26a9a94d93SGao Xiang 
27a9a94d93SGao Xiang #define __Z_EROFS_BVSET(name, total) \
28a9a94d93SGao Xiang struct name { \
29a9a94d93SGao Xiang 	/* point to the next page which contains the following bvecs */ \
30a9a94d93SGao Xiang 	struct page *nextpage; \
31a9a94d93SGao Xiang 	struct z_erofs_bvec bvec[total]; \
32a9a94d93SGao Xiang }
33a9a94d93SGao Xiang __Z_EROFS_BVSET(z_erofs_bvset,);
34a9a94d93SGao Xiang __Z_EROFS_BVSET(z_erofs_bvset_inline, Z_EROFS_INLINE_BVECS);
35a9a94d93SGao Xiang 
36a9a94d93SGao Xiang /*
37a9a94d93SGao Xiang  * Structure fields follow one of the following exclusion rules.
38a9a94d93SGao Xiang  *
39a9a94d93SGao Xiang  * I: Modifiable by initialization/destruction paths and read-only
40a9a94d93SGao Xiang  *    for everyone else;
41a9a94d93SGao Xiang  *
42a9a94d93SGao Xiang  * L: Field should be protected by the pcluster lock;
43a9a94d93SGao Xiang  *
44a9a94d93SGao Xiang  * A: Field should be accessed / updated in atomic for parallelized code.
45a9a94d93SGao Xiang  */
46a9a94d93SGao Xiang struct z_erofs_pcluster {
47a9a94d93SGao Xiang 	struct erofs_workgroup obj;
48a9a94d93SGao Xiang 	struct mutex lock;
49a9a94d93SGao Xiang 
50a9a94d93SGao Xiang 	/* A: point to next chained pcluster or TAILs */
51a9a94d93SGao Xiang 	z_erofs_next_pcluster_t next;
52a9a94d93SGao Xiang 
53a9a94d93SGao Xiang 	/* L: the maximum decompression size of this round */
54a9a94d93SGao Xiang 	unsigned int length;
55a9a94d93SGao Xiang 
56a9a94d93SGao Xiang 	/* L: total number of bvecs */
57a9a94d93SGao Xiang 	unsigned int vcnt;
58a9a94d93SGao Xiang 
59a9a94d93SGao Xiang 	/* I: page offset of start position of decompression */
60a9a94d93SGao Xiang 	unsigned short pageofs_out;
61a9a94d93SGao Xiang 
62a9a94d93SGao Xiang 	/* I: page offset of inline compressed data */
63a9a94d93SGao Xiang 	unsigned short pageofs_in;
64a9a94d93SGao Xiang 
65a9a94d93SGao Xiang 	union {
66a9a94d93SGao Xiang 		/* L: inline a certain number of bvec for bootstrap */
67a9a94d93SGao Xiang 		struct z_erofs_bvset_inline bvset;
68a9a94d93SGao Xiang 
69a9a94d93SGao Xiang 		/* I: can be used to free the pcluster by RCU. */
70a9a94d93SGao Xiang 		struct rcu_head rcu;
71a9a94d93SGao Xiang 	};
72a9a94d93SGao Xiang 
73a9a94d93SGao Xiang 	union {
74a9a94d93SGao Xiang 		/* I: physical cluster size in pages */
75a9a94d93SGao Xiang 		unsigned short pclusterpages;
76a9a94d93SGao Xiang 
77a9a94d93SGao Xiang 		/* I: tailpacking inline compressed size */
78a9a94d93SGao Xiang 		unsigned short tailpacking_size;
79a9a94d93SGao Xiang 	};
80a9a94d93SGao Xiang 
81a9a94d93SGao Xiang 	/* I: compression algorithm format */
82a9a94d93SGao Xiang 	unsigned char algorithmformat;
83a9a94d93SGao Xiang 
84a9a94d93SGao Xiang 	/* L: whether partial decompression or not */
85a9a94d93SGao Xiang 	bool partial;
86a9a94d93SGao Xiang 
87a9a94d93SGao Xiang 	/* L: indicate several pageofs_outs or not */
88a9a94d93SGao Xiang 	bool multibases;
89a9a94d93SGao Xiang 
90a9a94d93SGao Xiang 	/* A: compressed bvecs (can be cached or inplaced pages) */
91a9a94d93SGao Xiang 	struct z_erofs_bvec compressed_bvecs[];
92a9a94d93SGao Xiang };
93a9a94d93SGao Xiang 
94a9a94d93SGao Xiang /* let's avoid the valid 32-bit kernel addresses */
95a9a94d93SGao Xiang 
96967c28b2SGao Xiang /* the end of a chain of pclusters */
97a9a94d93SGao Xiang #define Z_EROFS_PCLUSTER_TAIL           ((void *)0x5F0ECAFE)
98a9a94d93SGao Xiang #define Z_EROFS_PCLUSTER_NIL            (NULL)
99a9a94d93SGao Xiang 
100a9a94d93SGao Xiang struct z_erofs_decompressqueue {
101a9a94d93SGao Xiang 	struct super_block *sb;
102a9a94d93SGao Xiang 	atomic_t pending_bios;
103a9a94d93SGao Xiang 	z_erofs_next_pcluster_t head;
104a9a94d93SGao Xiang 
105a9a94d93SGao Xiang 	union {
106a9a94d93SGao Xiang 		struct completion done;
107a9a94d93SGao Xiang 		struct work_struct work;
1083fffb589SSandeep Dhavale 		struct kthread_work kthread_work;
109a9a94d93SGao Xiang 	} u;
110a9a94d93SGao Xiang 	bool eio, sync;
111a9a94d93SGao Xiang };
112a9a94d93SGao Xiang 
113a9a94d93SGao Xiang static inline bool z_erofs_is_inline_pcluster(struct z_erofs_pcluster *pcl)
114a9a94d93SGao Xiang {
115a9a94d93SGao Xiang 	return !pcl->obj.index;
116a9a94d93SGao Xiang }
117a9a94d93SGao Xiang 
118a9a94d93SGao Xiang static inline unsigned int z_erofs_pclusterpages(struct z_erofs_pcluster *pcl)
119a9a94d93SGao Xiang {
120a9a94d93SGao Xiang 	if (z_erofs_is_inline_pcluster(pcl))
121a9a94d93SGao Xiang 		return 1;
122a9a94d93SGao Xiang 	return pcl->pclusterpages;
123a9a94d93SGao Xiang }
124a9a94d93SGao Xiang 
125a9a94d93SGao Xiang /*
126a9a94d93SGao Xiang  * bit 30: I/O error occurred on this page
127a9a94d93SGao Xiang  * bit 0 - 29: remaining parts to complete this page
128a9a94d93SGao Xiang  */
129a9a94d93SGao Xiang #define Z_EROFS_PAGE_EIO			(1 << 30)
130a9a94d93SGao Xiang 
131a9a94d93SGao Xiang static inline void z_erofs_onlinepage_init(struct page *page)
132a9a94d93SGao Xiang {
133a9a94d93SGao Xiang 	union {
134a9a94d93SGao Xiang 		atomic_t o;
135a9a94d93SGao Xiang 		unsigned long v;
136a9a94d93SGao Xiang 	} u = { .o = ATOMIC_INIT(1) };
137a9a94d93SGao Xiang 
138a9a94d93SGao Xiang 	set_page_private(page, u.v);
139a9a94d93SGao Xiang 	smp_wmb();
140a9a94d93SGao Xiang 	SetPagePrivate(page);
141a9a94d93SGao Xiang }
142a9a94d93SGao Xiang 
143a9a94d93SGao Xiang static inline void z_erofs_onlinepage_split(struct page *page)
144a9a94d93SGao Xiang {
145a9a94d93SGao Xiang 	atomic_inc((atomic_t *)&page->private);
146a9a94d93SGao Xiang }
147a9a94d93SGao Xiang 
148a9a94d93SGao Xiang static inline void z_erofs_page_mark_eio(struct page *page)
149a9a94d93SGao Xiang {
150a9a94d93SGao Xiang 	int orig;
151a9a94d93SGao Xiang 
152a9a94d93SGao Xiang 	do {
153a9a94d93SGao Xiang 		orig = atomic_read((atomic_t *)&page->private);
154a9a94d93SGao Xiang 	} while (atomic_cmpxchg((atomic_t *)&page->private, orig,
155a9a94d93SGao Xiang 				orig | Z_EROFS_PAGE_EIO) != orig);
156a9a94d93SGao Xiang }
157a9a94d93SGao Xiang 
158a9a94d93SGao Xiang static inline void z_erofs_onlinepage_endio(struct page *page)
159a9a94d93SGao Xiang {
160a9a94d93SGao Xiang 	unsigned int v;
161a9a94d93SGao Xiang 
162a9a94d93SGao Xiang 	DBG_BUGON(!PagePrivate(page));
163a9a94d93SGao Xiang 	v = atomic_dec_return((atomic_t *)&page->private);
164a9a94d93SGao Xiang 	if (!(v & ~Z_EROFS_PAGE_EIO)) {
165a9a94d93SGao Xiang 		set_page_private(page, 0);
166a9a94d93SGao Xiang 		ClearPagePrivate(page);
167a9a94d93SGao Xiang 		if (!(v & Z_EROFS_PAGE_EIO))
168a9a94d93SGao Xiang 			SetPageUptodate(page);
169a9a94d93SGao Xiang 		unlock_page(page);
170a9a94d93SGao Xiang 	}
171a9a94d93SGao Xiang }
172a9a94d93SGao Xiang 
173a9a94d93SGao Xiang #define Z_EROFS_ONSTACK_PAGES		32
174a9a94d93SGao Xiang 
17547e4937aSGao Xiang /*
1769f6cc76eSGao Xiang  * since pclustersize is variable for big pcluster feature, introduce slab
1779f6cc76eSGao Xiang  * pools implementation for different pcluster sizes.
1789f6cc76eSGao Xiang  */
1799f6cc76eSGao Xiang struct z_erofs_pcluster_slab {
1809f6cc76eSGao Xiang 	struct kmem_cache *slab;
1819f6cc76eSGao Xiang 	unsigned int maxpages;
1829f6cc76eSGao Xiang 	char name[48];
1839f6cc76eSGao Xiang };
1849f6cc76eSGao Xiang 
1859f6cc76eSGao Xiang #define _PCLP(n) { .maxpages = n }
1869f6cc76eSGao Xiang 
1879f6cc76eSGao Xiang static struct z_erofs_pcluster_slab pcluster_pool[] __read_mostly = {
1889f6cc76eSGao Xiang 	_PCLP(1), _PCLP(4), _PCLP(16), _PCLP(64), _PCLP(128),
1899f6cc76eSGao Xiang 	_PCLP(Z_EROFS_PCLUSTER_MAX_PAGES)
1909f6cc76eSGao Xiang };
1919f6cc76eSGao Xiang 
19206a304cdSGao Xiang struct z_erofs_bvec_iter {
19306a304cdSGao Xiang 	struct page *bvpage;
19406a304cdSGao Xiang 	struct z_erofs_bvset *bvset;
19506a304cdSGao Xiang 	unsigned int nr, cur;
19606a304cdSGao Xiang };
19706a304cdSGao Xiang 
19806a304cdSGao Xiang static struct page *z_erofs_bvec_iter_end(struct z_erofs_bvec_iter *iter)
19906a304cdSGao Xiang {
20006a304cdSGao Xiang 	if (iter->bvpage)
20106a304cdSGao Xiang 		kunmap_local(iter->bvset);
20206a304cdSGao Xiang 	return iter->bvpage;
20306a304cdSGao Xiang }
20406a304cdSGao Xiang 
20506a304cdSGao Xiang static struct page *z_erofs_bvset_flip(struct z_erofs_bvec_iter *iter)
20606a304cdSGao Xiang {
20706a304cdSGao Xiang 	unsigned long base = (unsigned long)((struct z_erofs_bvset *)0)->bvec;
20806a304cdSGao Xiang 	/* have to access nextpage in advance, otherwise it will be unmapped */
20906a304cdSGao Xiang 	struct page *nextpage = iter->bvset->nextpage;
21006a304cdSGao Xiang 	struct page *oldpage;
21106a304cdSGao Xiang 
21206a304cdSGao Xiang 	DBG_BUGON(!nextpage);
21306a304cdSGao Xiang 	oldpage = z_erofs_bvec_iter_end(iter);
21406a304cdSGao Xiang 	iter->bvpage = nextpage;
21506a304cdSGao Xiang 	iter->bvset = kmap_local_page(nextpage);
21606a304cdSGao Xiang 	iter->nr = (PAGE_SIZE - base) / sizeof(struct z_erofs_bvec);
21706a304cdSGao Xiang 	iter->cur = 0;
21806a304cdSGao Xiang 	return oldpage;
21906a304cdSGao Xiang }
22006a304cdSGao Xiang 
22106a304cdSGao Xiang static void z_erofs_bvec_iter_begin(struct z_erofs_bvec_iter *iter,
22206a304cdSGao Xiang 				    struct z_erofs_bvset_inline *bvset,
22306a304cdSGao Xiang 				    unsigned int bootstrap_nr,
22406a304cdSGao Xiang 				    unsigned int cur)
22506a304cdSGao Xiang {
22606a304cdSGao Xiang 	*iter = (struct z_erofs_bvec_iter) {
22706a304cdSGao Xiang 		.nr = bootstrap_nr,
22806a304cdSGao Xiang 		.bvset = (struct z_erofs_bvset *)bvset,
22906a304cdSGao Xiang 	};
23006a304cdSGao Xiang 
23106a304cdSGao Xiang 	while (cur > iter->nr) {
23206a304cdSGao Xiang 		cur -= iter->nr;
23306a304cdSGao Xiang 		z_erofs_bvset_flip(iter);
23406a304cdSGao Xiang 	}
23506a304cdSGao Xiang 	iter->cur = cur;
23606a304cdSGao Xiang }
23706a304cdSGao Xiang 
23806a304cdSGao Xiang static int z_erofs_bvec_enqueue(struct z_erofs_bvec_iter *iter,
23906a304cdSGao Xiang 				struct z_erofs_bvec *bvec,
2406ab5eed6SGao Xiang 				struct page **candidate_bvpage,
2416ab5eed6SGao Xiang 				struct page **pagepool)
24206a304cdSGao Xiang {
24305b63d2bSGao Xiang 	if (iter->cur >= iter->nr) {
24405b63d2bSGao Xiang 		struct page *nextpage = *candidate_bvpage;
24506a304cdSGao Xiang 
24605b63d2bSGao Xiang 		if (!nextpage) {
2476ab5eed6SGao Xiang 			nextpage = erofs_allocpage(pagepool, GFP_NOFS);
24805b63d2bSGao Xiang 			if (!nextpage)
24905b63d2bSGao Xiang 				return -ENOMEM;
25005b63d2bSGao Xiang 			set_page_private(nextpage, Z_EROFS_SHORTLIVED_PAGE);
25105b63d2bSGao Xiang 		}
25206a304cdSGao Xiang 		DBG_BUGON(iter->bvset->nextpage);
25305b63d2bSGao Xiang 		iter->bvset->nextpage = nextpage;
25406a304cdSGao Xiang 		z_erofs_bvset_flip(iter);
25506a304cdSGao Xiang 
25606a304cdSGao Xiang 		iter->bvset->nextpage = NULL;
25706a304cdSGao Xiang 		*candidate_bvpage = NULL;
25806a304cdSGao Xiang 	}
25906a304cdSGao Xiang 	iter->bvset->bvec[iter->cur++] = *bvec;
26006a304cdSGao Xiang 	return 0;
26106a304cdSGao Xiang }
26206a304cdSGao Xiang 
26306a304cdSGao Xiang static void z_erofs_bvec_dequeue(struct z_erofs_bvec_iter *iter,
26406a304cdSGao Xiang 				 struct z_erofs_bvec *bvec,
26506a304cdSGao Xiang 				 struct page **old_bvpage)
26606a304cdSGao Xiang {
26706a304cdSGao Xiang 	if (iter->cur == iter->nr)
26806a304cdSGao Xiang 		*old_bvpage = z_erofs_bvset_flip(iter);
26906a304cdSGao Xiang 	else
27006a304cdSGao Xiang 		*old_bvpage = NULL;
27106a304cdSGao Xiang 	*bvec = iter->bvset->bvec[iter->cur++];
27206a304cdSGao Xiang }
27306a304cdSGao Xiang 
2749f6cc76eSGao Xiang static void z_erofs_destroy_pcluster_pool(void)
2759f6cc76eSGao Xiang {
2769f6cc76eSGao Xiang 	int i;
2779f6cc76eSGao Xiang 
2789f6cc76eSGao Xiang 	for (i = 0; i < ARRAY_SIZE(pcluster_pool); ++i) {
2799f6cc76eSGao Xiang 		if (!pcluster_pool[i].slab)
2809f6cc76eSGao Xiang 			continue;
2819f6cc76eSGao Xiang 		kmem_cache_destroy(pcluster_pool[i].slab);
2829f6cc76eSGao Xiang 		pcluster_pool[i].slab = NULL;
2839f6cc76eSGao Xiang 	}
2849f6cc76eSGao Xiang }
2859f6cc76eSGao Xiang 
2869f6cc76eSGao Xiang static int z_erofs_create_pcluster_pool(void)
2879f6cc76eSGao Xiang {
2889f6cc76eSGao Xiang 	struct z_erofs_pcluster_slab *pcs;
2899f6cc76eSGao Xiang 	struct z_erofs_pcluster *a;
2909f6cc76eSGao Xiang 	unsigned int size;
2919f6cc76eSGao Xiang 
2929f6cc76eSGao Xiang 	for (pcs = pcluster_pool;
2939f6cc76eSGao Xiang 	     pcs < pcluster_pool + ARRAY_SIZE(pcluster_pool); ++pcs) {
294ed722fbcSGao Xiang 		size = struct_size(a, compressed_bvecs, pcs->maxpages);
2959f6cc76eSGao Xiang 
2969f6cc76eSGao Xiang 		sprintf(pcs->name, "erofs_pcluster-%u", pcs->maxpages);
2979f6cc76eSGao Xiang 		pcs->slab = kmem_cache_create(pcs->name, size, 0,
2989f6cc76eSGao Xiang 					      SLAB_RECLAIM_ACCOUNT, NULL);
2999f6cc76eSGao Xiang 		if (pcs->slab)
3009f6cc76eSGao Xiang 			continue;
3019f6cc76eSGao Xiang 
3029f6cc76eSGao Xiang 		z_erofs_destroy_pcluster_pool();
3039f6cc76eSGao Xiang 		return -ENOMEM;
3049f6cc76eSGao Xiang 	}
3059f6cc76eSGao Xiang 	return 0;
3069f6cc76eSGao Xiang }
3079f6cc76eSGao Xiang 
3089f6cc76eSGao Xiang static struct z_erofs_pcluster *z_erofs_alloc_pcluster(unsigned int nrpages)
3099f6cc76eSGao Xiang {
3109f6cc76eSGao Xiang 	int i;
3119f6cc76eSGao Xiang 
3129f6cc76eSGao Xiang 	for (i = 0; i < ARRAY_SIZE(pcluster_pool); ++i) {
3139f6cc76eSGao Xiang 		struct z_erofs_pcluster_slab *pcs = pcluster_pool + i;
3149f6cc76eSGao Xiang 		struct z_erofs_pcluster *pcl;
3159f6cc76eSGao Xiang 
3169f6cc76eSGao Xiang 		if (nrpages > pcs->maxpages)
3179f6cc76eSGao Xiang 			continue;
3189f6cc76eSGao Xiang 
3199f6cc76eSGao Xiang 		pcl = kmem_cache_zalloc(pcs->slab, GFP_NOFS);
3209f6cc76eSGao Xiang 		if (!pcl)
3219f6cc76eSGao Xiang 			return ERR_PTR(-ENOMEM);
3229f6cc76eSGao Xiang 		pcl->pclusterpages = nrpages;
3239f6cc76eSGao Xiang 		return pcl;
3249f6cc76eSGao Xiang 	}
3259f6cc76eSGao Xiang 	return ERR_PTR(-EINVAL);
3269f6cc76eSGao Xiang }
3279f6cc76eSGao Xiang 
3289f6cc76eSGao Xiang static void z_erofs_free_pcluster(struct z_erofs_pcluster *pcl)
3299f6cc76eSGao Xiang {
330cecf864dSYue Hu 	unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
3319f6cc76eSGao Xiang 	int i;
3329f6cc76eSGao Xiang 
3339f6cc76eSGao Xiang 	for (i = 0; i < ARRAY_SIZE(pcluster_pool); ++i) {
3349f6cc76eSGao Xiang 		struct z_erofs_pcluster_slab *pcs = pcluster_pool + i;
3359f6cc76eSGao Xiang 
336cecf864dSYue Hu 		if (pclusterpages > pcs->maxpages)
3379f6cc76eSGao Xiang 			continue;
3389f6cc76eSGao Xiang 
3399f6cc76eSGao Xiang 		kmem_cache_free(pcs->slab, pcl);
3409f6cc76eSGao Xiang 		return;
3419f6cc76eSGao Xiang 	}
3429f6cc76eSGao Xiang 	DBG_BUGON(1);
3439f6cc76eSGao Xiang }
3449f6cc76eSGao Xiang 
34547e4937aSGao Xiang static struct workqueue_struct *z_erofs_workqueue __read_mostly;
34647e4937aSGao Xiang 
3473fffb589SSandeep Dhavale #ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
3483fffb589SSandeep Dhavale static struct kthread_worker __rcu **z_erofs_pcpu_workers;
3493fffb589SSandeep Dhavale 
3503fffb589SSandeep Dhavale static void erofs_destroy_percpu_workers(void)
35147e4937aSGao Xiang {
3523fffb589SSandeep Dhavale 	struct kthread_worker *worker;
3533fffb589SSandeep Dhavale 	unsigned int cpu;
3543fffb589SSandeep Dhavale 
3553fffb589SSandeep Dhavale 	for_each_possible_cpu(cpu) {
3563fffb589SSandeep Dhavale 		worker = rcu_dereference_protected(
3573fffb589SSandeep Dhavale 					z_erofs_pcpu_workers[cpu], 1);
3583fffb589SSandeep Dhavale 		rcu_assign_pointer(z_erofs_pcpu_workers[cpu], NULL);
3593fffb589SSandeep Dhavale 		if (worker)
3603fffb589SSandeep Dhavale 			kthread_destroy_worker(worker);
3613fffb589SSandeep Dhavale 	}
3623fffb589SSandeep Dhavale 	kfree(z_erofs_pcpu_workers);
36347e4937aSGao Xiang }
36447e4937aSGao Xiang 
3653fffb589SSandeep Dhavale static struct kthread_worker *erofs_init_percpu_worker(int cpu)
36647e4937aSGao Xiang {
3673fffb589SSandeep Dhavale 	struct kthread_worker *worker =
3683fffb589SSandeep Dhavale 		kthread_create_worker_on_cpu(cpu, 0, "erofs_worker/%u", cpu);
36947e4937aSGao Xiang 
3703fffb589SSandeep Dhavale 	if (IS_ERR(worker))
3713fffb589SSandeep Dhavale 		return worker;
3723fffb589SSandeep Dhavale 	if (IS_ENABLED(CONFIG_EROFS_FS_PCPU_KTHREAD_HIPRI))
3733fffb589SSandeep Dhavale 		sched_set_fifo_low(worker->task);
3743fffb589SSandeep Dhavale 	return worker;
3753fffb589SSandeep Dhavale }
3763fffb589SSandeep Dhavale 
3773fffb589SSandeep Dhavale static int erofs_init_percpu_workers(void)
3783fffb589SSandeep Dhavale {
3793fffb589SSandeep Dhavale 	struct kthread_worker *worker;
3803fffb589SSandeep Dhavale 	unsigned int cpu;
3813fffb589SSandeep Dhavale 
3823fffb589SSandeep Dhavale 	z_erofs_pcpu_workers = kcalloc(num_possible_cpus(),
3833fffb589SSandeep Dhavale 			sizeof(struct kthread_worker *), GFP_ATOMIC);
3843fffb589SSandeep Dhavale 	if (!z_erofs_pcpu_workers)
3853fffb589SSandeep Dhavale 		return -ENOMEM;
3863fffb589SSandeep Dhavale 
3873fffb589SSandeep Dhavale 	for_each_online_cpu(cpu) {	/* could miss cpu{off,on}line? */
3883fffb589SSandeep Dhavale 		worker = erofs_init_percpu_worker(cpu);
3893fffb589SSandeep Dhavale 		if (!IS_ERR(worker))
3903fffb589SSandeep Dhavale 			rcu_assign_pointer(z_erofs_pcpu_workers[cpu], worker);
3913fffb589SSandeep Dhavale 	}
3923fffb589SSandeep Dhavale 	return 0;
3933fffb589SSandeep Dhavale }
3943fffb589SSandeep Dhavale #else
3953fffb589SSandeep Dhavale static inline void erofs_destroy_percpu_workers(void) {}
3963fffb589SSandeep Dhavale static inline int erofs_init_percpu_workers(void) { return 0; }
3973fffb589SSandeep Dhavale #endif
3983fffb589SSandeep Dhavale 
3993fffb589SSandeep Dhavale #if defined(CONFIG_HOTPLUG_CPU) && defined(CONFIG_EROFS_FS_PCPU_KTHREAD)
4003fffb589SSandeep Dhavale static DEFINE_SPINLOCK(z_erofs_pcpu_worker_lock);
4013fffb589SSandeep Dhavale static enum cpuhp_state erofs_cpuhp_state;
4023fffb589SSandeep Dhavale 
4033fffb589SSandeep Dhavale static int erofs_cpu_online(unsigned int cpu)
4043fffb589SSandeep Dhavale {
4053fffb589SSandeep Dhavale 	struct kthread_worker *worker, *old;
4063fffb589SSandeep Dhavale 
4073fffb589SSandeep Dhavale 	worker = erofs_init_percpu_worker(cpu);
4083fffb589SSandeep Dhavale 	if (IS_ERR(worker))
4093fffb589SSandeep Dhavale 		return PTR_ERR(worker);
4103fffb589SSandeep Dhavale 
4113fffb589SSandeep Dhavale 	spin_lock(&z_erofs_pcpu_worker_lock);
4123fffb589SSandeep Dhavale 	old = rcu_dereference_protected(z_erofs_pcpu_workers[cpu],
4133fffb589SSandeep Dhavale 			lockdep_is_held(&z_erofs_pcpu_worker_lock));
4143fffb589SSandeep Dhavale 	if (!old)
4153fffb589SSandeep Dhavale 		rcu_assign_pointer(z_erofs_pcpu_workers[cpu], worker);
4163fffb589SSandeep Dhavale 	spin_unlock(&z_erofs_pcpu_worker_lock);
4173fffb589SSandeep Dhavale 	if (old)
4183fffb589SSandeep Dhavale 		kthread_destroy_worker(worker);
4193fffb589SSandeep Dhavale 	return 0;
4203fffb589SSandeep Dhavale }
4213fffb589SSandeep Dhavale 
4223fffb589SSandeep Dhavale static int erofs_cpu_offline(unsigned int cpu)
4233fffb589SSandeep Dhavale {
4243fffb589SSandeep Dhavale 	struct kthread_worker *worker;
4253fffb589SSandeep Dhavale 
4263fffb589SSandeep Dhavale 	spin_lock(&z_erofs_pcpu_worker_lock);
4273fffb589SSandeep Dhavale 	worker = rcu_dereference_protected(z_erofs_pcpu_workers[cpu],
4283fffb589SSandeep Dhavale 			lockdep_is_held(&z_erofs_pcpu_worker_lock));
4293fffb589SSandeep Dhavale 	rcu_assign_pointer(z_erofs_pcpu_workers[cpu], NULL);
4303fffb589SSandeep Dhavale 	spin_unlock(&z_erofs_pcpu_worker_lock);
4313fffb589SSandeep Dhavale 
4323fffb589SSandeep Dhavale 	synchronize_rcu();
4333fffb589SSandeep Dhavale 	if (worker)
4343fffb589SSandeep Dhavale 		kthread_destroy_worker(worker);
4353fffb589SSandeep Dhavale 	return 0;
4363fffb589SSandeep Dhavale }
4373fffb589SSandeep Dhavale 
4383fffb589SSandeep Dhavale static int erofs_cpu_hotplug_init(void)
4393fffb589SSandeep Dhavale {
4403fffb589SSandeep Dhavale 	int state;
4413fffb589SSandeep Dhavale 
4423fffb589SSandeep Dhavale 	state = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
4433fffb589SSandeep Dhavale 			"fs/erofs:online", erofs_cpu_online, erofs_cpu_offline);
4443fffb589SSandeep Dhavale 	if (state < 0)
4453fffb589SSandeep Dhavale 		return state;
4463fffb589SSandeep Dhavale 
4473fffb589SSandeep Dhavale 	erofs_cpuhp_state = state;
4483fffb589SSandeep Dhavale 	return 0;
4493fffb589SSandeep Dhavale }
4503fffb589SSandeep Dhavale 
4513fffb589SSandeep Dhavale static void erofs_cpu_hotplug_destroy(void)
4523fffb589SSandeep Dhavale {
4533fffb589SSandeep Dhavale 	if (erofs_cpuhp_state)
4543fffb589SSandeep Dhavale 		cpuhp_remove_state_nocalls(erofs_cpuhp_state);
4553fffb589SSandeep Dhavale }
4563fffb589SSandeep Dhavale #else /* !CONFIG_HOTPLUG_CPU || !CONFIG_EROFS_FS_PCPU_KTHREAD */
4573fffb589SSandeep Dhavale static inline int erofs_cpu_hotplug_init(void) { return 0; }
4583fffb589SSandeep Dhavale static inline void erofs_cpu_hotplug_destroy(void) {}
4593fffb589SSandeep Dhavale #endif
4603fffb589SSandeep Dhavale 
4613fffb589SSandeep Dhavale void z_erofs_exit_zip_subsystem(void)
4623fffb589SSandeep Dhavale {
4633fffb589SSandeep Dhavale 	erofs_cpu_hotplug_destroy();
4643fffb589SSandeep Dhavale 	erofs_destroy_percpu_workers();
4653fffb589SSandeep Dhavale 	destroy_workqueue(z_erofs_workqueue);
4663fffb589SSandeep Dhavale 	z_erofs_destroy_pcluster_pool();
46747e4937aSGao Xiang }
46847e4937aSGao Xiang 
46947e4937aSGao Xiang int __init z_erofs_init_zip_subsystem(void)
47047e4937aSGao Xiang {
4719f6cc76eSGao Xiang 	int err = z_erofs_create_pcluster_pool();
47247e4937aSGao Xiang 
4739f6cc76eSGao Xiang 	if (err)
4743fffb589SSandeep Dhavale 		goto out_error_pcluster_pool;
4753fffb589SSandeep Dhavale 
4763fffb589SSandeep Dhavale 	z_erofs_workqueue = alloc_workqueue("erofs_worker",
4773fffb589SSandeep Dhavale 			WQ_UNBOUND | WQ_HIGHPRI, num_possible_cpus());
4788d1b80a7SDan Carpenter 	if (!z_erofs_workqueue) {
4798d1b80a7SDan Carpenter 		err = -ENOMEM;
4803fffb589SSandeep Dhavale 		goto out_error_workqueue_init;
4818d1b80a7SDan Carpenter 	}
4823fffb589SSandeep Dhavale 
4833fffb589SSandeep Dhavale 	err = erofs_init_percpu_workers();
4849f6cc76eSGao Xiang 	if (err)
4853fffb589SSandeep Dhavale 		goto out_error_pcpu_worker;
4863fffb589SSandeep Dhavale 
4873fffb589SSandeep Dhavale 	err = erofs_cpu_hotplug_init();
4883fffb589SSandeep Dhavale 	if (err < 0)
4893fffb589SSandeep Dhavale 		goto out_error_cpuhp_init;
4903fffb589SSandeep Dhavale 	return err;
4913fffb589SSandeep Dhavale 
4923fffb589SSandeep Dhavale out_error_cpuhp_init:
4933fffb589SSandeep Dhavale 	erofs_destroy_percpu_workers();
4943fffb589SSandeep Dhavale out_error_pcpu_worker:
4953fffb589SSandeep Dhavale 	destroy_workqueue(z_erofs_workqueue);
4963fffb589SSandeep Dhavale out_error_workqueue_init:
4979f6cc76eSGao Xiang 	z_erofs_destroy_pcluster_pool();
4983fffb589SSandeep Dhavale out_error_pcluster_pool:
4999f6cc76eSGao Xiang 	return err;
50047e4937aSGao Xiang }
50147e4937aSGao Xiang 
502db166fc2SGao Xiang enum z_erofs_pclustermode {
503db166fc2SGao Xiang 	Z_EROFS_PCLUSTER_INFLIGHT,
50447e4937aSGao Xiang 	/*
505db166fc2SGao Xiang 	 * a weak form of Z_EROFS_PCLUSTER_FOLLOWED, the difference is that it
5060b964600SGao Xiang 	 * could be dispatched into bypass queue later due to uptodated managed
5070b964600SGao Xiang 	 * pages. All related online pages cannot be reused for inplace I/O (or
508387bab87SGao Xiang 	 * bvpage) since it can be directly decoded without I/O submission.
5090b964600SGao Xiang 	 */
510db166fc2SGao Xiang 	Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE,
51147e4937aSGao Xiang 	/*
51247e4937aSGao Xiang 	 * The current collection has been linked with the owned chain, and
51347e4937aSGao Xiang 	 * could also be linked with the remaining collections, which means
51447e4937aSGao Xiang 	 * if the processing page is the tail page of the collection, thus
51547e4937aSGao Xiang 	 * the current collection can safely use the whole page (since
51647e4937aSGao Xiang 	 * the previous collection is under control) for in-place I/O, as
51747e4937aSGao Xiang 	 * illustrated below:
51847e4937aSGao Xiang 	 *  ________________________________________________________________
51947e4937aSGao Xiang 	 * |  tail (partial) page |          head (partial) page           |
52047e4937aSGao Xiang 	 * |  (of the current cl) |      (of the previous collection)      |
521967c28b2SGao Xiang 	 * |                      |                                        |
522967c28b2SGao Xiang 	 * |__PCLUSTER_FOLLOWED___|___________PCLUSTER_FOLLOWED____________|
52347e4937aSGao Xiang 	 *
52447e4937aSGao Xiang 	 * [  (*) the above page can be used as inplace I/O.               ]
52547e4937aSGao Xiang 	 */
526db166fc2SGao Xiang 	Z_EROFS_PCLUSTER_FOLLOWED,
52747e4937aSGao Xiang };
52847e4937aSGao Xiang 
5295c6dcc57SGao Xiang struct z_erofs_decompress_frontend {
5305c6dcc57SGao Xiang 	struct inode *const inode;
5315c6dcc57SGao Xiang 	struct erofs_map_blocks map;
53206a304cdSGao Xiang 	struct z_erofs_bvec_iter biter;
53347e4937aSGao Xiang 
5346ab5eed6SGao Xiang 	struct page *pagepool;
53506a304cdSGao Xiang 	struct page *candidate_bvpage;
536967c28b2SGao Xiang 	struct z_erofs_pcluster *pcl;
53747e4937aSGao Xiang 	z_erofs_next_pcluster_t owned_head;
538db166fc2SGao Xiang 	enum z_erofs_pclustermode mode;
53947e4937aSGao Xiang 
54047e4937aSGao Xiang 	/* used for applying cache strategy on the fly */
54147e4937aSGao Xiang 	bool backmost;
54247e4937aSGao Xiang 	erofs_off_t headoffset;
543ed722fbcSGao Xiang 
544ed722fbcSGao Xiang 	/* a pointer used to pick up inplace I/O pages */
545ed722fbcSGao Xiang 	unsigned int icur;
54647e4937aSGao Xiang };
54747e4937aSGao Xiang 
54847e4937aSGao Xiang #define DECOMPRESS_FRONTEND_INIT(__i) { \
5495c6dcc57SGao Xiang 	.inode = __i, .owned_head = Z_EROFS_PCLUSTER_TAIL, \
550db166fc2SGao Xiang 	.mode = Z_EROFS_PCLUSTER_FOLLOWED, .backmost = true }
55147e4937aSGao Xiang 
5521282dea3SGao Xiang static bool z_erofs_should_alloc_cache(struct z_erofs_decompress_frontend *fe)
5531282dea3SGao Xiang {
5541282dea3SGao Xiang 	unsigned int cachestrategy = EROFS_I_SB(fe->inode)->opt.cache_strategy;
5551282dea3SGao Xiang 
5561282dea3SGao Xiang 	if (cachestrategy <= EROFS_ZIP_CACHE_DISABLED)
5571282dea3SGao Xiang 		return false;
5581282dea3SGao Xiang 
5591282dea3SGao Xiang 	if (fe->backmost)
5601282dea3SGao Xiang 		return true;
5611282dea3SGao Xiang 
5621282dea3SGao Xiang 	if (cachestrategy >= EROFS_ZIP_CACHE_READAROUND &&
5631282dea3SGao Xiang 	    fe->map.m_la < fe->headoffset)
5641282dea3SGao Xiang 		return true;
5651282dea3SGao Xiang 
5661282dea3SGao Xiang 	return false;
5671282dea3SGao Xiang }
5681282dea3SGao Xiang 
5696ab5eed6SGao Xiang static void z_erofs_bind_cache(struct z_erofs_decompress_frontend *fe)
57047e4937aSGao Xiang {
5716f39d1e1SGao Xiang 	struct address_space *mc = MNGD_MAPPING(EROFS_I_SB(fe->inode));
5725c6dcc57SGao Xiang 	struct z_erofs_pcluster *pcl = fe->pcl;
5731282dea3SGao Xiang 	bool shouldalloc = z_erofs_should_alloc_cache(fe);
57447e4937aSGao Xiang 	bool standalone = true;
5756f39d1e1SGao Xiang 	/*
5766f39d1e1SGao Xiang 	 * optimistic allocation without direct reclaim since inplace I/O
5776f39d1e1SGao Xiang 	 * can be used if low memory otherwise.
5786f39d1e1SGao Xiang 	 */
5791825c8d7SGao Xiang 	gfp_t gfp = (mapping_gfp_mask(mc) & ~__GFP_DIRECT_RECLAIM) |
5801825c8d7SGao Xiang 			__GFP_NOMEMALLOC | __GFP_NORETRY | __GFP_NOWARN;
581ed722fbcSGao Xiang 	unsigned int i;
58247e4937aSGao Xiang 
583db166fc2SGao Xiang 	if (fe->mode < Z_EROFS_PCLUSTER_FOLLOWED)
58447e4937aSGao Xiang 		return;
58547e4937aSGao Xiang 
586ed722fbcSGao Xiang 	for (i = 0; i < pcl->pclusterpages; ++i) {
58747e4937aSGao Xiang 		struct page *page;
588b1ed220cSGao Xiang 		void *t;	/* mark pages just found for debugging */
5891825c8d7SGao Xiang 		struct page *newpage = NULL;
59047e4937aSGao Xiang 
59147e4937aSGao Xiang 		/* the compressed page was loaded before */
592ed722fbcSGao Xiang 		if (READ_ONCE(pcl->compressed_bvecs[i].page))
59347e4937aSGao Xiang 			continue;
59447e4937aSGao Xiang 
595ed722fbcSGao Xiang 		page = find_get_page(mc, pcl->obj.index + i);
59647e4937aSGao Xiang 
59747e4937aSGao Xiang 		if (page) {
598b1ed220cSGao Xiang 			t = (void *)((unsigned long)page | 1);
5990b964600SGao Xiang 		} else {
6000b964600SGao Xiang 			/* I/O is needed, no possible to decompress directly */
6010b964600SGao Xiang 			standalone = false;
6021282dea3SGao Xiang 			if (!shouldalloc)
6031282dea3SGao Xiang 				continue;
6041282dea3SGao Xiang 
6051282dea3SGao Xiang 			/*
6061282dea3SGao Xiang 			 * try to use cached I/O if page allocation
6071282dea3SGao Xiang 			 * succeeds or fallback to in-place I/O instead
6081282dea3SGao Xiang 			 * to avoid any direct reclaim.
6091282dea3SGao Xiang 			 */
6106ab5eed6SGao Xiang 			newpage = erofs_allocpage(&fe->pagepool, gfp);
6111825c8d7SGao Xiang 			if (!newpage)
61247e4937aSGao Xiang 				continue;
6131282dea3SGao Xiang 			set_page_private(newpage, Z_EROFS_PREALLOCATED_PAGE);
614b1ed220cSGao Xiang 			t = (void *)((unsigned long)newpage | 1);
61547e4937aSGao Xiang 		}
61647e4937aSGao Xiang 
617b1ed220cSGao Xiang 		if (!cmpxchg_relaxed(&pcl->compressed_bvecs[i].page, NULL, t))
61847e4937aSGao Xiang 			continue;
61947e4937aSGao Xiang 
620eaa9172aSGao Xiang 		if (page)
62147e4937aSGao Xiang 			put_page(page);
622eaa9172aSGao Xiang 		else if (newpage)
6236ab5eed6SGao Xiang 			erofs_pagepool_add(&fe->pagepool, newpage);
62447e4937aSGao Xiang 	}
62547e4937aSGao Xiang 
6260b964600SGao Xiang 	/*
6270b964600SGao Xiang 	 * don't do inplace I/O if all compressed pages are available in
6280b964600SGao Xiang 	 * managed cache since it can be moved to the bypass queue instead.
6290b964600SGao Xiang 	 */
6300b964600SGao Xiang 	if (standalone)
631db166fc2SGao Xiang 		fe->mode = Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE;
63247e4937aSGao Xiang }
63347e4937aSGao Xiang 
63447e4937aSGao Xiang /* called by erofs_shrinker to get rid of all compressed_pages */
63547e4937aSGao Xiang int erofs_try_to_free_all_cached_pages(struct erofs_sb_info *sbi,
63647e4937aSGao Xiang 				       struct erofs_workgroup *grp)
63747e4937aSGao Xiang {
63847e4937aSGao Xiang 	struct z_erofs_pcluster *const pcl =
63947e4937aSGao Xiang 		container_of(grp, struct z_erofs_pcluster, obj);
64047e4937aSGao Xiang 	int i;
64147e4937aSGao Xiang 
642cecf864dSYue Hu 	DBG_BUGON(z_erofs_is_inline_pcluster(pcl));
64347e4937aSGao Xiang 	/*
644*7674a42fSGao Xiang 	 * refcount of workgroup is now freezed as 0,
64547e4937aSGao Xiang 	 * therefore no need to worry about available decompression users.
64647e4937aSGao Xiang 	 */
6479f6cc76eSGao Xiang 	for (i = 0; i < pcl->pclusterpages; ++i) {
648ed722fbcSGao Xiang 		struct page *page = pcl->compressed_bvecs[i].page;
64947e4937aSGao Xiang 
65047e4937aSGao Xiang 		if (!page)
65147e4937aSGao Xiang 			continue;
65247e4937aSGao Xiang 
65347e4937aSGao Xiang 		/* block other users from reclaiming or migrating the page */
65447e4937aSGao Xiang 		if (!trylock_page(page))
65547e4937aSGao Xiang 			return -EBUSY;
65647e4937aSGao Xiang 
657f4d4e5fcSYue Hu 		if (!erofs_page_is_managed(sbi, page))
65847e4937aSGao Xiang 			continue;
65947e4937aSGao Xiang 
66047e4937aSGao Xiang 		/* barrier is implied in the following 'unlock_page' */
661ed722fbcSGao Xiang 		WRITE_ONCE(pcl->compressed_bvecs[i].page, NULL);
6626aaa7b06SGao Xiang 		detach_page_private(page);
66347e4937aSGao Xiang 		unlock_page(page);
66447e4937aSGao Xiang 	}
66547e4937aSGao Xiang 	return 0;
66647e4937aSGao Xiang }
66747e4937aSGao Xiang 
6687b4e372cSGao Xiang static bool z_erofs_cache_release_folio(struct folio *folio, gfp_t gfp)
66947e4937aSGao Xiang {
6707b4e372cSGao Xiang 	struct z_erofs_pcluster *pcl = folio_get_private(folio);
6717b4e372cSGao Xiang 	bool ret;
6727b4e372cSGao Xiang 	int i;
6737b4e372cSGao Xiang 
6747b4e372cSGao Xiang 	if (!folio_test_private(folio))
6757b4e372cSGao Xiang 		return true;
67647e4937aSGao Xiang 
6777b4e372cSGao Xiang 	ret = false;
678*7674a42fSGao Xiang 	spin_lock(&pcl->obj.lockref.lock);
679*7674a42fSGao Xiang 	if (pcl->obj.lockref.count > 0)
680*7674a42fSGao Xiang 		goto out;
681*7674a42fSGao Xiang 
682cecf864dSYue Hu 	DBG_BUGON(z_erofs_is_inline_pcluster(pcl));
6839f6cc76eSGao Xiang 	for (i = 0; i < pcl->pclusterpages; ++i) {
6847b4e372cSGao Xiang 		if (pcl->compressed_bvecs[i].page == &folio->page) {
685ed722fbcSGao Xiang 			WRITE_ONCE(pcl->compressed_bvecs[i].page, NULL);
6867b4e372cSGao Xiang 			ret = true;
68747e4937aSGao Xiang 			break;
68847e4937aSGao Xiang 		}
68947e4937aSGao Xiang 	}
6906aaa7b06SGao Xiang 	if (ret)
6917b4e372cSGao Xiang 		folio_detach_private(folio);
692*7674a42fSGao Xiang out:
693*7674a42fSGao Xiang 	spin_unlock(&pcl->obj.lockref.lock);
69447e4937aSGao Xiang 	return ret;
69547e4937aSGao Xiang }
69647e4937aSGao Xiang 
6977b4e372cSGao Xiang /*
6987b4e372cSGao Xiang  * It will be called only on inode eviction. In case that there are still some
6997b4e372cSGao Xiang  * decompression requests in progress, wait with rescheduling for a bit here.
7007b4e372cSGao Xiang  * An extra lock could be introduced instead but it seems unnecessary.
7017b4e372cSGao Xiang  */
7027b4e372cSGao Xiang static void z_erofs_cache_invalidate_folio(struct folio *folio,
7037b4e372cSGao Xiang 					   size_t offset, size_t length)
7047b4e372cSGao Xiang {
7057b4e372cSGao Xiang 	const size_t stop = length + offset;
7067b4e372cSGao Xiang 
7077b4e372cSGao Xiang 	/* Check for potential overflow in debug mode */
7087b4e372cSGao Xiang 	DBG_BUGON(stop > folio_size(folio) || stop < length);
7097b4e372cSGao Xiang 
7107b4e372cSGao Xiang 	if (offset == 0 && stop == folio_size(folio))
7117b4e372cSGao Xiang 		while (!z_erofs_cache_release_folio(folio, GFP_NOFS))
7127b4e372cSGao Xiang 			cond_resched();
7137b4e372cSGao Xiang }
7147b4e372cSGao Xiang 
7157b4e372cSGao Xiang static const struct address_space_operations z_erofs_cache_aops = {
7167b4e372cSGao Xiang 	.release_folio = z_erofs_cache_release_folio,
7177b4e372cSGao Xiang 	.invalidate_folio = z_erofs_cache_invalidate_folio,
7187b4e372cSGao Xiang };
7197b4e372cSGao Xiang 
7207b4e372cSGao Xiang int erofs_init_managed_cache(struct super_block *sb)
7217b4e372cSGao Xiang {
7227b4e372cSGao Xiang 	struct inode *const inode = new_inode(sb);
7237b4e372cSGao Xiang 
7247b4e372cSGao Xiang 	if (!inode)
7257b4e372cSGao Xiang 		return -ENOMEM;
7267b4e372cSGao Xiang 
7277b4e372cSGao Xiang 	set_nlink(inode, 1);
7287b4e372cSGao Xiang 	inode->i_size = OFFSET_MAX;
7297b4e372cSGao Xiang 	inode->i_mapping->a_ops = &z_erofs_cache_aops;
7307b4e372cSGao Xiang 	mapping_set_gfp_mask(inode->i_mapping, GFP_NOFS);
7317b4e372cSGao Xiang 	EROFS_SB(sb)->managed_cache = inode;
7327b4e372cSGao Xiang 	return 0;
7337b4e372cSGao Xiang }
7347b4e372cSGao Xiang 
7355c6dcc57SGao Xiang static bool z_erofs_try_inplace_io(struct z_erofs_decompress_frontend *fe,
736ed722fbcSGao Xiang 				   struct z_erofs_bvec *bvec)
73747e4937aSGao Xiang {
7385c6dcc57SGao Xiang 	struct z_erofs_pcluster *const pcl = fe->pcl;
73947e4937aSGao Xiang 
740ed722fbcSGao Xiang 	while (fe->icur > 0) {
741ed722fbcSGao Xiang 		if (!cmpxchg(&pcl->compressed_bvecs[--fe->icur].page,
742ed722fbcSGao Xiang 			     NULL, bvec->page)) {
743ed722fbcSGao Xiang 			pcl->compressed_bvecs[fe->icur] = *bvec;
74447e4937aSGao Xiang 			return true;
745ed722fbcSGao Xiang 		}
746ed722fbcSGao Xiang 	}
74747e4937aSGao Xiang 	return false;
74847e4937aSGao Xiang }
74947e4937aSGao Xiang 
75087ca34a7SGao Xiang /* callers must be with pcluster lock held */
7515c6dcc57SGao Xiang static int z_erofs_attach_page(struct z_erofs_decompress_frontend *fe,
7525b220b20SGao Xiang 			       struct z_erofs_bvec *bvec, bool exclusive)
75347e4937aSGao Xiang {
75447e4937aSGao Xiang 	int ret;
75547e4937aSGao Xiang 
756db166fc2SGao Xiang 	if (exclusive) {
75706a304cdSGao Xiang 		/* give priority for inplaceio to use file pages first */
758ed722fbcSGao Xiang 		if (z_erofs_try_inplace_io(fe, bvec))
75947e4937aSGao Xiang 			return 0;
76006a304cdSGao Xiang 		/* otherwise, check if it can be used as a bvpage */
761db166fc2SGao Xiang 		if (fe->mode >= Z_EROFS_PCLUSTER_FOLLOWED &&
76206a304cdSGao Xiang 		    !fe->candidate_bvpage)
76306a304cdSGao Xiang 			fe->candidate_bvpage = bvec->page;
76406a304cdSGao Xiang 	}
7656ab5eed6SGao Xiang 	ret = z_erofs_bvec_enqueue(&fe->biter, bvec, &fe->candidate_bvpage,
7666ab5eed6SGao Xiang 				   &fe->pagepool);
76706a304cdSGao Xiang 	fe->pcl->vcnt += (ret >= 0);
76806a304cdSGao Xiang 	return ret;
76947e4937aSGao Xiang }
77047e4937aSGao Xiang 
7715c6dcc57SGao Xiang static void z_erofs_try_to_claim_pcluster(struct z_erofs_decompress_frontend *f)
77247e4937aSGao Xiang {
7735c6dcc57SGao Xiang 	struct z_erofs_pcluster *pcl = f->pcl;
7745c6dcc57SGao Xiang 	z_erofs_next_pcluster_t *owned_head = &f->owned_head;
77547e4937aSGao Xiang 
776473e15b0SGao Xiang 	/* type 1, nil pcluster (this pcluster doesn't belong to any chain.) */
777473e15b0SGao Xiang 	if (cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_NIL,
778473e15b0SGao Xiang 		    *owned_head) == Z_EROFS_PCLUSTER_NIL) {
77947e4937aSGao Xiang 		*owned_head = &pcl->next;
780473e15b0SGao Xiang 		/* so we can attach this pcluster to our submission chain. */
781db166fc2SGao Xiang 		f->mode = Z_EROFS_PCLUSTER_FOLLOWED;
782473e15b0SGao Xiang 		return;
783473e15b0SGao Xiang 	}
784473e15b0SGao Xiang 
785967c28b2SGao Xiang 	/* type 2, it belongs to an ongoing chain */
786db166fc2SGao Xiang 	f->mode = Z_EROFS_PCLUSTER_INFLIGHT;
78747e4937aSGao Xiang }
78847e4937aSGao Xiang 
78983a386c0SGao Xiang static int z_erofs_register_pcluster(struct z_erofs_decompress_frontend *fe)
79047e4937aSGao Xiang {
79183a386c0SGao Xiang 	struct erofs_map_blocks *map = &fe->map;
792cecf864dSYue Hu 	bool ztailpacking = map->m_flags & EROFS_MAP_META;
79347e4937aSGao Xiang 	struct z_erofs_pcluster *pcl;
79464094a04SGao Xiang 	struct erofs_workgroup *grp;
79547e4937aSGao Xiang 	int err;
79647e4937aSGao Xiang 
797c42c0ffeSChen Zhongjin 	if (!(map->m_flags & EROFS_MAP_ENCODED) ||
798c42c0ffeSChen Zhongjin 	    (!ztailpacking && !(map->m_pa >> PAGE_SHIFT))) {
7998f899262SGao Xiang 		DBG_BUGON(1);
8008f899262SGao Xiang 		return -EFSCORRUPTED;
8018f899262SGao Xiang 	}
8028f899262SGao Xiang 
8039f6cc76eSGao Xiang 	/* no available pcluster, let's allocate one */
804cecf864dSYue Hu 	pcl = z_erofs_alloc_pcluster(ztailpacking ? 1 :
805cecf864dSYue Hu 				     map->m_plen >> PAGE_SHIFT);
8069f6cc76eSGao Xiang 	if (IS_ERR(pcl))
8079f6cc76eSGao Xiang 		return PTR_ERR(pcl);
80847e4937aSGao Xiang 
809*7674a42fSGao Xiang 	spin_lock_init(&pcl->obj.lockref.lock);
8108f899262SGao Xiang 	pcl->algorithmformat = map->m_algorithmformat;
8112bfab9c0SGao Xiang 	pcl->length = 0;
8122bfab9c0SGao Xiang 	pcl->partial = true;
81347e4937aSGao Xiang 
81447e4937aSGao Xiang 	/* new pclusters should be claimed as type 1, primary and followed */
8155c6dcc57SGao Xiang 	pcl->next = fe->owned_head;
81687ca34a7SGao Xiang 	pcl->pageofs_out = map->m_la & ~PAGE_MASK;
817db166fc2SGao Xiang 	fe->mode = Z_EROFS_PCLUSTER_FOLLOWED;
81847e4937aSGao Xiang 
81947e4937aSGao Xiang 	/*
82047e4937aSGao Xiang 	 * lock all primary followed works before visible to others
82147e4937aSGao Xiang 	 * and mutex_trylock *never* fails for a new pcluster.
82247e4937aSGao Xiang 	 */
82387ca34a7SGao Xiang 	mutex_init(&pcl->lock);
82487ca34a7SGao Xiang 	DBG_BUGON(!mutex_trylock(&pcl->lock));
82547e4937aSGao Xiang 
826cecf864dSYue Hu 	if (ztailpacking) {
827cecf864dSYue Hu 		pcl->obj.index = 0;	/* which indicates ztailpacking */
8283acea5fcSJingbo Xu 		pcl->pageofs_in = erofs_blkoff(fe->inode->i_sb, map->m_pa);
829cecf864dSYue Hu 		pcl->tailpacking_size = map->m_plen;
830cecf864dSYue Hu 	} else {
831cecf864dSYue Hu 		pcl->obj.index = map->m_pa >> PAGE_SHIFT;
832cecf864dSYue Hu 
83383a386c0SGao Xiang 		grp = erofs_insert_workgroup(fe->inode->i_sb, &pcl->obj);
83464094a04SGao Xiang 		if (IS_ERR(grp)) {
83564094a04SGao Xiang 			err = PTR_ERR(grp);
83664094a04SGao Xiang 			goto err_out;
83764094a04SGao Xiang 		}
83864094a04SGao Xiang 
83964094a04SGao Xiang 		if (grp != &pcl->obj) {
8405c6dcc57SGao Xiang 			fe->pcl = container_of(grp,
841cecf864dSYue Hu 					struct z_erofs_pcluster, obj);
84264094a04SGao Xiang 			err = -EEXIST;
84364094a04SGao Xiang 			goto err_out;
84447e4937aSGao Xiang 		}
845cecf864dSYue Hu 	}
8465c6dcc57SGao Xiang 	fe->owned_head = &pcl->next;
8475c6dcc57SGao Xiang 	fe->pcl = pcl;
8489e579fc1SGao Xiang 	return 0;
84964094a04SGao Xiang 
85064094a04SGao Xiang err_out:
85187ca34a7SGao Xiang 	mutex_unlock(&pcl->lock);
8529f6cc76eSGao Xiang 	z_erofs_free_pcluster(pcl);
85364094a04SGao Xiang 	return err;
85447e4937aSGao Xiang }
85547e4937aSGao Xiang 
85683a386c0SGao Xiang static int z_erofs_collector_begin(struct z_erofs_decompress_frontend *fe)
85747e4937aSGao Xiang {
85883a386c0SGao Xiang 	struct erofs_map_blocks *map = &fe->map;
8590d823b42SGao Xiang 	struct erofs_workgroup *grp = NULL;
8609e579fc1SGao Xiang 	int ret;
86147e4937aSGao Xiang 
86287ca34a7SGao Xiang 	DBG_BUGON(fe->pcl);
86347e4937aSGao Xiang 
86487ca34a7SGao Xiang 	/* must be Z_EROFS_PCLUSTER_TAIL or pointed to previous pcluster */
8655c6dcc57SGao Xiang 	DBG_BUGON(fe->owned_head == Z_EROFS_PCLUSTER_NIL);
86647e4937aSGao Xiang 
8670d823b42SGao Xiang 	if (!(map->m_flags & EROFS_MAP_META)) {
8680d823b42SGao Xiang 		grp = erofs_find_workgroup(fe->inode->i_sb,
8690d823b42SGao Xiang 					   map->m_pa >> PAGE_SHIFT);
8700d823b42SGao Xiang 	} else if ((map->m_pa & ~PAGE_MASK) + map->m_plen > PAGE_SIZE) {
87147e4937aSGao Xiang 		DBG_BUGON(1);
872cecf864dSYue Hu 		return -EFSCORRUPTED;
873cecf864dSYue Hu 	}
87447e4937aSGao Xiang 
87564094a04SGao Xiang 	if (grp) {
8765c6dcc57SGao Xiang 		fe->pcl = container_of(grp, struct z_erofs_pcluster, obj);
8770d823b42SGao Xiang 		ret = -EEXIST;
87864094a04SGao Xiang 	} else {
87983a386c0SGao Xiang 		ret = z_erofs_register_pcluster(fe);
88064094a04SGao Xiang 	}
88147e4937aSGao Xiang 
8820d823b42SGao Xiang 	if (ret == -EEXIST) {
883267f2492SGao Xiang 		mutex_lock(&fe->pcl->lock);
884267f2492SGao Xiang 		z_erofs_try_to_claim_pcluster(fe);
8850d823b42SGao Xiang 	} else if (ret) {
8860d823b42SGao Xiang 		return ret;
8870d823b42SGao Xiang 	}
88806a304cdSGao Xiang 	z_erofs_bvec_iter_begin(&fe->biter, &fe->pcl->bvset,
889387bab87SGao Xiang 				Z_EROFS_INLINE_BVECS, fe->pcl->vcnt);
89081382f5fSGao Xiang 	/* since file-backed online pages are traversed in reverse order */
891ed722fbcSGao Xiang 	fe->icur = z_erofs_pclusterpages(fe->pcl);
89247e4937aSGao Xiang 	return 0;
89347e4937aSGao Xiang }
89447e4937aSGao Xiang 
89547e4937aSGao Xiang /*
89647e4937aSGao Xiang  * keep in mind that no referenced pclusters will be freed
89747e4937aSGao Xiang  * only after a RCU grace period.
89847e4937aSGao Xiang  */
89947e4937aSGao Xiang static void z_erofs_rcu_callback(struct rcu_head *head)
90047e4937aSGao Xiang {
90187ca34a7SGao Xiang 	z_erofs_free_pcluster(container_of(head,
90287ca34a7SGao Xiang 			struct z_erofs_pcluster, rcu));
90347e4937aSGao Xiang }
90447e4937aSGao Xiang 
90547e4937aSGao Xiang void erofs_workgroup_free_rcu(struct erofs_workgroup *grp)
90647e4937aSGao Xiang {
90747e4937aSGao Xiang 	struct z_erofs_pcluster *const pcl =
90847e4937aSGao Xiang 		container_of(grp, struct z_erofs_pcluster, obj);
90947e4937aSGao Xiang 
91087ca34a7SGao Xiang 	call_rcu(&pcl->rcu, z_erofs_rcu_callback);
91147e4937aSGao Xiang }
91247e4937aSGao Xiang 
9135c6dcc57SGao Xiang static bool z_erofs_collector_end(struct z_erofs_decompress_frontend *fe)
91447e4937aSGao Xiang {
91587ca34a7SGao Xiang 	struct z_erofs_pcluster *pcl = fe->pcl;
91647e4937aSGao Xiang 
91787ca34a7SGao Xiang 	if (!pcl)
91847e4937aSGao Xiang 		return false;
91947e4937aSGao Xiang 
92006a304cdSGao Xiang 	z_erofs_bvec_iter_end(&fe->biter);
92187ca34a7SGao Xiang 	mutex_unlock(&pcl->lock);
92247e4937aSGao Xiang 
92305b63d2bSGao Xiang 	if (fe->candidate_bvpage)
92406a304cdSGao Xiang 		fe->candidate_bvpage = NULL;
92506a304cdSGao Xiang 
92647e4937aSGao Xiang 	/*
92747e4937aSGao Xiang 	 * if all pending pages are added, don't hold its reference
92847e4937aSGao Xiang 	 * any longer if the pcluster isn't hosted by ourselves.
92947e4937aSGao Xiang 	 */
930db166fc2SGao Xiang 	if (fe->mode < Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE)
93187ca34a7SGao Xiang 		erofs_workgroup_put(&pcl->obj);
93247e4937aSGao Xiang 
93387ca34a7SGao Xiang 	fe->pcl = NULL;
93447e4937aSGao Xiang 	return true;
93547e4937aSGao Xiang }
93647e4937aSGao Xiang 
937b15b2e30SYue Hu static int z_erofs_read_fragment(struct inode *inode, erofs_off_t pos,
938b15b2e30SYue Hu 				 struct page *page, unsigned int pageofs,
939b15b2e30SYue Hu 				 unsigned int len)
940b15b2e30SYue Hu {
9413acea5fcSJingbo Xu 	struct super_block *sb = inode->i_sb;
942b15b2e30SYue Hu 	struct inode *packed_inode = EROFS_I_SB(inode)->packed_inode;
943b15b2e30SYue Hu 	struct erofs_buf buf = __EROFS_BUF_INITIALIZER;
944b15b2e30SYue Hu 	u8 *src, *dst;
945b15b2e30SYue Hu 	unsigned int i, cnt;
946b15b2e30SYue Hu 
947e5126de1SYue Hu 	if (!packed_inode)
948e5126de1SYue Hu 		return -EFSCORRUPTED;
949e5126de1SYue Hu 
950eb2c5e41SGao Xiang 	buf.inode = packed_inode;
951b15b2e30SYue Hu 	pos += EROFS_I(inode)->z_fragmentoff;
952b15b2e30SYue Hu 	for (i = 0; i < len; i += cnt) {
953b15b2e30SYue Hu 		cnt = min_t(unsigned int, len - i,
9543acea5fcSJingbo Xu 			    sb->s_blocksize - erofs_blkoff(sb, pos));
955eb2c5e41SGao Xiang 		src = erofs_bread(&buf, erofs_blknr(sb, pos), EROFS_KMAP);
956b15b2e30SYue Hu 		if (IS_ERR(src)) {
957b15b2e30SYue Hu 			erofs_put_metabuf(&buf);
958b15b2e30SYue Hu 			return PTR_ERR(src);
959b15b2e30SYue Hu 		}
960b15b2e30SYue Hu 
961b15b2e30SYue Hu 		dst = kmap_local_page(page);
9623acea5fcSJingbo Xu 		memcpy(dst + pageofs + i, src + erofs_blkoff(sb, pos), cnt);
963b15b2e30SYue Hu 		kunmap_local(dst);
964b15b2e30SYue Hu 		pos += cnt;
965b15b2e30SYue Hu 	}
966b15b2e30SYue Hu 	erofs_put_metabuf(&buf);
967b15b2e30SYue Hu 	return 0;
968b15b2e30SYue Hu }
969b15b2e30SYue Hu 
97047e4937aSGao Xiang static int z_erofs_do_read_page(struct z_erofs_decompress_frontend *fe,
9716ab5eed6SGao Xiang 				struct page *page)
97247e4937aSGao Xiang {
97347e4937aSGao Xiang 	struct inode *const inode = fe->inode;
97447e4937aSGao Xiang 	struct erofs_map_blocks *const map = &fe->map;
97547e4937aSGao Xiang 	const loff_t offset = page_offset(page);
9765b220b20SGao Xiang 	bool tight = true, exclusive;
9772bfab9c0SGao Xiang 	unsigned int cur, end, spiltted;
97847e4937aSGao Xiang 	int err = 0;
97947e4937aSGao Xiang 
98047e4937aSGao Xiang 	/* register locked file pages as online pages in pack */
98147e4937aSGao Xiang 	z_erofs_onlinepage_init(page);
98247e4937aSGao Xiang 
98347e4937aSGao Xiang 	spiltted = 0;
98447e4937aSGao Xiang 	end = PAGE_SIZE;
98547e4937aSGao Xiang repeat:
98647e4937aSGao Xiang 	cur = end - 1;
98747e4937aSGao Xiang 
98839397a46SGao Xiang 	if (offset + cur < map->m_la ||
98939397a46SGao Xiang 	    offset + cur >= map->m_la + map->m_llen) {
9905c6dcc57SGao Xiang 		if (z_erofs_collector_end(fe))
99147e4937aSGao Xiang 			fe->backmost = false;
99247e4937aSGao Xiang 		map->m_la = offset + cur;
99347e4937aSGao Xiang 		map->m_llen = 0;
99447e4937aSGao Xiang 		err = z_erofs_map_blocks_iter(inode, map, 0);
9958d8a09b0SGao Xiang 		if (err)
99667148551SGao Xiang 			goto out;
99739397a46SGao Xiang 	} else {
99839397a46SGao Xiang 		if (fe->pcl)
99939397a46SGao Xiang 			goto hitted;
100039397a46SGao Xiang 		/* didn't get a valid pcluster previously (very rare) */
100139397a46SGao Xiang 	}
100247e4937aSGao Xiang 
1003b15b2e30SYue Hu 	if (!(map->m_flags & EROFS_MAP_MAPPED) ||
1004b15b2e30SYue Hu 	    map->m_flags & EROFS_MAP_FRAGMENT)
100547e4937aSGao Xiang 		goto hitted;
100647e4937aSGao Xiang 
100783a386c0SGao Xiang 	err = z_erofs_collector_begin(fe);
10088d8a09b0SGao Xiang 	if (err)
100967148551SGao Xiang 		goto out;
101047e4937aSGao Xiang 
10115c6dcc57SGao Xiang 	if (z_erofs_is_inline_pcluster(fe->pcl)) {
101209c54379SGao Xiang 		void *mp;
1013cecf864dSYue Hu 
101409c54379SGao Xiang 		mp = erofs_read_metabuf(&fe->map.buf, inode->i_sb,
10153acea5fcSJingbo Xu 					erofs_blknr(inode->i_sb, map->m_pa),
10163acea5fcSJingbo Xu 					EROFS_NO_KMAP);
101709c54379SGao Xiang 		if (IS_ERR(mp)) {
101809c54379SGao Xiang 			err = PTR_ERR(mp);
1019cecf864dSYue Hu 			erofs_err(inode->i_sb,
1020cecf864dSYue Hu 				  "failed to get inline page, err %d", err);
102167148551SGao Xiang 			goto out;
1022cecf864dSYue Hu 		}
102309c54379SGao Xiang 		get_page(fe->map.buf.page);
1024ed722fbcSGao Xiang 		WRITE_ONCE(fe->pcl->compressed_bvecs[0].page,
1025ed722fbcSGao Xiang 			   fe->map.buf.page);
1026db166fc2SGao Xiang 		fe->mode = Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE;
1027cecf864dSYue Hu 	} else {
10286f39d1e1SGao Xiang 		/* bind cache first when cached decompression is preferred */
10296ab5eed6SGao Xiang 		z_erofs_bind_cache(fe);
1030cecf864dSYue Hu 	}
103147e4937aSGao Xiang hitted:
1032dc76ea8cSGao Xiang 	/*
1033dc76ea8cSGao Xiang 	 * Ensure the current partial page belongs to this submit chain rather
1034dc76ea8cSGao Xiang 	 * than other concurrent submit chains or the noio(bypass) chain since
1035dc76ea8cSGao Xiang 	 * those chains are handled asynchronously thus the page cannot be used
1036387bab87SGao Xiang 	 * for inplace I/O or bvpage (should be processed in a strict order.)
1037dc76ea8cSGao Xiang 	 */
1038967c28b2SGao Xiang 	tight &= (fe->mode > Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE);
1039dc76ea8cSGao Xiang 
104047e4937aSGao Xiang 	cur = end - min_t(unsigned int, offset + end - map->m_la, end);
10418d8a09b0SGao Xiang 	if (!(map->m_flags & EROFS_MAP_MAPPED)) {
104247e4937aSGao Xiang 		zero_user_segment(page, cur, end);
104347e4937aSGao Xiang 		goto next_part;
104447e4937aSGao Xiang 	}
1045b15b2e30SYue Hu 	if (map->m_flags & EROFS_MAP_FRAGMENT) {
1046b15b2e30SYue Hu 		unsigned int pageofs, skip, len;
1047b15b2e30SYue Hu 
1048b15b2e30SYue Hu 		if (offset > map->m_la) {
1049b15b2e30SYue Hu 			pageofs = 0;
1050b15b2e30SYue Hu 			skip = offset - map->m_la;
1051b15b2e30SYue Hu 		} else {
1052b15b2e30SYue Hu 			pageofs = map->m_la & ~PAGE_MASK;
1053b15b2e30SYue Hu 			skip = 0;
1054b15b2e30SYue Hu 		}
1055b15b2e30SYue Hu 		len = min_t(unsigned int, map->m_llen - skip, end - cur);
1056b15b2e30SYue Hu 		err = z_erofs_read_fragment(inode, skip, page, pageofs, len);
1057b15b2e30SYue Hu 		if (err)
1058b15b2e30SYue Hu 			goto out;
1059b15b2e30SYue Hu 		++spiltted;
1060b15b2e30SYue Hu 		tight = false;
1061b15b2e30SYue Hu 		goto next_part;
1062b15b2e30SYue Hu 	}
106347e4937aSGao Xiang 
10645b220b20SGao Xiang 	exclusive = (!cur && (!spiltted || tight));
106547e4937aSGao Xiang 	if (cur)
1066db166fc2SGao Xiang 		tight &= (fe->mode >= Z_EROFS_PCLUSTER_FOLLOWED);
106747e4937aSGao Xiang 
106806a304cdSGao Xiang 	err = z_erofs_attach_page(fe, &((struct z_erofs_bvec) {
106906a304cdSGao Xiang 					.page = page,
107006a304cdSGao Xiang 					.offset = offset - map->m_la,
107106a304cdSGao Xiang 					.end = end,
10725b220b20SGao Xiang 				  }), exclusive);
107305b63d2bSGao Xiang 	if (err)
107467148551SGao Xiang 		goto out;
107547e4937aSGao Xiang 
107667148551SGao Xiang 	z_erofs_onlinepage_split(page);
107747e4937aSGao Xiang 	/* bump up the number of spiltted parts of a page */
107847e4937aSGao Xiang 	++spiltted;
1079267f2492SGao Xiang 	if (fe->pcl->pageofs_out != (map->m_la & ~PAGE_MASK))
1080267f2492SGao Xiang 		fe->pcl->multibases = true;
10812bfab9c0SGao Xiang 	if (fe->pcl->length < offset + end - map->m_la) {
10822bfab9c0SGao Xiang 		fe->pcl->length = offset + end - map->m_la;
10832bfab9c0SGao Xiang 		fe->pcl->pageofs_out = map->m_la & ~PAGE_MASK;
10842bfab9c0SGao Xiang 	}
1085e7933278SGao Xiang 	if ((map->m_flags & EROFS_MAP_FULL_MAPPED) &&
1086e7933278SGao Xiang 	    !(map->m_flags & EROFS_MAP_PARTIAL_REF) &&
1087e7933278SGao Xiang 	    fe->pcl->length == map->m_llen)
1088e7933278SGao Xiang 		fe->pcl->partial = false;
108947e4937aSGao Xiang next_part:
10902bfab9c0SGao Xiang 	/* shorten the remaining extent to update progress */
109147e4937aSGao Xiang 	map->m_llen = offset + cur - map->m_la;
10922bfab9c0SGao Xiang 	map->m_flags &= ~EROFS_MAP_FULL_MAPPED;
109347e4937aSGao Xiang 
109447e4937aSGao Xiang 	end = cur;
109547e4937aSGao Xiang 	if (end > 0)
109647e4937aSGao Xiang 		goto repeat;
109747e4937aSGao Xiang 
109847e4937aSGao Xiang out:
109967148551SGao Xiang 	if (err)
110067148551SGao Xiang 		z_erofs_page_mark_eio(page);
110147e4937aSGao Xiang 	z_erofs_onlinepage_endio(page);
110247e4937aSGao Xiang 	return err;
110347e4937aSGao Xiang }
110447e4937aSGao Xiang 
1105ef4b4b46SYue Hu static bool z_erofs_is_sync_decompress(struct erofs_sb_info *sbi,
110640452ffcSHuang Jianan 				       unsigned int readahead_pages)
110740452ffcSHuang Jianan {
1108a2e20a25SMatthew Wilcox (Oracle) 	/* auto: enable for read_folio, disable for readahead */
110940452ffcSHuang Jianan 	if ((sbi->opt.sync_decompress == EROFS_SYNC_DECOMPRESS_AUTO) &&
111040452ffcSHuang Jianan 	    !readahead_pages)
111140452ffcSHuang Jianan 		return true;
111240452ffcSHuang Jianan 
111340452ffcSHuang Jianan 	if ((sbi->opt.sync_decompress == EROFS_SYNC_DECOMPRESS_FORCE_ON) &&
111440452ffcSHuang Jianan 	    (readahead_pages <= sbi->opt.max_sync_decompress_pages))
111540452ffcSHuang Jianan 		return true;
111640452ffcSHuang Jianan 
111740452ffcSHuang Jianan 	return false;
111840452ffcSHuang Jianan }
111940452ffcSHuang Jianan 
11206aaa7b06SGao Xiang static bool z_erofs_page_is_invalidated(struct page *page)
11216aaa7b06SGao Xiang {
11226aaa7b06SGao Xiang 	return !page->mapping && !z_erofs_is_shortlived_page(page);
11236aaa7b06SGao Xiang }
11246aaa7b06SGao Xiang 
11254f05687fSGao Xiang struct z_erofs_decompress_backend {
11264f05687fSGao Xiang 	struct page *onstack_pages[Z_EROFS_ONSTACK_PAGES];
11274f05687fSGao Xiang 	struct super_block *sb;
11284f05687fSGao Xiang 	struct z_erofs_pcluster *pcl;
11294f05687fSGao Xiang 
11304f05687fSGao Xiang 	/* pages with the longest decompressed length for deduplication */
11314f05687fSGao Xiang 	struct page **decompressed_pages;
11324f05687fSGao Xiang 	/* pages to keep the compressed data */
11334f05687fSGao Xiang 	struct page **compressed_pages;
11344f05687fSGao Xiang 
1135267f2492SGao Xiang 	struct list_head decompressed_secondary_bvecs;
11364f05687fSGao Xiang 	struct page **pagepool;
11372bfab9c0SGao Xiang 	unsigned int onstack_used, nr_pages;
11384f05687fSGao Xiang };
11394f05687fSGao Xiang 
1140267f2492SGao Xiang struct z_erofs_bvec_item {
1141267f2492SGao Xiang 	struct z_erofs_bvec bvec;
1142267f2492SGao Xiang 	struct list_head list;
1143267f2492SGao Xiang };
1144267f2492SGao Xiang 
1145267f2492SGao Xiang static void z_erofs_do_decompressed_bvec(struct z_erofs_decompress_backend *be,
11463fe96ee0SGao Xiang 					 struct z_erofs_bvec *bvec)
11473fe96ee0SGao Xiang {
1148267f2492SGao Xiang 	struct z_erofs_bvec_item *item;
1149267f2492SGao Xiang 
1150267f2492SGao Xiang 	if (!((bvec->offset + be->pcl->pageofs_out) & ~PAGE_MASK)) {
1151267f2492SGao Xiang 		unsigned int pgnr;
11523fe96ee0SGao Xiang 
1153267f2492SGao Xiang 		pgnr = (bvec->offset + be->pcl->pageofs_out) >> PAGE_SHIFT;
11542bfab9c0SGao Xiang 		DBG_BUGON(pgnr >= be->nr_pages);
115563bbb856SGao Xiang 		if (!be->decompressed_pages[pgnr]) {
11563fe96ee0SGao Xiang 			be->decompressed_pages[pgnr] = bvec->page;
1157267f2492SGao Xiang 			return;
11583fe96ee0SGao Xiang 		}
115963bbb856SGao Xiang 	}
11603fe96ee0SGao Xiang 
1161267f2492SGao Xiang 	/* (cold path) one pcluster is requested multiple times */
1162267f2492SGao Xiang 	item = kmalloc(sizeof(*item), GFP_KERNEL | __GFP_NOFAIL);
1163267f2492SGao Xiang 	item->bvec = *bvec;
1164267f2492SGao Xiang 	list_add(&item->list, &be->decompressed_secondary_bvecs);
1165267f2492SGao Xiang }
1166267f2492SGao Xiang 
1167267f2492SGao Xiang static void z_erofs_fill_other_copies(struct z_erofs_decompress_backend *be,
1168267f2492SGao Xiang 				      int err)
1169267f2492SGao Xiang {
1170267f2492SGao Xiang 	unsigned int off0 = be->pcl->pageofs_out;
1171267f2492SGao Xiang 	struct list_head *p, *n;
1172267f2492SGao Xiang 
1173267f2492SGao Xiang 	list_for_each_safe(p, n, &be->decompressed_secondary_bvecs) {
1174267f2492SGao Xiang 		struct z_erofs_bvec_item *bvi;
1175267f2492SGao Xiang 		unsigned int end, cur;
1176267f2492SGao Xiang 		void *dst, *src;
1177267f2492SGao Xiang 
1178267f2492SGao Xiang 		bvi = container_of(p, struct z_erofs_bvec_item, list);
1179267f2492SGao Xiang 		cur = bvi->bvec.offset < 0 ? -bvi->bvec.offset : 0;
1180267f2492SGao Xiang 		end = min_t(unsigned int, be->pcl->length - bvi->bvec.offset,
1181267f2492SGao Xiang 			    bvi->bvec.end);
1182267f2492SGao Xiang 		dst = kmap_local_page(bvi->bvec.page);
1183267f2492SGao Xiang 		while (cur < end) {
1184267f2492SGao Xiang 			unsigned int pgnr, scur, len;
1185267f2492SGao Xiang 
1186267f2492SGao Xiang 			pgnr = (bvi->bvec.offset + cur + off0) >> PAGE_SHIFT;
1187267f2492SGao Xiang 			DBG_BUGON(pgnr >= be->nr_pages);
1188267f2492SGao Xiang 
1189267f2492SGao Xiang 			scur = bvi->bvec.offset + cur -
1190267f2492SGao Xiang 					((pgnr << PAGE_SHIFT) - off0);
1191267f2492SGao Xiang 			len = min_t(unsigned int, end - cur, PAGE_SIZE - scur);
1192267f2492SGao Xiang 			if (!be->decompressed_pages[pgnr]) {
1193267f2492SGao Xiang 				err = -EFSCORRUPTED;
1194267f2492SGao Xiang 				cur += len;
1195267f2492SGao Xiang 				continue;
1196267f2492SGao Xiang 			}
1197267f2492SGao Xiang 			src = kmap_local_page(be->decompressed_pages[pgnr]);
1198267f2492SGao Xiang 			memcpy(dst + cur, src + scur, len);
1199267f2492SGao Xiang 			kunmap_local(src);
1200267f2492SGao Xiang 			cur += len;
1201267f2492SGao Xiang 		}
1202267f2492SGao Xiang 		kunmap_local(dst);
1203267f2492SGao Xiang 		if (err)
1204267f2492SGao Xiang 			z_erofs_page_mark_eio(bvi->bvec.page);
1205267f2492SGao Xiang 		z_erofs_onlinepage_endio(bvi->bvec.page);
1206267f2492SGao Xiang 		list_del(p);
1207267f2492SGao Xiang 		kfree(bvi);
1208267f2492SGao Xiang 	}
1209267f2492SGao Xiang }
1210267f2492SGao Xiang 
1211267f2492SGao Xiang static void z_erofs_parse_out_bvecs(struct z_erofs_decompress_backend *be)
121242fec235SGao Xiang {
12134f05687fSGao Xiang 	struct z_erofs_pcluster *pcl = be->pcl;
121406a304cdSGao Xiang 	struct z_erofs_bvec_iter biter;
121506a304cdSGao Xiang 	struct page *old_bvpage;
1216267f2492SGao Xiang 	int i;
121742fec235SGao Xiang 
1218387bab87SGao Xiang 	z_erofs_bvec_iter_begin(&biter, &pcl->bvset, Z_EROFS_INLINE_BVECS, 0);
121942fec235SGao Xiang 	for (i = 0; i < pcl->vcnt; ++i) {
122006a304cdSGao Xiang 		struct z_erofs_bvec bvec;
122142fec235SGao Xiang 
122206a304cdSGao Xiang 		z_erofs_bvec_dequeue(&biter, &bvec, &old_bvpage);
122342fec235SGao Xiang 
122406a304cdSGao Xiang 		if (old_bvpage)
12254f05687fSGao Xiang 			z_erofs_put_shortlivedpage(be->pagepool, old_bvpage);
122642fec235SGao Xiang 
122706a304cdSGao Xiang 		DBG_BUGON(z_erofs_page_is_invalidated(bvec.page));
1228267f2492SGao Xiang 		z_erofs_do_decompressed_bvec(be, &bvec);
122942fec235SGao Xiang 	}
123006a304cdSGao Xiang 
123106a304cdSGao Xiang 	old_bvpage = z_erofs_bvec_iter_end(&biter);
123206a304cdSGao Xiang 	if (old_bvpage)
12334f05687fSGao Xiang 		z_erofs_put_shortlivedpage(be->pagepool, old_bvpage);
123442fec235SGao Xiang }
123542fec235SGao Xiang 
12364f05687fSGao Xiang static int z_erofs_parse_in_bvecs(struct z_erofs_decompress_backend *be,
12374f05687fSGao Xiang 				  bool *overlapped)
123867139e36SGao Xiang {
12394f05687fSGao Xiang 	struct z_erofs_pcluster *pcl = be->pcl;
124067139e36SGao Xiang 	unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
124167139e36SGao Xiang 	int i, err = 0;
124267139e36SGao Xiang 
124367139e36SGao Xiang 	*overlapped = false;
124467139e36SGao Xiang 	for (i = 0; i < pclusterpages; ++i) {
1245ed722fbcSGao Xiang 		struct z_erofs_bvec *bvec = &pcl->compressed_bvecs[i];
1246ed722fbcSGao Xiang 		struct page *page = bvec->page;
124767139e36SGao Xiang 
124867139e36SGao Xiang 		/* compressed pages ought to be present before decompressing */
124967139e36SGao Xiang 		if (!page) {
125067139e36SGao Xiang 			DBG_BUGON(1);
125167139e36SGao Xiang 			continue;
125267139e36SGao Xiang 		}
1253fe3e5914SGao Xiang 		be->compressed_pages[i] = page;
125467139e36SGao Xiang 
125567139e36SGao Xiang 		if (z_erofs_is_inline_pcluster(pcl)) {
125667139e36SGao Xiang 			if (!PageUptodate(page))
125767139e36SGao Xiang 				err = -EIO;
125867139e36SGao Xiang 			continue;
125967139e36SGao Xiang 		}
126067139e36SGao Xiang 
126167139e36SGao Xiang 		DBG_BUGON(z_erofs_page_is_invalidated(page));
126267139e36SGao Xiang 		if (!z_erofs_is_shortlived_page(page)) {
12634f05687fSGao Xiang 			if (erofs_page_is_managed(EROFS_SB(be->sb), page)) {
126467139e36SGao Xiang 				if (!PageUptodate(page))
126567139e36SGao Xiang 					err = -EIO;
126667139e36SGao Xiang 				continue;
126767139e36SGao Xiang 			}
1268267f2492SGao Xiang 			z_erofs_do_decompressed_bvec(be, bvec);
126967139e36SGao Xiang 			*overlapped = true;
127067139e36SGao Xiang 		}
127167139e36SGao Xiang 	}
127267139e36SGao Xiang 
1273fe3e5914SGao Xiang 	if (err)
12744f05687fSGao Xiang 		return err;
12754f05687fSGao Xiang 	return 0;
127667139e36SGao Xiang }
127767139e36SGao Xiang 
12784f05687fSGao Xiang static int z_erofs_decompress_pcluster(struct z_erofs_decompress_backend *be,
12794f05687fSGao Xiang 				       int err)
128047e4937aSGao Xiang {
12814f05687fSGao Xiang 	struct erofs_sb_info *const sbi = EROFS_SB(be->sb);
12824f05687fSGao Xiang 	struct z_erofs_pcluster *pcl = be->pcl;
1283cecf864dSYue Hu 	unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
1284597e2953SYue Hu 	const struct z_erofs_decompressor *decompressor =
1285597e2953SYue Hu 				&erofs_decompressors[pcl->algorithmformat];
12862bfab9c0SGao Xiang 	unsigned int i, inputsize;
128767148551SGao Xiang 	int err2;
12882bfab9c0SGao Xiang 	struct page *page;
12892bfab9c0SGao Xiang 	bool overlapped;
129047e4937aSGao Xiang 
129187ca34a7SGao Xiang 	mutex_lock(&pcl->lock);
12922bfab9c0SGao Xiang 	be->nr_pages = PAGE_ALIGN(pcl->length + pcl->pageofs_out) >> PAGE_SHIFT;
129347e4937aSGao Xiang 
1294fe3e5914SGao Xiang 	/* allocate (de)compressed page arrays if cannot be kept on stack */
1295fe3e5914SGao Xiang 	be->decompressed_pages = NULL;
1296fe3e5914SGao Xiang 	be->compressed_pages = NULL;
1297fe3e5914SGao Xiang 	be->onstack_used = 0;
12982bfab9c0SGao Xiang 	if (be->nr_pages <= Z_EROFS_ONSTACK_PAGES) {
12994f05687fSGao Xiang 		be->decompressed_pages = be->onstack_pages;
13002bfab9c0SGao Xiang 		be->onstack_used = be->nr_pages;
13014f05687fSGao Xiang 		memset(be->decompressed_pages, 0,
13022bfab9c0SGao Xiang 		       sizeof(struct page *) * be->nr_pages);
1303fe3e5914SGao Xiang 	}
1304fe3e5914SGao Xiang 
1305fe3e5914SGao Xiang 	if (pclusterpages + be->onstack_used <= Z_EROFS_ONSTACK_PAGES)
1306fe3e5914SGao Xiang 		be->compressed_pages = be->onstack_pages + be->onstack_used;
1307fe3e5914SGao Xiang 
1308fe3e5914SGao Xiang 	if (!be->decompressed_pages)
13094f05687fSGao Xiang 		be->decompressed_pages =
1310647dd2c3SGao Xiang 			kvcalloc(be->nr_pages, sizeof(struct page *),
1311e7368187SGao Xiang 				 GFP_KERNEL | __GFP_NOFAIL);
1312fe3e5914SGao Xiang 	if (!be->compressed_pages)
1313fe3e5914SGao Xiang 		be->compressed_pages =
1314647dd2c3SGao Xiang 			kvcalloc(pclusterpages, sizeof(struct page *),
1315fe3e5914SGao Xiang 				 GFP_KERNEL | __GFP_NOFAIL);
131647e4937aSGao Xiang 
1317267f2492SGao Xiang 	z_erofs_parse_out_bvecs(be);
13184f05687fSGao Xiang 	err2 = z_erofs_parse_in_bvecs(be, &overlapped);
13194f05687fSGao Xiang 	if (err2)
13204f05687fSGao Xiang 		err = err2;
13218d8a09b0SGao Xiang 	if (err)
132247e4937aSGao Xiang 		goto out;
132347e4937aSGao Xiang 
1324cecf864dSYue Hu 	if (z_erofs_is_inline_pcluster(pcl))
1325cecf864dSYue Hu 		inputsize = pcl->tailpacking_size;
1326cecf864dSYue Hu 	else
1327cecf864dSYue Hu 		inputsize = pclusterpages * PAGE_SIZE;
1328cecf864dSYue Hu 
1329597e2953SYue Hu 	err = decompressor->decompress(&(struct z_erofs_decompress_req) {
13304f05687fSGao Xiang 					.sb = be->sb,
13314f05687fSGao Xiang 					.in = be->compressed_pages,
13324f05687fSGao Xiang 					.out = be->decompressed_pages,
1333cecf864dSYue Hu 					.pageofs_in = pcl->pageofs_in,
133487ca34a7SGao Xiang 					.pageofs_out = pcl->pageofs_out,
13359f6cc76eSGao Xiang 					.inputsize = inputsize,
13362bfab9c0SGao Xiang 					.outputsize = pcl->length,
133747e4937aSGao Xiang 					.alg = pcl->algorithmformat,
133847e4937aSGao Xiang 					.inplace_io = overlapped,
13392bfab9c0SGao Xiang 					.partial_decoding = pcl->partial,
1340267f2492SGao Xiang 					.fillgaps = pcl->multibases,
13414f05687fSGao Xiang 				 }, be->pagepool);
134247e4937aSGao Xiang 
134347e4937aSGao Xiang out:
1344cecf864dSYue Hu 	/* must handle all compressed pages before actual file pages */
1345cecf864dSYue Hu 	if (z_erofs_is_inline_pcluster(pcl)) {
1346ed722fbcSGao Xiang 		page = pcl->compressed_bvecs[0].page;
1347ed722fbcSGao Xiang 		WRITE_ONCE(pcl->compressed_bvecs[0].page, NULL);
1348cecf864dSYue Hu 		put_page(page);
1349cecf864dSYue Hu 	} else {
1350cecf864dSYue Hu 		for (i = 0; i < pclusterpages; ++i) {
1351ed722fbcSGao Xiang 			page = pcl->compressed_bvecs[i].page;
135247e4937aSGao Xiang 
135347e4937aSGao Xiang 			if (erofs_page_is_managed(sbi, page))
135447e4937aSGao Xiang 				continue;
135547e4937aSGao Xiang 
13566aaa7b06SGao Xiang 			/* recycle all individual short-lived pages */
13574f05687fSGao Xiang 			(void)z_erofs_put_shortlivedpage(be->pagepool, page);
1358ed722fbcSGao Xiang 			WRITE_ONCE(pcl->compressed_bvecs[i].page, NULL);
135947e4937aSGao Xiang 		}
1360cecf864dSYue Hu 	}
1361fe3e5914SGao Xiang 	if (be->compressed_pages < be->onstack_pages ||
1362fe3e5914SGao Xiang 	    be->compressed_pages >= be->onstack_pages + Z_EROFS_ONSTACK_PAGES)
1363647dd2c3SGao Xiang 		kvfree(be->compressed_pages);
1364267f2492SGao Xiang 	z_erofs_fill_other_copies(be, err);
136547e4937aSGao Xiang 
13662bfab9c0SGao Xiang 	for (i = 0; i < be->nr_pages; ++i) {
13674f05687fSGao Xiang 		page = be->decompressed_pages[i];
136847e4937aSGao Xiang 		if (!page)
136947e4937aSGao Xiang 			continue;
137047e4937aSGao Xiang 
13716aaa7b06SGao Xiang 		DBG_BUGON(z_erofs_page_is_invalidated(page));
137247e4937aSGao Xiang 
13736aaa7b06SGao Xiang 		/* recycle all individual short-lived pages */
13744f05687fSGao Xiang 		if (z_erofs_put_shortlivedpage(be->pagepool, page))
137547e4937aSGao Xiang 			continue;
137667148551SGao Xiang 		if (err)
137767148551SGao Xiang 			z_erofs_page_mark_eio(page);
137847e4937aSGao Xiang 		z_erofs_onlinepage_endio(page);
137947e4937aSGao Xiang 	}
138047e4937aSGao Xiang 
13814f05687fSGao Xiang 	if (be->decompressed_pages != be->onstack_pages)
1382647dd2c3SGao Xiang 		kvfree(be->decompressed_pages);
138347e4937aSGao Xiang 
13842bfab9c0SGao Xiang 	pcl->length = 0;
13852bfab9c0SGao Xiang 	pcl->partial = true;
1386267f2492SGao Xiang 	pcl->multibases = false;
138706a304cdSGao Xiang 	pcl->bvset.nextpage = NULL;
138887ca34a7SGao Xiang 	pcl->vcnt = 0;
138947e4937aSGao Xiang 
139087ca34a7SGao Xiang 	/* pcluster lock MUST be taken before the following line */
139147e4937aSGao Xiang 	WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_NIL);
139287ca34a7SGao Xiang 	mutex_unlock(&pcl->lock);
139347e4937aSGao Xiang 	return err;
139447e4937aSGao Xiang }
139547e4937aSGao Xiang 
13960c638f70SGao Xiang static void z_erofs_decompress_queue(const struct z_erofs_decompressqueue *io,
1397eaa9172aSGao Xiang 				     struct page **pagepool)
139847e4937aSGao Xiang {
13994f05687fSGao Xiang 	struct z_erofs_decompress_backend be = {
14004f05687fSGao Xiang 		.sb = io->sb,
14014f05687fSGao Xiang 		.pagepool = pagepool,
1402267f2492SGao Xiang 		.decompressed_secondary_bvecs =
1403267f2492SGao Xiang 			LIST_HEAD_INIT(be.decompressed_secondary_bvecs),
14044f05687fSGao Xiang 	};
140547e4937aSGao Xiang 	z_erofs_next_pcluster_t owned = io->head;
140647e4937aSGao Xiang 
1407967c28b2SGao Xiang 	while (owned != Z_EROFS_PCLUSTER_TAIL) {
140847e4937aSGao Xiang 		DBG_BUGON(owned == Z_EROFS_PCLUSTER_NIL);
140947e4937aSGao Xiang 
14104f05687fSGao Xiang 		be.pcl = container_of(owned, struct z_erofs_pcluster, next);
14114f05687fSGao Xiang 		owned = READ_ONCE(be.pcl->next);
141247e4937aSGao Xiang 
14134f05687fSGao Xiang 		z_erofs_decompress_pcluster(&be, io->eio ? -EIO : 0);
14144f05687fSGao Xiang 		erofs_workgroup_put(&be.pcl->obj);
141547e4937aSGao Xiang 	}
141647e4937aSGao Xiang }
141747e4937aSGao Xiang 
14180c638f70SGao Xiang static void z_erofs_decompressqueue_work(struct work_struct *work)
141947e4937aSGao Xiang {
1420a4b1fab1SGao Xiang 	struct z_erofs_decompressqueue *bgq =
1421a4b1fab1SGao Xiang 		container_of(work, struct z_erofs_decompressqueue, u.work);
1422eaa9172aSGao Xiang 	struct page *pagepool = NULL;
142347e4937aSGao Xiang 
1424967c28b2SGao Xiang 	DBG_BUGON(bgq->head == Z_EROFS_PCLUSTER_TAIL);
14250c638f70SGao Xiang 	z_erofs_decompress_queue(bgq, &pagepool);
1426eaa9172aSGao Xiang 	erofs_release_pages(&pagepool);
1427a4b1fab1SGao Xiang 	kvfree(bgq);
142847e4937aSGao Xiang }
142947e4937aSGao Xiang 
14303fffb589SSandeep Dhavale #ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
14313fffb589SSandeep Dhavale static void z_erofs_decompressqueue_kthread_work(struct kthread_work *work)
14323fffb589SSandeep Dhavale {
14333fffb589SSandeep Dhavale 	z_erofs_decompressqueue_work((struct work_struct *)work);
14343fffb589SSandeep Dhavale }
14353fffb589SSandeep Dhavale #endif
14363fffb589SSandeep Dhavale 
14377865827cSGao Xiang static void z_erofs_decompress_kickoff(struct z_erofs_decompressqueue *io,
1438cdba5506SGao Xiang 				       int bios)
14397865827cSGao Xiang {
14407865827cSGao Xiang 	struct erofs_sb_info *const sbi = EROFS_SB(io->sb);
14417865827cSGao Xiang 
14427865827cSGao Xiang 	/* wake up the caller thread for sync decompression */
1443cdba5506SGao Xiang 	if (io->sync) {
14447865827cSGao Xiang 		if (!atomic_add_return(bios, &io->pending_bios))
144560b30050SHongyu Jin 			complete(&io->u.done);
14467865827cSGao Xiang 		return;
14477865827cSGao Xiang 	}
14487865827cSGao Xiang 
14497865827cSGao Xiang 	if (atomic_add_return(bios, &io->pending_bios))
14507865827cSGao Xiang 		return;
14513fffb589SSandeep Dhavale 	/* Use (kthread_)work and sync decompression for atomic contexts only */
14527865827cSGao Xiang 	if (in_atomic() || irqs_disabled()) {
14533fffb589SSandeep Dhavale #ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
14543fffb589SSandeep Dhavale 		struct kthread_worker *worker;
14553fffb589SSandeep Dhavale 
14563fffb589SSandeep Dhavale 		rcu_read_lock();
14573fffb589SSandeep Dhavale 		worker = rcu_dereference(
14583fffb589SSandeep Dhavale 				z_erofs_pcpu_workers[raw_smp_processor_id()]);
14593fffb589SSandeep Dhavale 		if (!worker) {
14603fffb589SSandeep Dhavale 			INIT_WORK(&io->u.work, z_erofs_decompressqueue_work);
14617865827cSGao Xiang 			queue_work(z_erofs_workqueue, &io->u.work);
14623fffb589SSandeep Dhavale 		} else {
14633fffb589SSandeep Dhavale 			kthread_queue_work(worker, &io->u.kthread_work);
14643fffb589SSandeep Dhavale 		}
14653fffb589SSandeep Dhavale 		rcu_read_unlock();
14663fffb589SSandeep Dhavale #else
14673fffb589SSandeep Dhavale 		queue_work(z_erofs_workqueue, &io->u.work);
14683fffb589SSandeep Dhavale #endif
14697865827cSGao Xiang 		/* enable sync decompression for readahead */
14707865827cSGao Xiang 		if (sbi->opt.sync_decompress == EROFS_SYNC_DECOMPRESS_AUTO)
14717865827cSGao Xiang 			sbi->opt.sync_decompress = EROFS_SYNC_DECOMPRESS_FORCE_ON;
14727865827cSGao Xiang 		return;
14737865827cSGao Xiang 	}
14747865827cSGao Xiang 	z_erofs_decompressqueue_work(&io->u.work);
14757865827cSGao Xiang }
14767865827cSGao Xiang 
147747e4937aSGao Xiang static struct page *pickup_page_for_submission(struct z_erofs_pcluster *pcl,
147847e4937aSGao Xiang 					       unsigned int nr,
1479eaa9172aSGao Xiang 					       struct page **pagepool,
14809f2731d6SGao Xiang 					       struct address_space *mc)
148147e4937aSGao Xiang {
148247e4937aSGao Xiang 	const pgoff_t index = pcl->obj.index;
14839f2731d6SGao Xiang 	gfp_t gfp = mapping_gfp_mask(mc);
148447e4937aSGao Xiang 	bool tocache = false;
148547e4937aSGao Xiang 
148647e4937aSGao Xiang 	struct address_space *mapping;
148747e4937aSGao Xiang 	struct page *oldpage, *page;
148847e4937aSGao Xiang 	int justfound;
148947e4937aSGao Xiang 
149047e4937aSGao Xiang repeat:
1491ed722fbcSGao Xiang 	page = READ_ONCE(pcl->compressed_bvecs[nr].page);
149247e4937aSGao Xiang 	oldpage = page;
149347e4937aSGao Xiang 
149447e4937aSGao Xiang 	if (!page)
149547e4937aSGao Xiang 		goto out_allocpage;
149647e4937aSGao Xiang 
1497b1ed220cSGao Xiang 	justfound = (unsigned long)page & 1UL;
1498b1ed220cSGao Xiang 	page = (struct page *)((unsigned long)page & ~1UL);
149947e4937aSGao Xiang 
15001825c8d7SGao Xiang 	/*
15011825c8d7SGao Xiang 	 * preallocated cached pages, which is used to avoid direct reclaim
15021825c8d7SGao Xiang 	 * otherwise, it will go inplace I/O path instead.
15031825c8d7SGao Xiang 	 */
15041825c8d7SGao Xiang 	if (page->private == Z_EROFS_PREALLOCATED_PAGE) {
1505ed722fbcSGao Xiang 		WRITE_ONCE(pcl->compressed_bvecs[nr].page, page);
15061825c8d7SGao Xiang 		set_page_private(page, 0);
15071825c8d7SGao Xiang 		tocache = true;
15081825c8d7SGao Xiang 		goto out_tocache;
15091825c8d7SGao Xiang 	}
151047e4937aSGao Xiang 	mapping = READ_ONCE(page->mapping);
151147e4937aSGao Xiang 
151247e4937aSGao Xiang 	/*
15136aaa7b06SGao Xiang 	 * file-backed online pages in plcuster are all locked steady,
151447e4937aSGao Xiang 	 * therefore it is impossible for `mapping' to be NULL.
151547e4937aSGao Xiang 	 */
151647e4937aSGao Xiang 	if (mapping && mapping != mc)
151747e4937aSGao Xiang 		/* ought to be unmanaged pages */
151847e4937aSGao Xiang 		goto out;
151947e4937aSGao Xiang 
15206aaa7b06SGao Xiang 	/* directly return for shortlived page as well */
15216aaa7b06SGao Xiang 	if (z_erofs_is_shortlived_page(page))
15226aaa7b06SGao Xiang 		goto out;
15236aaa7b06SGao Xiang 
152447e4937aSGao Xiang 	lock_page(page);
152547e4937aSGao Xiang 
152647e4937aSGao Xiang 	/* only true if page reclaim goes wrong, should never happen */
152747e4937aSGao Xiang 	DBG_BUGON(justfound && PagePrivate(page));
152847e4937aSGao Xiang 
152947e4937aSGao Xiang 	/* the page is still in manage cache */
153047e4937aSGao Xiang 	if (page->mapping == mc) {
1531ed722fbcSGao Xiang 		WRITE_ONCE(pcl->compressed_bvecs[nr].page, page);
153247e4937aSGao Xiang 
153347e4937aSGao Xiang 		if (!PagePrivate(page)) {
153447e4937aSGao Xiang 			/*
153547e4937aSGao Xiang 			 * impossible to be !PagePrivate(page) for
153647e4937aSGao Xiang 			 * the current restriction as well if
1537ed722fbcSGao Xiang 			 * the page is already in compressed_bvecs[].
153847e4937aSGao Xiang 			 */
153947e4937aSGao Xiang 			DBG_BUGON(!justfound);
154047e4937aSGao Xiang 
154147e4937aSGao Xiang 			justfound = 0;
154247e4937aSGao Xiang 			set_page_private(page, (unsigned long)pcl);
154347e4937aSGao Xiang 			SetPagePrivate(page);
154447e4937aSGao Xiang 		}
154547e4937aSGao Xiang 
154647e4937aSGao Xiang 		/* no need to submit io if it is already up-to-date */
154747e4937aSGao Xiang 		if (PageUptodate(page)) {
154847e4937aSGao Xiang 			unlock_page(page);
154947e4937aSGao Xiang 			page = NULL;
155047e4937aSGao Xiang 		}
155147e4937aSGao Xiang 		goto out;
155247e4937aSGao Xiang 	}
155347e4937aSGao Xiang 
155447e4937aSGao Xiang 	/*
155547e4937aSGao Xiang 	 * the managed page has been truncated, it's unsafe to
155647e4937aSGao Xiang 	 * reuse this one, let's allocate a new cache-managed page.
155747e4937aSGao Xiang 	 */
155847e4937aSGao Xiang 	DBG_BUGON(page->mapping);
155947e4937aSGao Xiang 	DBG_BUGON(!justfound);
156047e4937aSGao Xiang 
156147e4937aSGao Xiang 	tocache = true;
156247e4937aSGao Xiang 	unlock_page(page);
156347e4937aSGao Xiang 	put_page(page);
156447e4937aSGao Xiang out_allocpage:
15655ddcee1fSGao Xiang 	page = erofs_allocpage(pagepool, gfp | __GFP_NOFAIL);
1566ed722fbcSGao Xiang 	if (oldpage != cmpxchg(&pcl->compressed_bvecs[nr].page,
1567ed722fbcSGao Xiang 			       oldpage, page)) {
1568eaa9172aSGao Xiang 		erofs_pagepool_add(pagepool, page);
15695ddcee1fSGao Xiang 		cond_resched();
15705ddcee1fSGao Xiang 		goto repeat;
15715ddcee1fSGao Xiang 	}
15721825c8d7SGao Xiang out_tocache:
1573bf225074SGao Xiang 	if (!tocache || add_to_page_cache_lru(page, mc, index + nr, gfp)) {
1574bf225074SGao Xiang 		/* turn into temporary page if fails (1 ref) */
1575bf225074SGao Xiang 		set_page_private(page, Z_EROFS_SHORTLIVED_PAGE);
1576bf225074SGao Xiang 		goto out;
1577a30573b3SGao Xiang 	}
1578bf225074SGao Xiang 	attach_page_private(page, pcl);
1579bf225074SGao Xiang 	/* drop a refcount added by allocpage (then we have 2 refs here) */
1580bf225074SGao Xiang 	put_page(page);
1581bf225074SGao Xiang 
158247e4937aSGao Xiang out:	/* the only exit (for tracing and debugging) */
158347e4937aSGao Xiang 	return page;
158447e4937aSGao Xiang }
158547e4937aSGao Xiang 
1586cdba5506SGao Xiang static struct z_erofs_decompressqueue *jobqueue_init(struct super_block *sb,
1587a4b1fab1SGao Xiang 			      struct z_erofs_decompressqueue *fgq, bool *fg)
158847e4937aSGao Xiang {
1589a4b1fab1SGao Xiang 	struct z_erofs_decompressqueue *q;
159047e4937aSGao Xiang 
1591a4b1fab1SGao Xiang 	if (fg && !*fg) {
1592a4b1fab1SGao Xiang 		q = kvzalloc(sizeof(*q), GFP_KERNEL | __GFP_NOWARN);
1593a4b1fab1SGao Xiang 		if (!q) {
1594a4b1fab1SGao Xiang 			*fg = true;
1595a4b1fab1SGao Xiang 			goto fg_out;
159647e4937aSGao Xiang 		}
15973fffb589SSandeep Dhavale #ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
15983fffb589SSandeep Dhavale 		kthread_init_work(&q->u.kthread_work,
15993fffb589SSandeep Dhavale 				  z_erofs_decompressqueue_kthread_work);
16003fffb589SSandeep Dhavale #else
16010c638f70SGao Xiang 		INIT_WORK(&q->u.work, z_erofs_decompressqueue_work);
16023fffb589SSandeep Dhavale #endif
1603a4b1fab1SGao Xiang 	} else {
1604a4b1fab1SGao Xiang fg_out:
1605a4b1fab1SGao Xiang 		q = fgq;
160660b30050SHongyu Jin 		init_completion(&fgq->u.done);
1607a4b1fab1SGao Xiang 		atomic_set(&fgq->pending_bios, 0);
160867148551SGao Xiang 		q->eio = false;
1609cdba5506SGao Xiang 		q->sync = true;
1610a4b1fab1SGao Xiang 	}
1611a4b1fab1SGao Xiang 	q->sb = sb;
1612967c28b2SGao Xiang 	q->head = Z_EROFS_PCLUSTER_TAIL;
1613a4b1fab1SGao Xiang 	return q;
161447e4937aSGao Xiang }
161547e4937aSGao Xiang 
161647e4937aSGao Xiang /* define decompression jobqueue types */
161747e4937aSGao Xiang enum {
161847e4937aSGao Xiang 	JQ_BYPASS,
161947e4937aSGao Xiang 	JQ_SUBMIT,
162047e4937aSGao Xiang 	NR_JOBQUEUES,
162147e4937aSGao Xiang };
162247e4937aSGao Xiang 
162347e4937aSGao Xiang static void move_to_bypass_jobqueue(struct z_erofs_pcluster *pcl,
162447e4937aSGao Xiang 				    z_erofs_next_pcluster_t qtail[],
162547e4937aSGao Xiang 				    z_erofs_next_pcluster_t owned_head)
162647e4937aSGao Xiang {
162747e4937aSGao Xiang 	z_erofs_next_pcluster_t *const submit_qtail = qtail[JQ_SUBMIT];
162847e4937aSGao Xiang 	z_erofs_next_pcluster_t *const bypass_qtail = qtail[JQ_BYPASS];
162947e4937aSGao Xiang 
1630967c28b2SGao Xiang 	WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_TAIL);
163147e4937aSGao Xiang 
163247e4937aSGao Xiang 	WRITE_ONCE(*submit_qtail, owned_head);
163347e4937aSGao Xiang 	WRITE_ONCE(*bypass_qtail, &pcl->next);
163447e4937aSGao Xiang 
163547e4937aSGao Xiang 	qtail[JQ_BYPASS] = &pcl->next;
163647e4937aSGao Xiang }
163747e4937aSGao Xiang 
16387865827cSGao Xiang static void z_erofs_decompressqueue_endio(struct bio *bio)
16397865827cSGao Xiang {
1640cdba5506SGao Xiang 	struct z_erofs_decompressqueue *q = bio->bi_private;
16417865827cSGao Xiang 	blk_status_t err = bio->bi_status;
16427865827cSGao Xiang 	struct bio_vec *bvec;
16437865827cSGao Xiang 	struct bvec_iter_all iter_all;
16447865827cSGao Xiang 
16457865827cSGao Xiang 	bio_for_each_segment_all(bvec, bio, iter_all) {
16467865827cSGao Xiang 		struct page *page = bvec->bv_page;
16477865827cSGao Xiang 
16487865827cSGao Xiang 		DBG_BUGON(PageUptodate(page));
16497865827cSGao Xiang 		DBG_BUGON(z_erofs_page_is_invalidated(page));
16507865827cSGao Xiang 
16517865827cSGao Xiang 		if (erofs_page_is_managed(EROFS_SB(q->sb), page)) {
16527865827cSGao Xiang 			if (!err)
16537865827cSGao Xiang 				SetPageUptodate(page);
16547865827cSGao Xiang 			unlock_page(page);
16557865827cSGao Xiang 		}
16567865827cSGao Xiang 	}
165767148551SGao Xiang 	if (err)
165867148551SGao Xiang 		q->eio = true;
1659cdba5506SGao Xiang 	z_erofs_decompress_kickoff(q, -1);
16607865827cSGao Xiang 	bio_put(bio);
16617865827cSGao Xiang }
16627865827cSGao Xiang 
166383a386c0SGao Xiang static void z_erofs_submit_queue(struct z_erofs_decompress_frontend *f,
1664a4b1fab1SGao Xiang 				 struct z_erofs_decompressqueue *fgq,
1665ef4b4b46SYue Hu 				 bool *force_fg, bool readahead)
166647e4937aSGao Xiang {
166783a386c0SGao Xiang 	struct super_block *sb = f->inode->i_sb;
166883a386c0SGao Xiang 	struct address_space *mc = MNGD_MAPPING(EROFS_SB(sb));
166947e4937aSGao Xiang 	z_erofs_next_pcluster_t qtail[NR_JOBQUEUES];
1670a4b1fab1SGao Xiang 	struct z_erofs_decompressqueue *q[NR_JOBQUEUES];
16715c6dcc57SGao Xiang 	z_erofs_next_pcluster_t owned_head = f->owned_head;
1672dfeab2e9SGao Xiang 	/* bio is NULL initially, so no need to initialize last_{index,bdev} */
16733f649ab7SKees Cook 	pgoff_t last_index;
1674dfeab2e9SGao Xiang 	struct block_device *last_bdev;
16751e4a2955SGao Xiang 	unsigned int nr_bios = 0;
16761e4a2955SGao Xiang 	struct bio *bio = NULL;
167782e60d00SJohannes Weiner 	unsigned long pflags;
167882e60d00SJohannes Weiner 	int memstall = 0;
167947e4937aSGao Xiang 
1680cdba5506SGao Xiang 	/*
1681cdba5506SGao Xiang 	 * if managed cache is enabled, bypass jobqueue is needed,
1682cdba5506SGao Xiang 	 * no need to read from device for all pclusters in this queue.
1683cdba5506SGao Xiang 	 */
1684cdba5506SGao Xiang 	q[JQ_BYPASS] = jobqueue_init(sb, fgq + JQ_BYPASS, NULL);
1685cdba5506SGao Xiang 	q[JQ_SUBMIT] = jobqueue_init(sb, fgq + JQ_SUBMIT, force_fg);
1686cdba5506SGao Xiang 
1687a4b1fab1SGao Xiang 	qtail[JQ_BYPASS] = &q[JQ_BYPASS]->head;
1688a4b1fab1SGao Xiang 	qtail[JQ_SUBMIT] = &q[JQ_SUBMIT]->head;
168947e4937aSGao Xiang 
169047e4937aSGao Xiang 	/* by default, all need io submission */
169147e4937aSGao Xiang 	q[JQ_SUBMIT]->head = owned_head;
169247e4937aSGao Xiang 
169347e4937aSGao Xiang 	do {
1694dfeab2e9SGao Xiang 		struct erofs_map_dev mdev;
169547e4937aSGao Xiang 		struct z_erofs_pcluster *pcl;
16961e4a2955SGao Xiang 		pgoff_t cur, end;
16971e4a2955SGao Xiang 		unsigned int i = 0;
16981e4a2955SGao Xiang 		bool bypass = true;
169947e4937aSGao Xiang 
170047e4937aSGao Xiang 		DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_NIL);
170147e4937aSGao Xiang 		pcl = container_of(owned_head, struct z_erofs_pcluster, next);
1702967c28b2SGao Xiang 		owned_head = READ_ONCE(pcl->next);
170347e4937aSGao Xiang 
1704cecf864dSYue Hu 		if (z_erofs_is_inline_pcluster(pcl)) {
1705cecf864dSYue Hu 			move_to_bypass_jobqueue(pcl, qtail, owned_head);
1706cecf864dSYue Hu 			continue;
1707cecf864dSYue Hu 		}
1708cecf864dSYue Hu 
1709dfeab2e9SGao Xiang 		/* no device id here, thus it will always succeed */
1710dfeab2e9SGao Xiang 		mdev = (struct erofs_map_dev) {
17113acea5fcSJingbo Xu 			.m_pa = erofs_pos(sb, pcl->obj.index),
1712dfeab2e9SGao Xiang 		};
1713dfeab2e9SGao Xiang 		(void)erofs_map_dev(sb, &mdev);
1714dfeab2e9SGao Xiang 
17153acea5fcSJingbo Xu 		cur = erofs_blknr(sb, mdev.m_pa);
17169f6cc76eSGao Xiang 		end = cur + pcl->pclusterpages;
171747e4937aSGao Xiang 
17181e4a2955SGao Xiang 		do {
17191e4a2955SGao Xiang 			struct page *page;
172047e4937aSGao Xiang 
17216ab5eed6SGao Xiang 			page = pickup_page_for_submission(pcl, i++,
17226ab5eed6SGao Xiang 					&f->pagepool, mc);
17231e4a2955SGao Xiang 			if (!page)
17241e4a2955SGao Xiang 				continue;
172547e4937aSGao Xiang 
1726dfeab2e9SGao Xiang 			if (bio && (cur != last_index + 1 ||
1727dfeab2e9SGao Xiang 				    last_bdev != mdev.m_bdev)) {
172847e4937aSGao Xiang submit_bio_retry:
172994e4e153SGao Xiang 				submit_bio(bio);
173082e60d00SJohannes Weiner 				if (memstall) {
173182e60d00SJohannes Weiner 					psi_memstall_leave(&pflags);
173282e60d00SJohannes Weiner 					memstall = 0;
173382e60d00SJohannes Weiner 				}
173447e4937aSGao Xiang 				bio = NULL;
173547e4937aSGao Xiang 			}
173647e4937aSGao Xiang 
173782e60d00SJohannes Weiner 			if (unlikely(PageWorkingset(page)) && !memstall) {
173899486c51SChristoph Hellwig 				psi_memstall_enter(&pflags);
173982e60d00SJohannes Weiner 				memstall = 1;
174082e60d00SJohannes Weiner 			}
174199486c51SChristoph Hellwig 
174247e4937aSGao Xiang 			if (!bio) {
174307888c66SChristoph Hellwig 				bio = bio_alloc(mdev.m_bdev, BIO_MAX_VECS,
174407888c66SChristoph Hellwig 						REQ_OP_READ, GFP_NOIO);
17450c638f70SGao Xiang 				bio->bi_end_io = z_erofs_decompressqueue_endio;
1746dfeab2e9SGao Xiang 
1747dfeab2e9SGao Xiang 				last_bdev = mdev.m_bdev;
17481e4a2955SGao Xiang 				bio->bi_iter.bi_sector = (sector_t)cur <<
17493acea5fcSJingbo Xu 					(sb->s_blocksize_bits - 9);
1750cdba5506SGao Xiang 				bio->bi_private = q[JQ_SUBMIT];
1751ef4b4b46SYue Hu 				if (readahead)
17526ea5aad3SGao Xiang 					bio->bi_opf |= REQ_RAHEAD;
175347e4937aSGao Xiang 				++nr_bios;
175447e4937aSGao Xiang 			}
175547e4937aSGao Xiang 
17566c3e485eSGao Xiang 			if (bio_add_page(bio, page, PAGE_SIZE, 0) < PAGE_SIZE)
175747e4937aSGao Xiang 				goto submit_bio_retry;
175847e4937aSGao Xiang 
17591e4a2955SGao Xiang 			last_index = cur;
17601e4a2955SGao Xiang 			bypass = false;
17611e4a2955SGao Xiang 		} while (++cur < end);
176247e4937aSGao Xiang 
17631e4a2955SGao Xiang 		if (!bypass)
176447e4937aSGao Xiang 			qtail[JQ_SUBMIT] = &pcl->next;
176547e4937aSGao Xiang 		else
176647e4937aSGao Xiang 			move_to_bypass_jobqueue(pcl, qtail, owned_head);
176747e4937aSGao Xiang 	} while (owned_head != Z_EROFS_PCLUSTER_TAIL);
176847e4937aSGao Xiang 
176999486c51SChristoph Hellwig 	if (bio) {
177094e4e153SGao Xiang 		submit_bio(bio);
177182e60d00SJohannes Weiner 		if (memstall)
177282e60d00SJohannes Weiner 			psi_memstall_leave(&pflags);
177399486c51SChristoph Hellwig 	}
177447e4937aSGao Xiang 
1775587a67b7SGao Xiang 	/*
1776587a67b7SGao Xiang 	 * although background is preferred, no one is pending for submission.
17773fffb589SSandeep Dhavale 	 * don't issue decompression but drop it directly instead.
1778587a67b7SGao Xiang 	 */
1779587a67b7SGao Xiang 	if (!*force_fg && !nr_bios) {
1780587a67b7SGao Xiang 		kvfree(q[JQ_SUBMIT]);
17811e4a2955SGao Xiang 		return;
1782587a67b7SGao Xiang 	}
1783cdba5506SGao Xiang 	z_erofs_decompress_kickoff(q[JQ_SUBMIT], nr_bios);
178447e4937aSGao Xiang }
178547e4937aSGao Xiang 
178683a386c0SGao Xiang static void z_erofs_runqueue(struct z_erofs_decompress_frontend *f,
17876ab5eed6SGao Xiang 			     bool force_fg, bool ra)
178847e4937aSGao Xiang {
1789a4b1fab1SGao Xiang 	struct z_erofs_decompressqueue io[NR_JOBQUEUES];
179047e4937aSGao Xiang 
17915c6dcc57SGao Xiang 	if (f->owned_head == Z_EROFS_PCLUSTER_TAIL)
179247e4937aSGao Xiang 		return;
17936ab5eed6SGao Xiang 	z_erofs_submit_queue(f, io, &force_fg, ra);
179447e4937aSGao Xiang 
17950c638f70SGao Xiang 	/* handle bypass queue (no i/o pclusters) immediately */
17966ab5eed6SGao Xiang 	z_erofs_decompress_queue(&io[JQ_BYPASS], &f->pagepool);
179747e4937aSGao Xiang 
179847e4937aSGao Xiang 	if (!force_fg)
179947e4937aSGao Xiang 		return;
180047e4937aSGao Xiang 
180147e4937aSGao Xiang 	/* wait until all bios are completed */
180260b30050SHongyu Jin 	wait_for_completion_io(&io[JQ_SUBMIT].u.done);
180347e4937aSGao Xiang 
18040c638f70SGao Xiang 	/* handle synchronous decompress queue in the caller context */
18056ab5eed6SGao Xiang 	z_erofs_decompress_queue(&io[JQ_SUBMIT], &f->pagepool);
180647e4937aSGao Xiang }
180747e4937aSGao Xiang 
180838629291SGao Xiang /*
180938629291SGao Xiang  * Since partial uptodate is still unimplemented for now, we have to use
181038629291SGao Xiang  * approximate readmore strategies as a start.
181138629291SGao Xiang  */
181238629291SGao Xiang static void z_erofs_pcluster_readmore(struct z_erofs_decompress_frontend *f,
18136ab5eed6SGao Xiang 		struct readahead_control *rac, bool backmost)
181438629291SGao Xiang {
181538629291SGao Xiang 	struct inode *inode = f->inode;
181638629291SGao Xiang 	struct erofs_map_blocks *map = &f->map;
1817796e9149SYue Hu 	erofs_off_t cur, end, headoffset = f->headoffset;
181838629291SGao Xiang 	int err;
181938629291SGao Xiang 
182038629291SGao Xiang 	if (backmost) {
1821796e9149SYue Hu 		if (rac)
1822796e9149SYue Hu 			end = headoffset + readahead_length(rac) - 1;
1823796e9149SYue Hu 		else
1824796e9149SYue Hu 			end = headoffset + PAGE_SIZE - 1;
182538629291SGao Xiang 		map->m_la = end;
1826622ceaddSGao Xiang 		err = z_erofs_map_blocks_iter(inode, map,
1827622ceaddSGao Xiang 					      EROFS_GET_BLOCKS_READMORE);
182838629291SGao Xiang 		if (err)
182938629291SGao Xiang 			return;
183038629291SGao Xiang 
1831796e9149SYue Hu 		/* expand ra for the trailing edge if readahead */
183238629291SGao Xiang 		if (rac) {
183338629291SGao Xiang 			cur = round_up(map->m_la + map->m_llen, PAGE_SIZE);
1834796e9149SYue Hu 			readahead_expand(rac, headoffset, cur - headoffset);
183538629291SGao Xiang 			return;
183638629291SGao Xiang 		}
183738629291SGao Xiang 		end = round_up(end, PAGE_SIZE);
183838629291SGao Xiang 	} else {
183938629291SGao Xiang 		end = round_up(map->m_la, PAGE_SIZE);
184038629291SGao Xiang 
184138629291SGao Xiang 		if (!map->m_llen)
184238629291SGao Xiang 			return;
184338629291SGao Xiang 	}
184438629291SGao Xiang 
184538629291SGao Xiang 	cur = map->m_la + map->m_llen - 1;
184638629291SGao Xiang 	while (cur >= end) {
184738629291SGao Xiang 		pgoff_t index = cur >> PAGE_SHIFT;
184838629291SGao Xiang 		struct page *page;
184938629291SGao Xiang 
185038629291SGao Xiang 		page = erofs_grab_cache_page_nowait(inode->i_mapping, index);
1851aa793b46SGao Xiang 		if (page) {
185238629291SGao Xiang 			if (PageUptodate(page)) {
185338629291SGao Xiang 				unlock_page(page);
1854aa793b46SGao Xiang 			} else {
18556ab5eed6SGao Xiang 				err = z_erofs_do_read_page(f, page);
185638629291SGao Xiang 				if (err)
185738629291SGao Xiang 					erofs_err(inode->i_sb,
185838629291SGao Xiang 						  "readmore error at page %lu @ nid %llu",
185938629291SGao Xiang 						  index, EROFS_I(inode)->nid);
1860aa793b46SGao Xiang 			}
186138629291SGao Xiang 			put_page(page);
1862aa793b46SGao Xiang 		}
1863aa793b46SGao Xiang 
186438629291SGao Xiang 		if (cur < PAGE_SIZE)
186538629291SGao Xiang 			break;
186638629291SGao Xiang 		cur = (index << PAGE_SHIFT) - 1;
186738629291SGao Xiang 	}
186838629291SGao Xiang }
186938629291SGao Xiang 
1870a2e20a25SMatthew Wilcox (Oracle) static int z_erofs_read_folio(struct file *file, struct folio *folio)
187147e4937aSGao Xiang {
1872a2e20a25SMatthew Wilcox (Oracle) 	struct page *page = &folio->page;
187347e4937aSGao Xiang 	struct inode *const inode = page->mapping->host;
187440452ffcSHuang Jianan 	struct erofs_sb_info *const sbi = EROFS_I_SB(inode);
187547e4937aSGao Xiang 	struct z_erofs_decompress_frontend f = DECOMPRESS_FRONTEND_INIT(inode);
187647e4937aSGao Xiang 	int err;
187747e4937aSGao Xiang 
187847e4937aSGao Xiang 	trace_erofs_readpage(page, false);
187947e4937aSGao Xiang 	f.headoffset = (erofs_off_t)page->index << PAGE_SHIFT;
188047e4937aSGao Xiang 
18816ab5eed6SGao Xiang 	z_erofs_pcluster_readmore(&f, NULL, true);
18826ab5eed6SGao Xiang 	err = z_erofs_do_read_page(&f, page);
18836ab5eed6SGao Xiang 	z_erofs_pcluster_readmore(&f, NULL, false);
18845c6dcc57SGao Xiang 	(void)z_erofs_collector_end(&f);
188547e4937aSGao Xiang 
188647e4937aSGao Xiang 	/* if some compressed cluster ready, need submit them anyway */
18876ab5eed6SGao Xiang 	z_erofs_runqueue(&f, z_erofs_is_sync_decompress(sbi, 0), false);
188847e4937aSGao Xiang 
188947e4937aSGao Xiang 	if (err)
18904f761fa2SGao Xiang 		erofs_err(inode->i_sb, "failed to read, err [%d]", err);
189147e4937aSGao Xiang 
189209c54379SGao Xiang 	erofs_put_metabuf(&f.map.buf);
18936ab5eed6SGao Xiang 	erofs_release_pages(&f.pagepool);
189447e4937aSGao Xiang 	return err;
189547e4937aSGao Xiang }
189647e4937aSGao Xiang 
18970615090cSMatthew Wilcox (Oracle) static void z_erofs_readahead(struct readahead_control *rac)
189847e4937aSGao Xiang {
18990615090cSMatthew Wilcox (Oracle) 	struct inode *const inode = rac->mapping->host;
190047e4937aSGao Xiang 	struct erofs_sb_info *const sbi = EROFS_I_SB(inode);
190147e4937aSGao Xiang 	struct z_erofs_decompress_frontend f = DECOMPRESS_FRONTEND_INIT(inode);
19026ab5eed6SGao Xiang 	struct page *head = NULL, *page;
190338629291SGao Xiang 	unsigned int nr_pages;
190447e4937aSGao Xiang 
19050615090cSMatthew Wilcox (Oracle) 	f.headoffset = readahead_pos(rac);
190647e4937aSGao Xiang 
19076ab5eed6SGao Xiang 	z_erofs_pcluster_readmore(&f, rac, true);
190838629291SGao Xiang 	nr_pages = readahead_count(rac);
190938629291SGao Xiang 	trace_erofs_readpages(inode, readahead_index(rac), nr_pages, false);
191038629291SGao Xiang 
19110615090cSMatthew Wilcox (Oracle) 	while ((page = readahead_page(rac))) {
191247e4937aSGao Xiang 		set_page_private(page, (unsigned long)head);
191347e4937aSGao Xiang 		head = page;
191447e4937aSGao Xiang 	}
191547e4937aSGao Xiang 
191647e4937aSGao Xiang 	while (head) {
191747e4937aSGao Xiang 		struct page *page = head;
191847e4937aSGao Xiang 		int err;
191947e4937aSGao Xiang 
192047e4937aSGao Xiang 		/* traversal in reverse order */
192147e4937aSGao Xiang 		head = (void *)page_private(page);
192247e4937aSGao Xiang 
19236ab5eed6SGao Xiang 		err = z_erofs_do_read_page(&f, page);
1924a5876e24SGao Xiang 		if (err)
19254f761fa2SGao Xiang 			erofs_err(inode->i_sb,
19264f761fa2SGao Xiang 				  "readahead error at page %lu @ nid %llu",
19274f761fa2SGao Xiang 				  page->index, EROFS_I(inode)->nid);
192847e4937aSGao Xiang 		put_page(page);
192947e4937aSGao Xiang 	}
19306ab5eed6SGao Xiang 	z_erofs_pcluster_readmore(&f, rac, false);
19315c6dcc57SGao Xiang 	(void)z_erofs_collector_end(&f);
193247e4937aSGao Xiang 
19336ab5eed6SGao Xiang 	z_erofs_runqueue(&f, z_erofs_is_sync_decompress(sbi, nr_pages), true);
193409c54379SGao Xiang 	erofs_put_metabuf(&f.map.buf);
19356ab5eed6SGao Xiang 	erofs_release_pages(&f.pagepool);
193647e4937aSGao Xiang }
193747e4937aSGao Xiang 
19380c638f70SGao Xiang const struct address_space_operations z_erofs_aops = {
1939a2e20a25SMatthew Wilcox (Oracle) 	.read_folio = z_erofs_read_folio,
19400615090cSMatthew Wilcox (Oracle) 	.readahead = z_erofs_readahead,
194147e4937aSGao Xiang };
1942