xref: /openbmc/linux/fs/erofs/zdata.c (revision 64094a04)
147e4937aSGao Xiang // SPDX-License-Identifier: GPL-2.0-only
247e4937aSGao Xiang /*
347e4937aSGao Xiang  * Copyright (C) 2018 HUAWEI, Inc.
447e4937aSGao Xiang  *             http://www.huawei.com/
547e4937aSGao Xiang  * Created by Gao Xiang <gaoxiang25@huawei.com>
647e4937aSGao Xiang  */
747e4937aSGao Xiang #include "zdata.h"
847e4937aSGao Xiang #include "compress.h"
947e4937aSGao Xiang #include <linux/prefetch.h>
1047e4937aSGao Xiang 
1147e4937aSGao Xiang #include <trace/events/erofs.h>
1247e4937aSGao Xiang 
1347e4937aSGao Xiang /*
1447e4937aSGao Xiang  * a compressed_pages[] placeholder in order to avoid
1547e4937aSGao Xiang  * being filled with file pages for in-place decompression.
1647e4937aSGao Xiang  */
1747e4937aSGao Xiang #define PAGE_UNALLOCATED     ((void *)0x5F0E4B1D)
1847e4937aSGao Xiang 
1947e4937aSGao Xiang /* how to allocate cached pages for a pcluster */
2047e4937aSGao Xiang enum z_erofs_cache_alloctype {
2147e4937aSGao Xiang 	DONTALLOC,	/* don't allocate any cached pages */
2247e4937aSGao Xiang 	DELAYEDALLOC,	/* delayed allocation (at the time of submitting io) */
2347e4937aSGao Xiang };
2447e4937aSGao Xiang 
2547e4937aSGao Xiang /*
2647e4937aSGao Xiang  * tagged pointer with 1-bit tag for all compressed pages
2747e4937aSGao Xiang  * tag 0 - the page is just found with an extra page reference
2847e4937aSGao Xiang  */
2947e4937aSGao Xiang typedef tagptr1_t compressed_page_t;
3047e4937aSGao Xiang 
3147e4937aSGao Xiang #define tag_compressed_page_justfound(page) \
3247e4937aSGao Xiang 	tagptr_fold(compressed_page_t, page, 1)
3347e4937aSGao Xiang 
3447e4937aSGao Xiang static struct workqueue_struct *z_erofs_workqueue __read_mostly;
3547e4937aSGao Xiang static struct kmem_cache *pcluster_cachep __read_mostly;
3647e4937aSGao Xiang 
3747e4937aSGao Xiang void z_erofs_exit_zip_subsystem(void)
3847e4937aSGao Xiang {
3947e4937aSGao Xiang 	destroy_workqueue(z_erofs_workqueue);
4047e4937aSGao Xiang 	kmem_cache_destroy(pcluster_cachep);
4147e4937aSGao Xiang }
4247e4937aSGao Xiang 
4399634bf3SGao Xiang static inline int z_erofs_init_workqueue(void)
4447e4937aSGao Xiang {
4547e4937aSGao Xiang 	const unsigned int onlinecpus = num_possible_cpus();
4647e4937aSGao Xiang 	const unsigned int flags = WQ_UNBOUND | WQ_HIGHPRI | WQ_CPU_INTENSIVE;
4747e4937aSGao Xiang 
4847e4937aSGao Xiang 	/*
4947e4937aSGao Xiang 	 * no need to spawn too many threads, limiting threads could minimum
5047e4937aSGao Xiang 	 * scheduling overhead, perhaps per-CPU threads should be better?
5147e4937aSGao Xiang 	 */
5247e4937aSGao Xiang 	z_erofs_workqueue = alloc_workqueue("erofs_unzipd", flags,
5347e4937aSGao Xiang 					    onlinecpus + onlinecpus / 4);
5447e4937aSGao Xiang 	return z_erofs_workqueue ? 0 : -ENOMEM;
5547e4937aSGao Xiang }
5647e4937aSGao Xiang 
5799634bf3SGao Xiang static void z_erofs_pcluster_init_once(void *ptr)
5847e4937aSGao Xiang {
5947e4937aSGao Xiang 	struct z_erofs_pcluster *pcl = ptr;
6047e4937aSGao Xiang 	struct z_erofs_collection *cl = z_erofs_primarycollection(pcl);
6147e4937aSGao Xiang 	unsigned int i;
6247e4937aSGao Xiang 
6347e4937aSGao Xiang 	mutex_init(&cl->lock);
6447e4937aSGao Xiang 	cl->nr_pages = 0;
6547e4937aSGao Xiang 	cl->vcnt = 0;
6647e4937aSGao Xiang 	for (i = 0; i < Z_EROFS_CLUSTER_MAX_PAGES; ++i)
6747e4937aSGao Xiang 		pcl->compressed_pages[i] = NULL;
6847e4937aSGao Xiang }
6947e4937aSGao Xiang 
7047e4937aSGao Xiang int __init z_erofs_init_zip_subsystem(void)
7147e4937aSGao Xiang {
7247e4937aSGao Xiang 	pcluster_cachep = kmem_cache_create("erofs_compress",
7347e4937aSGao Xiang 					    Z_EROFS_WORKGROUP_SIZE, 0,
7499634bf3SGao Xiang 					    SLAB_RECLAIM_ACCOUNT,
7599634bf3SGao Xiang 					    z_erofs_pcluster_init_once);
7647e4937aSGao Xiang 	if (pcluster_cachep) {
7799634bf3SGao Xiang 		if (!z_erofs_init_workqueue())
7847e4937aSGao Xiang 			return 0;
7947e4937aSGao Xiang 
8047e4937aSGao Xiang 		kmem_cache_destroy(pcluster_cachep);
8147e4937aSGao Xiang 	}
8247e4937aSGao Xiang 	return -ENOMEM;
8347e4937aSGao Xiang }
8447e4937aSGao Xiang 
8547e4937aSGao Xiang enum z_erofs_collectmode {
8647e4937aSGao Xiang 	COLLECT_SECONDARY,
8747e4937aSGao Xiang 	COLLECT_PRIMARY,
8847e4937aSGao Xiang 	/*
8947e4937aSGao Xiang 	 * The current collection was the tail of an exist chain, in addition
9047e4937aSGao Xiang 	 * that the previous processed chained collections are all decided to
9147e4937aSGao Xiang 	 * be hooked up to it.
9247e4937aSGao Xiang 	 * A new chain will be created for the remaining collections which are
9347e4937aSGao Xiang 	 * not processed yet, therefore different from COLLECT_PRIMARY_FOLLOWED,
9447e4937aSGao Xiang 	 * the next collection cannot reuse the whole page safely in
9547e4937aSGao Xiang 	 * the following scenario:
9647e4937aSGao Xiang 	 *  ________________________________________________________________
9747e4937aSGao Xiang 	 * |      tail (partial) page     |       head (partial) page       |
9847e4937aSGao Xiang 	 * |   (belongs to the next cl)   |   (belongs to the current cl)   |
9947e4937aSGao Xiang 	 * |_______PRIMARY_FOLLOWED_______|________PRIMARY_HOOKED___________|
10047e4937aSGao Xiang 	 */
10147e4937aSGao Xiang 	COLLECT_PRIMARY_HOOKED,
10247e4937aSGao Xiang 	COLLECT_PRIMARY_FOLLOWED_NOINPLACE,
10347e4937aSGao Xiang 	/*
10447e4937aSGao Xiang 	 * The current collection has been linked with the owned chain, and
10547e4937aSGao Xiang 	 * could also be linked with the remaining collections, which means
10647e4937aSGao Xiang 	 * if the processing page is the tail page of the collection, thus
10747e4937aSGao Xiang 	 * the current collection can safely use the whole page (since
10847e4937aSGao Xiang 	 * the previous collection is under control) for in-place I/O, as
10947e4937aSGao Xiang 	 * illustrated below:
11047e4937aSGao Xiang 	 *  ________________________________________________________________
11147e4937aSGao Xiang 	 * |  tail (partial) page |          head (partial) page           |
11247e4937aSGao Xiang 	 * |  (of the current cl) |      (of the previous collection)      |
11347e4937aSGao Xiang 	 * |  PRIMARY_FOLLOWED or |                                        |
11447e4937aSGao Xiang 	 * |_____PRIMARY_HOOKED___|____________PRIMARY_FOLLOWED____________|
11547e4937aSGao Xiang 	 *
11647e4937aSGao Xiang 	 * [  (*) the above page can be used as inplace I/O.               ]
11747e4937aSGao Xiang 	 */
11847e4937aSGao Xiang 	COLLECT_PRIMARY_FOLLOWED,
11947e4937aSGao Xiang };
12047e4937aSGao Xiang 
12147e4937aSGao Xiang struct z_erofs_collector {
12247e4937aSGao Xiang 	struct z_erofs_pagevec_ctor vector;
12347e4937aSGao Xiang 
12447e4937aSGao Xiang 	struct z_erofs_pcluster *pcl, *tailpcl;
12547e4937aSGao Xiang 	struct z_erofs_collection *cl;
12647e4937aSGao Xiang 	struct page **compressedpages;
12747e4937aSGao Xiang 	z_erofs_next_pcluster_t owned_head;
12847e4937aSGao Xiang 
12947e4937aSGao Xiang 	enum z_erofs_collectmode mode;
13047e4937aSGao Xiang };
13147e4937aSGao Xiang 
13247e4937aSGao Xiang struct z_erofs_decompress_frontend {
13347e4937aSGao Xiang 	struct inode *const inode;
13447e4937aSGao Xiang 
13547e4937aSGao Xiang 	struct z_erofs_collector clt;
13647e4937aSGao Xiang 	struct erofs_map_blocks map;
13747e4937aSGao Xiang 
13847e4937aSGao Xiang 	/* used for applying cache strategy on the fly */
13947e4937aSGao Xiang 	bool backmost;
14047e4937aSGao Xiang 	erofs_off_t headoffset;
14147e4937aSGao Xiang };
14247e4937aSGao Xiang 
14347e4937aSGao Xiang #define COLLECTOR_INIT() { \
14447e4937aSGao Xiang 	.owned_head = Z_EROFS_PCLUSTER_TAIL, \
14547e4937aSGao Xiang 	.mode = COLLECT_PRIMARY_FOLLOWED }
14647e4937aSGao Xiang 
14747e4937aSGao Xiang #define DECOMPRESS_FRONTEND_INIT(__i) { \
14847e4937aSGao Xiang 	.inode = __i, .clt = COLLECTOR_INIT(), \
14947e4937aSGao Xiang 	.backmost = true, }
15047e4937aSGao Xiang 
15147e4937aSGao Xiang static struct page *z_pagemap_global[Z_EROFS_VMAP_GLOBAL_PAGES];
15247e4937aSGao Xiang static DEFINE_MUTEX(z_pagemap_global_lock);
15347e4937aSGao Xiang 
15447e4937aSGao Xiang static void preload_compressed_pages(struct z_erofs_collector *clt,
15547e4937aSGao Xiang 				     struct address_space *mc,
15647e4937aSGao Xiang 				     enum z_erofs_cache_alloctype type,
15747e4937aSGao Xiang 				     struct list_head *pagepool)
15847e4937aSGao Xiang {
15947e4937aSGao Xiang 	const struct z_erofs_pcluster *pcl = clt->pcl;
16047e4937aSGao Xiang 	const unsigned int clusterpages = BIT(pcl->clusterbits);
16147e4937aSGao Xiang 	struct page **pages = clt->compressedpages;
16247e4937aSGao Xiang 	pgoff_t index = pcl->obj.index + (pages - pcl->compressed_pages);
16347e4937aSGao Xiang 	bool standalone = true;
16447e4937aSGao Xiang 
16547e4937aSGao Xiang 	if (clt->mode < COLLECT_PRIMARY_FOLLOWED)
16647e4937aSGao Xiang 		return;
16747e4937aSGao Xiang 
16847e4937aSGao Xiang 	for (; pages < pcl->compressed_pages + clusterpages; ++pages) {
16947e4937aSGao Xiang 		struct page *page;
17047e4937aSGao Xiang 		compressed_page_t t;
17147e4937aSGao Xiang 
17247e4937aSGao Xiang 		/* the compressed page was loaded before */
17347e4937aSGao Xiang 		if (READ_ONCE(*pages))
17447e4937aSGao Xiang 			continue;
17547e4937aSGao Xiang 
17647e4937aSGao Xiang 		page = find_get_page(mc, index);
17747e4937aSGao Xiang 
17847e4937aSGao Xiang 		if (page) {
17947e4937aSGao Xiang 			t = tag_compressed_page_justfound(page);
18047e4937aSGao Xiang 		} else if (type == DELAYEDALLOC) {
18147e4937aSGao Xiang 			t = tagptr_init(compressed_page_t, PAGE_UNALLOCATED);
18247e4937aSGao Xiang 		} else {	/* DONTALLOC */
18347e4937aSGao Xiang 			if (standalone)
18447e4937aSGao Xiang 				clt->compressedpages = pages;
18547e4937aSGao Xiang 			standalone = false;
18647e4937aSGao Xiang 			continue;
18747e4937aSGao Xiang 		}
18847e4937aSGao Xiang 
18947e4937aSGao Xiang 		if (!cmpxchg_relaxed(pages, NULL, tagptr_cast_ptr(t)))
19047e4937aSGao Xiang 			continue;
19147e4937aSGao Xiang 
19247e4937aSGao Xiang 		if (page)
19347e4937aSGao Xiang 			put_page(page);
19447e4937aSGao Xiang 	}
19547e4937aSGao Xiang 
19647e4937aSGao Xiang 	if (standalone)		/* downgrade to PRIMARY_FOLLOWED_NOINPLACE */
19747e4937aSGao Xiang 		clt->mode = COLLECT_PRIMARY_FOLLOWED_NOINPLACE;
19847e4937aSGao Xiang }
19947e4937aSGao Xiang 
20047e4937aSGao Xiang /* called by erofs_shrinker to get rid of all compressed_pages */
20147e4937aSGao Xiang int erofs_try_to_free_all_cached_pages(struct erofs_sb_info *sbi,
20247e4937aSGao Xiang 				       struct erofs_workgroup *grp)
20347e4937aSGao Xiang {
20447e4937aSGao Xiang 	struct z_erofs_pcluster *const pcl =
20547e4937aSGao Xiang 		container_of(grp, struct z_erofs_pcluster, obj);
20647e4937aSGao Xiang 	struct address_space *const mapping = MNGD_MAPPING(sbi);
20747e4937aSGao Xiang 	const unsigned int clusterpages = BIT(pcl->clusterbits);
20847e4937aSGao Xiang 	int i;
20947e4937aSGao Xiang 
21047e4937aSGao Xiang 	/*
21147e4937aSGao Xiang 	 * refcount of workgroup is now freezed as 1,
21247e4937aSGao Xiang 	 * therefore no need to worry about available decompression users.
21347e4937aSGao Xiang 	 */
21447e4937aSGao Xiang 	for (i = 0; i < clusterpages; ++i) {
21547e4937aSGao Xiang 		struct page *page = pcl->compressed_pages[i];
21647e4937aSGao Xiang 
21747e4937aSGao Xiang 		if (!page)
21847e4937aSGao Xiang 			continue;
21947e4937aSGao Xiang 
22047e4937aSGao Xiang 		/* block other users from reclaiming or migrating the page */
22147e4937aSGao Xiang 		if (!trylock_page(page))
22247e4937aSGao Xiang 			return -EBUSY;
22347e4937aSGao Xiang 
2248d8a09b0SGao Xiang 		if (page->mapping != mapping)
22547e4937aSGao Xiang 			continue;
22647e4937aSGao Xiang 
22747e4937aSGao Xiang 		/* barrier is implied in the following 'unlock_page' */
22847e4937aSGao Xiang 		WRITE_ONCE(pcl->compressed_pages[i], NULL);
22947e4937aSGao Xiang 		set_page_private(page, 0);
23047e4937aSGao Xiang 		ClearPagePrivate(page);
23147e4937aSGao Xiang 
23247e4937aSGao Xiang 		unlock_page(page);
23347e4937aSGao Xiang 		put_page(page);
23447e4937aSGao Xiang 	}
23547e4937aSGao Xiang 	return 0;
23647e4937aSGao Xiang }
23747e4937aSGao Xiang 
23847e4937aSGao Xiang int erofs_try_to_free_cached_page(struct address_space *mapping,
23947e4937aSGao Xiang 				  struct page *page)
24047e4937aSGao Xiang {
24147e4937aSGao Xiang 	struct z_erofs_pcluster *const pcl = (void *)page_private(page);
24247e4937aSGao Xiang 	const unsigned int clusterpages = BIT(pcl->clusterbits);
24347e4937aSGao Xiang 	int ret = 0;	/* 0 - busy */
24447e4937aSGao Xiang 
24547e4937aSGao Xiang 	if (erofs_workgroup_try_to_freeze(&pcl->obj, 1)) {
24647e4937aSGao Xiang 		unsigned int i;
24747e4937aSGao Xiang 
24847e4937aSGao Xiang 		for (i = 0; i < clusterpages; ++i) {
24947e4937aSGao Xiang 			if (pcl->compressed_pages[i] == page) {
25047e4937aSGao Xiang 				WRITE_ONCE(pcl->compressed_pages[i], NULL);
25147e4937aSGao Xiang 				ret = 1;
25247e4937aSGao Xiang 				break;
25347e4937aSGao Xiang 			}
25447e4937aSGao Xiang 		}
25547e4937aSGao Xiang 		erofs_workgroup_unfreeze(&pcl->obj, 1);
25647e4937aSGao Xiang 
25747e4937aSGao Xiang 		if (ret) {
25847e4937aSGao Xiang 			ClearPagePrivate(page);
25947e4937aSGao Xiang 			put_page(page);
26047e4937aSGao Xiang 		}
26147e4937aSGao Xiang 	}
26247e4937aSGao Xiang 	return ret;
26347e4937aSGao Xiang }
26447e4937aSGao Xiang 
26547e4937aSGao Xiang /* page_type must be Z_EROFS_PAGE_TYPE_EXCLUSIVE */
26699634bf3SGao Xiang static inline bool z_erofs_try_inplace_io(struct z_erofs_collector *clt,
26747e4937aSGao Xiang 					  struct page *page)
26847e4937aSGao Xiang {
26947e4937aSGao Xiang 	struct z_erofs_pcluster *const pcl = clt->pcl;
27047e4937aSGao Xiang 	const unsigned int clusterpages = BIT(pcl->clusterbits);
27147e4937aSGao Xiang 
27247e4937aSGao Xiang 	while (clt->compressedpages < pcl->compressed_pages + clusterpages) {
27347e4937aSGao Xiang 		if (!cmpxchg(clt->compressedpages++, NULL, page))
27447e4937aSGao Xiang 			return true;
27547e4937aSGao Xiang 	}
27647e4937aSGao Xiang 	return false;
27747e4937aSGao Xiang }
27847e4937aSGao Xiang 
27947e4937aSGao Xiang /* callers must be with collection lock held */
28047e4937aSGao Xiang static int z_erofs_attach_page(struct z_erofs_collector *clt,
28147e4937aSGao Xiang 			       struct page *page,
28247e4937aSGao Xiang 			       enum z_erofs_page_type type)
28347e4937aSGao Xiang {
28447e4937aSGao Xiang 	int ret;
28547e4937aSGao Xiang 	bool occupied;
28647e4937aSGao Xiang 
28747e4937aSGao Xiang 	/* give priority for inplaceio */
28847e4937aSGao Xiang 	if (clt->mode >= COLLECT_PRIMARY &&
28947e4937aSGao Xiang 	    type == Z_EROFS_PAGE_TYPE_EXCLUSIVE &&
29099634bf3SGao Xiang 	    z_erofs_try_inplace_io(clt, page))
29147e4937aSGao Xiang 		return 0;
29247e4937aSGao Xiang 
29347e4937aSGao Xiang 	ret = z_erofs_pagevec_enqueue(&clt->vector,
29447e4937aSGao Xiang 				      page, type, &occupied);
29547e4937aSGao Xiang 	clt->cl->vcnt += (unsigned int)ret;
29647e4937aSGao Xiang 
29747e4937aSGao Xiang 	return ret ? 0 : -EAGAIN;
29847e4937aSGao Xiang }
29947e4937aSGao Xiang 
30047e4937aSGao Xiang static enum z_erofs_collectmode
30147e4937aSGao Xiang try_to_claim_pcluster(struct z_erofs_pcluster *pcl,
30247e4937aSGao Xiang 		      z_erofs_next_pcluster_t *owned_head)
30347e4937aSGao Xiang {
30447e4937aSGao Xiang 	/* let's claim these following types of pclusters */
30547e4937aSGao Xiang retry:
30647e4937aSGao Xiang 	if (pcl->next == Z_EROFS_PCLUSTER_NIL) {
30747e4937aSGao Xiang 		/* type 1, nil pcluster */
30847e4937aSGao Xiang 		if (cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_NIL,
30947e4937aSGao Xiang 			    *owned_head) != Z_EROFS_PCLUSTER_NIL)
31047e4937aSGao Xiang 			goto retry;
31147e4937aSGao Xiang 
31247e4937aSGao Xiang 		*owned_head = &pcl->next;
31347e4937aSGao Xiang 		/* lucky, I am the followee :) */
31447e4937aSGao Xiang 		return COLLECT_PRIMARY_FOLLOWED;
31547e4937aSGao Xiang 	} else if (pcl->next == Z_EROFS_PCLUSTER_TAIL) {
31647e4937aSGao Xiang 		/*
31747e4937aSGao Xiang 		 * type 2, link to the end of a existing open chain,
31847e4937aSGao Xiang 		 * be careful that its submission itself is governed
31947e4937aSGao Xiang 		 * by the original owned chain.
32047e4937aSGao Xiang 		 */
32147e4937aSGao Xiang 		if (cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_TAIL,
32247e4937aSGao Xiang 			    *owned_head) != Z_EROFS_PCLUSTER_TAIL)
32347e4937aSGao Xiang 			goto retry;
32447e4937aSGao Xiang 		*owned_head = Z_EROFS_PCLUSTER_TAIL;
32547e4937aSGao Xiang 		return COLLECT_PRIMARY_HOOKED;
32647e4937aSGao Xiang 	}
32747e4937aSGao Xiang 	return COLLECT_PRIMARY;	/* :( better luck next time */
32847e4937aSGao Xiang }
32947e4937aSGao Xiang 
3309e579fc1SGao Xiang static int z_erofs_lookup_collection(struct z_erofs_collector *clt,
33147e4937aSGao Xiang 				     struct inode *inode,
33247e4937aSGao Xiang 				     struct erofs_map_blocks *map)
33347e4937aSGao Xiang {
33464094a04SGao Xiang 	struct z_erofs_pcluster *pcl = clt->pcl;
33547e4937aSGao Xiang 	struct z_erofs_collection *cl;
33647e4937aSGao Xiang 	unsigned int length;
33747e4937aSGao Xiang 
33864094a04SGao Xiang 	/* to avoid unexpected loop formed by corrupted images */
33947e4937aSGao Xiang 	if (clt->owned_head == &pcl->next || pcl == clt->tailpcl) {
34047e4937aSGao Xiang 		DBG_BUGON(1);
3419e579fc1SGao Xiang 		return -EFSCORRUPTED;
34247e4937aSGao Xiang 	}
34347e4937aSGao Xiang 
34447e4937aSGao Xiang 	cl = z_erofs_primarycollection(pcl);
3458d8a09b0SGao Xiang 	if (cl->pageofs != (map->m_la & ~PAGE_MASK)) {
34647e4937aSGao Xiang 		DBG_BUGON(1);
3479e579fc1SGao Xiang 		return -EFSCORRUPTED;
34847e4937aSGao Xiang 	}
34947e4937aSGao Xiang 
35047e4937aSGao Xiang 	length = READ_ONCE(pcl->length);
35147e4937aSGao Xiang 	if (length & Z_EROFS_PCLUSTER_FULL_LENGTH) {
35247e4937aSGao Xiang 		if ((map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT) > length) {
35347e4937aSGao Xiang 			DBG_BUGON(1);
3549e579fc1SGao Xiang 			return -EFSCORRUPTED;
35547e4937aSGao Xiang 		}
35647e4937aSGao Xiang 	} else {
35747e4937aSGao Xiang 		unsigned int llen = map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT;
35847e4937aSGao Xiang 
35947e4937aSGao Xiang 		if (map->m_flags & EROFS_MAP_FULL_MAPPED)
36047e4937aSGao Xiang 			llen |= Z_EROFS_PCLUSTER_FULL_LENGTH;
36147e4937aSGao Xiang 
36247e4937aSGao Xiang 		while (llen > length &&
36347e4937aSGao Xiang 		       length != cmpxchg_relaxed(&pcl->length, length, llen)) {
36447e4937aSGao Xiang 			cpu_relax();
36547e4937aSGao Xiang 			length = READ_ONCE(pcl->length);
36647e4937aSGao Xiang 		}
36747e4937aSGao Xiang 	}
36847e4937aSGao Xiang 	mutex_lock(&cl->lock);
36947e4937aSGao Xiang 	/* used to check tail merging loop due to corrupted images */
37047e4937aSGao Xiang 	if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL)
37147e4937aSGao Xiang 		clt->tailpcl = pcl;
37247e4937aSGao Xiang 	clt->mode = try_to_claim_pcluster(pcl, &clt->owned_head);
37347e4937aSGao Xiang 	/* clean tailpcl if the current owned_head is Z_EROFS_PCLUSTER_TAIL */
37447e4937aSGao Xiang 	if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL)
37547e4937aSGao Xiang 		clt->tailpcl = NULL;
37647e4937aSGao Xiang 	clt->cl = cl;
3779e579fc1SGao Xiang 	return 0;
37847e4937aSGao Xiang }
37947e4937aSGao Xiang 
3809e579fc1SGao Xiang static int z_erofs_register_collection(struct z_erofs_collector *clt,
38147e4937aSGao Xiang 				       struct inode *inode,
38247e4937aSGao Xiang 				       struct erofs_map_blocks *map)
38347e4937aSGao Xiang {
38447e4937aSGao Xiang 	struct z_erofs_pcluster *pcl;
38547e4937aSGao Xiang 	struct z_erofs_collection *cl;
38664094a04SGao Xiang 	struct erofs_workgroup *grp;
38747e4937aSGao Xiang 	int err;
38847e4937aSGao Xiang 
38947e4937aSGao Xiang 	/* no available workgroup, let's allocate one */
39047e4937aSGao Xiang 	pcl = kmem_cache_alloc(pcluster_cachep, GFP_NOFS);
3918d8a09b0SGao Xiang 	if (!pcl)
3929e579fc1SGao Xiang 		return -ENOMEM;
39347e4937aSGao Xiang 
39464094a04SGao Xiang 	atomic_set(&pcl->obj.refcount, 1);
39547e4937aSGao Xiang 	pcl->obj.index = map->m_pa >> PAGE_SHIFT;
39647e4937aSGao Xiang 
39747e4937aSGao Xiang 	pcl->length = (map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT) |
39847e4937aSGao Xiang 		(map->m_flags & EROFS_MAP_FULL_MAPPED ?
39947e4937aSGao Xiang 			Z_EROFS_PCLUSTER_FULL_LENGTH : 0);
40047e4937aSGao Xiang 
40147e4937aSGao Xiang 	if (map->m_flags & EROFS_MAP_ZIPPED)
40247e4937aSGao Xiang 		pcl->algorithmformat = Z_EROFS_COMPRESSION_LZ4;
40347e4937aSGao Xiang 	else
40447e4937aSGao Xiang 		pcl->algorithmformat = Z_EROFS_COMPRESSION_SHIFTED;
40547e4937aSGao Xiang 
406a5876e24SGao Xiang 	pcl->clusterbits = EROFS_I(inode)->z_physical_clusterbits[0];
40747e4937aSGao Xiang 	pcl->clusterbits -= PAGE_SHIFT;
40847e4937aSGao Xiang 
40947e4937aSGao Xiang 	/* new pclusters should be claimed as type 1, primary and followed */
41047e4937aSGao Xiang 	pcl->next = clt->owned_head;
41147e4937aSGao Xiang 	clt->mode = COLLECT_PRIMARY_FOLLOWED;
41247e4937aSGao Xiang 
41347e4937aSGao Xiang 	cl = z_erofs_primarycollection(pcl);
41464094a04SGao Xiang 
41564094a04SGao Xiang 	/* must be cleaned before freeing to slab */
41664094a04SGao Xiang 	DBG_BUGON(cl->nr_pages);
41764094a04SGao Xiang 	DBG_BUGON(cl->vcnt);
41864094a04SGao Xiang 
41947e4937aSGao Xiang 	cl->pageofs = map->m_la & ~PAGE_MASK;
42047e4937aSGao Xiang 
42147e4937aSGao Xiang 	/*
42247e4937aSGao Xiang 	 * lock all primary followed works before visible to others
42347e4937aSGao Xiang 	 * and mutex_trylock *never* fails for a new pcluster.
42447e4937aSGao Xiang 	 */
42564094a04SGao Xiang 	DBG_BUGON(!mutex_trylock(&cl->lock));
42647e4937aSGao Xiang 
42764094a04SGao Xiang 	grp = erofs_insert_workgroup(inode->i_sb, &pcl->obj);
42864094a04SGao Xiang 	if (IS_ERR(grp)) {
42964094a04SGao Xiang 		err = PTR_ERR(grp);
43064094a04SGao Xiang 		goto err_out;
43164094a04SGao Xiang 	}
43264094a04SGao Xiang 
43364094a04SGao Xiang 	if (grp != &pcl->obj) {
43464094a04SGao Xiang 		clt->pcl = container_of(grp, struct z_erofs_pcluster, obj);
43564094a04SGao Xiang 		err = -EEXIST;
43664094a04SGao Xiang 		goto err_out;
43747e4937aSGao Xiang 	}
43847e4937aSGao Xiang 	/* used to check tail merging loop due to corrupted images */
43947e4937aSGao Xiang 	if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL)
44047e4937aSGao Xiang 		clt->tailpcl = pcl;
44147e4937aSGao Xiang 	clt->owned_head = &pcl->next;
44247e4937aSGao Xiang 	clt->pcl = pcl;
44347e4937aSGao Xiang 	clt->cl = cl;
4449e579fc1SGao Xiang 	return 0;
44564094a04SGao Xiang 
44664094a04SGao Xiang err_out:
44764094a04SGao Xiang 	mutex_unlock(&cl->lock);
44864094a04SGao Xiang 	kmem_cache_free(pcluster_cachep, pcl);
44964094a04SGao Xiang 	return err;
45047e4937aSGao Xiang }
45147e4937aSGao Xiang 
45247e4937aSGao Xiang static int z_erofs_collector_begin(struct z_erofs_collector *clt,
45347e4937aSGao Xiang 				   struct inode *inode,
45447e4937aSGao Xiang 				   struct erofs_map_blocks *map)
45547e4937aSGao Xiang {
45664094a04SGao Xiang 	struct erofs_workgroup *grp;
4579e579fc1SGao Xiang 	int ret;
45847e4937aSGao Xiang 
45947e4937aSGao Xiang 	DBG_BUGON(clt->cl);
46047e4937aSGao Xiang 
46147e4937aSGao Xiang 	/* must be Z_EROFS_PCLUSTER_TAIL or pointed to previous collection */
46247e4937aSGao Xiang 	DBG_BUGON(clt->owned_head == Z_EROFS_PCLUSTER_NIL);
46347e4937aSGao Xiang 	DBG_BUGON(clt->owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
46447e4937aSGao Xiang 
46547e4937aSGao Xiang 	if (!PAGE_ALIGNED(map->m_pa)) {
46647e4937aSGao Xiang 		DBG_BUGON(1);
46747e4937aSGao Xiang 		return -EINVAL;
46847e4937aSGao Xiang 	}
46947e4937aSGao Xiang 
47064094a04SGao Xiang 	grp = erofs_find_workgroup(inode->i_sb, map->m_pa >> PAGE_SHIFT);
47164094a04SGao Xiang 	if (grp) {
47264094a04SGao Xiang 		clt->pcl = container_of(grp, struct z_erofs_pcluster, obj);
47364094a04SGao Xiang 	} else {
4749e579fc1SGao Xiang 		ret = z_erofs_register_collection(clt, inode, map);
47547e4937aSGao Xiang 
47664094a04SGao Xiang 		if (!ret)
47764094a04SGao Xiang 			goto out;
47864094a04SGao Xiang 		if (ret != -EEXIST)
4799e579fc1SGao Xiang 			return ret;
48064094a04SGao Xiang 	}
48147e4937aSGao Xiang 
48264094a04SGao Xiang 	ret = z_erofs_lookup_collection(clt, inode, map);
48364094a04SGao Xiang 	if (ret) {
48464094a04SGao Xiang 		erofs_workgroup_put(&clt->pcl->obj);
48564094a04SGao Xiang 		return ret;
48664094a04SGao Xiang 	}
48764094a04SGao Xiang 
48864094a04SGao Xiang out:
48947e4937aSGao Xiang 	z_erofs_pagevec_ctor_init(&clt->vector, Z_EROFS_NR_INLINE_PAGEVECS,
4909e579fc1SGao Xiang 				  clt->cl->pagevec, clt->cl->vcnt);
49147e4937aSGao Xiang 
49247e4937aSGao Xiang 	clt->compressedpages = clt->pcl->compressed_pages;
49347e4937aSGao Xiang 	if (clt->mode <= COLLECT_PRIMARY) /* cannot do in-place I/O */
49447e4937aSGao Xiang 		clt->compressedpages += Z_EROFS_CLUSTER_MAX_PAGES;
49547e4937aSGao Xiang 	return 0;
49647e4937aSGao Xiang }
49747e4937aSGao Xiang 
49847e4937aSGao Xiang /*
49947e4937aSGao Xiang  * keep in mind that no referenced pclusters will be freed
50047e4937aSGao Xiang  * only after a RCU grace period.
50147e4937aSGao Xiang  */
50247e4937aSGao Xiang static void z_erofs_rcu_callback(struct rcu_head *head)
50347e4937aSGao Xiang {
50447e4937aSGao Xiang 	struct z_erofs_collection *const cl =
50547e4937aSGao Xiang 		container_of(head, struct z_erofs_collection, rcu);
50647e4937aSGao Xiang 
50747e4937aSGao Xiang 	kmem_cache_free(pcluster_cachep,
50847e4937aSGao Xiang 			container_of(cl, struct z_erofs_pcluster,
50947e4937aSGao Xiang 				     primary_collection));
51047e4937aSGao Xiang }
51147e4937aSGao Xiang 
51247e4937aSGao Xiang void erofs_workgroup_free_rcu(struct erofs_workgroup *grp)
51347e4937aSGao Xiang {
51447e4937aSGao Xiang 	struct z_erofs_pcluster *const pcl =
51547e4937aSGao Xiang 		container_of(grp, struct z_erofs_pcluster, obj);
51647e4937aSGao Xiang 	struct z_erofs_collection *const cl = z_erofs_primarycollection(pcl);
51747e4937aSGao Xiang 
51847e4937aSGao Xiang 	call_rcu(&cl->rcu, z_erofs_rcu_callback);
51947e4937aSGao Xiang }
52047e4937aSGao Xiang 
52147e4937aSGao Xiang static void z_erofs_collection_put(struct z_erofs_collection *cl)
52247e4937aSGao Xiang {
52347e4937aSGao Xiang 	struct z_erofs_pcluster *const pcl =
52447e4937aSGao Xiang 		container_of(cl, struct z_erofs_pcluster, primary_collection);
52547e4937aSGao Xiang 
52647e4937aSGao Xiang 	erofs_workgroup_put(&pcl->obj);
52747e4937aSGao Xiang }
52847e4937aSGao Xiang 
52947e4937aSGao Xiang static bool z_erofs_collector_end(struct z_erofs_collector *clt)
53047e4937aSGao Xiang {
53147e4937aSGao Xiang 	struct z_erofs_collection *cl = clt->cl;
53247e4937aSGao Xiang 
53347e4937aSGao Xiang 	if (!cl)
53447e4937aSGao Xiang 		return false;
53547e4937aSGao Xiang 
53647e4937aSGao Xiang 	z_erofs_pagevec_ctor_exit(&clt->vector, false);
53747e4937aSGao Xiang 	mutex_unlock(&cl->lock);
53847e4937aSGao Xiang 
53947e4937aSGao Xiang 	/*
54047e4937aSGao Xiang 	 * if all pending pages are added, don't hold its reference
54147e4937aSGao Xiang 	 * any longer if the pcluster isn't hosted by ourselves.
54247e4937aSGao Xiang 	 */
54347e4937aSGao Xiang 	if (clt->mode < COLLECT_PRIMARY_FOLLOWED_NOINPLACE)
54447e4937aSGao Xiang 		z_erofs_collection_put(cl);
54547e4937aSGao Xiang 
54647e4937aSGao Xiang 	clt->cl = NULL;
54747e4937aSGao Xiang 	return true;
54847e4937aSGao Xiang }
54947e4937aSGao Xiang 
55047e4937aSGao Xiang static bool should_alloc_managed_pages(struct z_erofs_decompress_frontend *fe,
55147e4937aSGao Xiang 				       unsigned int cachestrategy,
55247e4937aSGao Xiang 				       erofs_off_t la)
55347e4937aSGao Xiang {
55447e4937aSGao Xiang 	if (cachestrategy <= EROFS_ZIP_CACHE_DISABLED)
55547e4937aSGao Xiang 		return false;
55647e4937aSGao Xiang 
55747e4937aSGao Xiang 	if (fe->backmost)
55847e4937aSGao Xiang 		return true;
55947e4937aSGao Xiang 
56047e4937aSGao Xiang 	return cachestrategy >= EROFS_ZIP_CACHE_READAROUND &&
56147e4937aSGao Xiang 		la < fe->headoffset;
56247e4937aSGao Xiang }
56347e4937aSGao Xiang 
56447e4937aSGao Xiang static int z_erofs_do_read_page(struct z_erofs_decompress_frontend *fe,
56547e4937aSGao Xiang 				struct page *page,
56647e4937aSGao Xiang 				struct list_head *pagepool)
56747e4937aSGao Xiang {
56847e4937aSGao Xiang 	struct inode *const inode = fe->inode;
569bda17a45SGao Xiang 	struct erofs_sb_info *const sbi = EROFS_I_SB(inode);
57047e4937aSGao Xiang 	struct erofs_map_blocks *const map = &fe->map;
57147e4937aSGao Xiang 	struct z_erofs_collector *const clt = &fe->clt;
57247e4937aSGao Xiang 	const loff_t offset = page_offset(page);
573dc76ea8cSGao Xiang 	bool tight = true;
57447e4937aSGao Xiang 
57547e4937aSGao Xiang 	enum z_erofs_cache_alloctype cache_strategy;
57647e4937aSGao Xiang 	enum z_erofs_page_type page_type;
57747e4937aSGao Xiang 	unsigned int cur, end, spiltted, index;
57847e4937aSGao Xiang 	int err = 0;
57947e4937aSGao Xiang 
58047e4937aSGao Xiang 	/* register locked file pages as online pages in pack */
58147e4937aSGao Xiang 	z_erofs_onlinepage_init(page);
58247e4937aSGao Xiang 
58347e4937aSGao Xiang 	spiltted = 0;
58447e4937aSGao Xiang 	end = PAGE_SIZE;
58547e4937aSGao Xiang repeat:
58647e4937aSGao Xiang 	cur = end - 1;
58747e4937aSGao Xiang 
58847e4937aSGao Xiang 	/* lucky, within the range of the current map_blocks */
58947e4937aSGao Xiang 	if (offset + cur >= map->m_la &&
59047e4937aSGao Xiang 	    offset + cur < map->m_la + map->m_llen) {
59147e4937aSGao Xiang 		/* didn't get a valid collection previously (very rare) */
59247e4937aSGao Xiang 		if (!clt->cl)
59347e4937aSGao Xiang 			goto restart_now;
59447e4937aSGao Xiang 		goto hitted;
59547e4937aSGao Xiang 	}
59647e4937aSGao Xiang 
59747e4937aSGao Xiang 	/* go ahead the next map_blocks */
5984f761fa2SGao Xiang 	erofs_dbg("%s: [out-of-range] pos %llu", __func__, offset + cur);
59947e4937aSGao Xiang 
60047e4937aSGao Xiang 	if (z_erofs_collector_end(clt))
60147e4937aSGao Xiang 		fe->backmost = false;
60247e4937aSGao Xiang 
60347e4937aSGao Xiang 	map->m_la = offset + cur;
60447e4937aSGao Xiang 	map->m_llen = 0;
60547e4937aSGao Xiang 	err = z_erofs_map_blocks_iter(inode, map, 0);
6068d8a09b0SGao Xiang 	if (err)
60747e4937aSGao Xiang 		goto err_out;
60847e4937aSGao Xiang 
60947e4937aSGao Xiang restart_now:
6108d8a09b0SGao Xiang 	if (!(map->m_flags & EROFS_MAP_MAPPED))
61147e4937aSGao Xiang 		goto hitted;
61247e4937aSGao Xiang 
61347e4937aSGao Xiang 	err = z_erofs_collector_begin(clt, inode, map);
6148d8a09b0SGao Xiang 	if (err)
61547e4937aSGao Xiang 		goto err_out;
61647e4937aSGao Xiang 
61747e4937aSGao Xiang 	/* preload all compressed pages (maybe downgrade role if necessary) */
61847e4937aSGao Xiang 	if (should_alloc_managed_pages(fe, sbi->cache_strategy, map->m_la))
61947e4937aSGao Xiang 		cache_strategy = DELAYEDALLOC;
62047e4937aSGao Xiang 	else
62147e4937aSGao Xiang 		cache_strategy = DONTALLOC;
62247e4937aSGao Xiang 
62347e4937aSGao Xiang 	preload_compressed_pages(clt, MNGD_MAPPING(sbi),
62447e4937aSGao Xiang 				 cache_strategy, pagepool);
62547e4937aSGao Xiang 
62647e4937aSGao Xiang hitted:
627dc76ea8cSGao Xiang 	/*
628dc76ea8cSGao Xiang 	 * Ensure the current partial page belongs to this submit chain rather
629dc76ea8cSGao Xiang 	 * than other concurrent submit chains or the noio(bypass) chain since
630dc76ea8cSGao Xiang 	 * those chains are handled asynchronously thus the page cannot be used
631dc76ea8cSGao Xiang 	 * for inplace I/O or pagevec (should be processed in strict order.)
632dc76ea8cSGao Xiang 	 */
633dc76ea8cSGao Xiang 	tight &= (clt->mode >= COLLECT_PRIMARY_HOOKED &&
634dc76ea8cSGao Xiang 		  clt->mode != COLLECT_PRIMARY_FOLLOWED_NOINPLACE);
635dc76ea8cSGao Xiang 
63647e4937aSGao Xiang 	cur = end - min_t(unsigned int, offset + end - map->m_la, end);
6378d8a09b0SGao Xiang 	if (!(map->m_flags & EROFS_MAP_MAPPED)) {
63847e4937aSGao Xiang 		zero_user_segment(page, cur, end);
63947e4937aSGao Xiang 		goto next_part;
64047e4937aSGao Xiang 	}
64147e4937aSGao Xiang 
64247e4937aSGao Xiang 	/* let's derive page type */
64347e4937aSGao Xiang 	page_type = cur ? Z_EROFS_VLE_PAGE_TYPE_HEAD :
64447e4937aSGao Xiang 		(!spiltted ? Z_EROFS_PAGE_TYPE_EXCLUSIVE :
64547e4937aSGao Xiang 			(tight ? Z_EROFS_PAGE_TYPE_EXCLUSIVE :
64647e4937aSGao Xiang 				Z_EROFS_VLE_PAGE_TYPE_TAIL_SHARED));
64747e4937aSGao Xiang 
64847e4937aSGao Xiang 	if (cur)
64947e4937aSGao Xiang 		tight &= (clt->mode >= COLLECT_PRIMARY_FOLLOWED);
65047e4937aSGao Xiang 
65147e4937aSGao Xiang retry:
65247e4937aSGao Xiang 	err = z_erofs_attach_page(clt, page, page_type);
65347e4937aSGao Xiang 	/* should allocate an additional staging page for pagevec */
65447e4937aSGao Xiang 	if (err == -EAGAIN) {
65547e4937aSGao Xiang 		struct page *const newpage =
6565ddcee1fSGao Xiang 			erofs_allocpage(pagepool, GFP_NOFS | __GFP_NOFAIL);
65747e4937aSGao Xiang 
6585ddcee1fSGao Xiang 		newpage->mapping = Z_EROFS_MAPPING_STAGING;
65947e4937aSGao Xiang 		err = z_erofs_attach_page(clt, newpage,
66047e4937aSGao Xiang 					  Z_EROFS_PAGE_TYPE_EXCLUSIVE);
6618d8a09b0SGao Xiang 		if (!err)
66247e4937aSGao Xiang 			goto retry;
66347e4937aSGao Xiang 	}
66447e4937aSGao Xiang 
6658d8a09b0SGao Xiang 	if (err)
66647e4937aSGao Xiang 		goto err_out;
66747e4937aSGao Xiang 
66847e4937aSGao Xiang 	index = page->index - (map->m_la >> PAGE_SHIFT);
66947e4937aSGao Xiang 
67047e4937aSGao Xiang 	z_erofs_onlinepage_fixup(page, index, true);
67147e4937aSGao Xiang 
67247e4937aSGao Xiang 	/* bump up the number of spiltted parts of a page */
67347e4937aSGao Xiang 	++spiltted;
67447e4937aSGao Xiang 	/* also update nr_pages */
67547e4937aSGao Xiang 	clt->cl->nr_pages = max_t(pgoff_t, clt->cl->nr_pages, index + 1);
67647e4937aSGao Xiang next_part:
67747e4937aSGao Xiang 	/* can be used for verification */
67847e4937aSGao Xiang 	map->m_llen = offset + cur - map->m_la;
67947e4937aSGao Xiang 
68047e4937aSGao Xiang 	end = cur;
68147e4937aSGao Xiang 	if (end > 0)
68247e4937aSGao Xiang 		goto repeat;
68347e4937aSGao Xiang 
68447e4937aSGao Xiang out:
68547e4937aSGao Xiang 	z_erofs_onlinepage_endio(page);
68647e4937aSGao Xiang 
6874f761fa2SGao Xiang 	erofs_dbg("%s, finish page: %pK spiltted: %u map->m_llen %llu",
68847e4937aSGao Xiang 		  __func__, page, spiltted, map->m_llen);
68947e4937aSGao Xiang 	return err;
69047e4937aSGao Xiang 
69147e4937aSGao Xiang 	/* if some error occurred while processing this page */
69247e4937aSGao Xiang err_out:
69347e4937aSGao Xiang 	SetPageError(page);
69447e4937aSGao Xiang 	goto out;
69547e4937aSGao Xiang }
69647e4937aSGao Xiang 
697a4b1fab1SGao Xiang static void z_erofs_decompress_kickoff(struct z_erofs_decompressqueue *io,
698a4b1fab1SGao Xiang 				       bool sync, int bios)
69947e4937aSGao Xiang {
700a4b1fab1SGao Xiang 	/* wake up the caller thread for sync decompression */
701a4b1fab1SGao Xiang 	if (sync) {
70247e4937aSGao Xiang 		unsigned long flags;
70347e4937aSGao Xiang 
70447e4937aSGao Xiang 		spin_lock_irqsave(&io->u.wait.lock, flags);
70547e4937aSGao Xiang 		if (!atomic_add_return(bios, &io->pending_bios))
70647e4937aSGao Xiang 			wake_up_locked(&io->u.wait);
70747e4937aSGao Xiang 		spin_unlock_irqrestore(&io->u.wait.lock, flags);
70847e4937aSGao Xiang 		return;
70947e4937aSGao Xiang 	}
71047e4937aSGao Xiang 
71147e4937aSGao Xiang 	if (!atomic_add_return(bios, &io->pending_bios))
71247e4937aSGao Xiang 		queue_work(z_erofs_workqueue, &io->u.work);
71347e4937aSGao Xiang }
71447e4937aSGao Xiang 
7150c638f70SGao Xiang static void z_erofs_decompressqueue_endio(struct bio *bio)
71647e4937aSGao Xiang {
717a4b1fab1SGao Xiang 	tagptr1_t t = tagptr_init(tagptr1_t, bio->bi_private);
718a4b1fab1SGao Xiang 	struct z_erofs_decompressqueue *q = tagptr_unfold_ptr(t);
71947e4937aSGao Xiang 	blk_status_t err = bio->bi_status;
72047e4937aSGao Xiang 	struct bio_vec *bvec;
72147e4937aSGao Xiang 	struct bvec_iter_all iter_all;
72247e4937aSGao Xiang 
72347e4937aSGao Xiang 	bio_for_each_segment_all(bvec, bio, iter_all) {
72447e4937aSGao Xiang 		struct page *page = bvec->bv_page;
72547e4937aSGao Xiang 
72647e4937aSGao Xiang 		DBG_BUGON(PageUptodate(page));
72747e4937aSGao Xiang 		DBG_BUGON(!page->mapping);
72847e4937aSGao Xiang 
7298d8a09b0SGao Xiang 		if (err)
73047e4937aSGao Xiang 			SetPageError(page);
73147e4937aSGao Xiang 
732a4b1fab1SGao Xiang 		if (erofs_page_is_managed(EROFS_SB(q->sb), page)) {
733a4b1fab1SGao Xiang 			if (!err)
734a4b1fab1SGao Xiang 				SetPageUptodate(page);
73547e4937aSGao Xiang 			unlock_page(page);
73647e4937aSGao Xiang 		}
737a4b1fab1SGao Xiang 	}
738a4b1fab1SGao Xiang 	z_erofs_decompress_kickoff(q, tagptr_unfold_tags(t), -1);
73947e4937aSGao Xiang 	bio_put(bio);
74047e4937aSGao Xiang }
74147e4937aSGao Xiang 
74247e4937aSGao Xiang static int z_erofs_decompress_pcluster(struct super_block *sb,
74347e4937aSGao Xiang 				       struct z_erofs_pcluster *pcl,
74447e4937aSGao Xiang 				       struct list_head *pagepool)
74547e4937aSGao Xiang {
74647e4937aSGao Xiang 	struct erofs_sb_info *const sbi = EROFS_SB(sb);
74747e4937aSGao Xiang 	const unsigned int clusterpages = BIT(pcl->clusterbits);
74847e4937aSGao Xiang 	struct z_erofs_pagevec_ctor ctor;
74947e4937aSGao Xiang 	unsigned int i, outputsize, llen, nr_pages;
75047e4937aSGao Xiang 	struct page *pages_onstack[Z_EROFS_VMAP_ONSTACK_PAGES];
75147e4937aSGao Xiang 	struct page **pages, **compressed_pages, *page;
75247e4937aSGao Xiang 
75347e4937aSGao Xiang 	enum z_erofs_page_type page_type;
75447e4937aSGao Xiang 	bool overlapped, partial;
75547e4937aSGao Xiang 	struct z_erofs_collection *cl;
75647e4937aSGao Xiang 	int err;
75747e4937aSGao Xiang 
75847e4937aSGao Xiang 	might_sleep();
75947e4937aSGao Xiang 	cl = z_erofs_primarycollection(pcl);
76047e4937aSGao Xiang 	DBG_BUGON(!READ_ONCE(cl->nr_pages));
76147e4937aSGao Xiang 
76247e4937aSGao Xiang 	mutex_lock(&cl->lock);
76347e4937aSGao Xiang 	nr_pages = cl->nr_pages;
76447e4937aSGao Xiang 
7658d8a09b0SGao Xiang 	if (nr_pages <= Z_EROFS_VMAP_ONSTACK_PAGES) {
76647e4937aSGao Xiang 		pages = pages_onstack;
76747e4937aSGao Xiang 	} else if (nr_pages <= Z_EROFS_VMAP_GLOBAL_PAGES &&
76847e4937aSGao Xiang 		   mutex_trylock(&z_pagemap_global_lock)) {
76947e4937aSGao Xiang 		pages = z_pagemap_global;
77047e4937aSGao Xiang 	} else {
77147e4937aSGao Xiang 		gfp_t gfp_flags = GFP_KERNEL;
77247e4937aSGao Xiang 
77347e4937aSGao Xiang 		if (nr_pages > Z_EROFS_VMAP_GLOBAL_PAGES)
77447e4937aSGao Xiang 			gfp_flags |= __GFP_NOFAIL;
77547e4937aSGao Xiang 
77647e4937aSGao Xiang 		pages = kvmalloc_array(nr_pages, sizeof(struct page *),
77747e4937aSGao Xiang 				       gfp_flags);
77847e4937aSGao Xiang 
77947e4937aSGao Xiang 		/* fallback to global pagemap for the lowmem scenario */
7808d8a09b0SGao Xiang 		if (!pages) {
78147e4937aSGao Xiang 			mutex_lock(&z_pagemap_global_lock);
78247e4937aSGao Xiang 			pages = z_pagemap_global;
78347e4937aSGao Xiang 		}
78447e4937aSGao Xiang 	}
78547e4937aSGao Xiang 
78647e4937aSGao Xiang 	for (i = 0; i < nr_pages; ++i)
78747e4937aSGao Xiang 		pages[i] = NULL;
78847e4937aSGao Xiang 
78947e4937aSGao Xiang 	err = 0;
79047e4937aSGao Xiang 	z_erofs_pagevec_ctor_init(&ctor, Z_EROFS_NR_INLINE_PAGEVECS,
79147e4937aSGao Xiang 				  cl->pagevec, 0);
79247e4937aSGao Xiang 
79347e4937aSGao Xiang 	for (i = 0; i < cl->vcnt; ++i) {
79447e4937aSGao Xiang 		unsigned int pagenr;
79547e4937aSGao Xiang 
79647e4937aSGao Xiang 		page = z_erofs_pagevec_dequeue(&ctor, &page_type);
79747e4937aSGao Xiang 
79847e4937aSGao Xiang 		/* all pages in pagevec ought to be valid */
79947e4937aSGao Xiang 		DBG_BUGON(!page);
80047e4937aSGao Xiang 		DBG_BUGON(!page->mapping);
80147e4937aSGao Xiang 
80247e4937aSGao Xiang 		if (z_erofs_put_stagingpage(pagepool, page))
80347e4937aSGao Xiang 			continue;
80447e4937aSGao Xiang 
80547e4937aSGao Xiang 		if (page_type == Z_EROFS_VLE_PAGE_TYPE_HEAD)
80647e4937aSGao Xiang 			pagenr = 0;
80747e4937aSGao Xiang 		else
80847e4937aSGao Xiang 			pagenr = z_erofs_onlinepage_index(page);
80947e4937aSGao Xiang 
81047e4937aSGao Xiang 		DBG_BUGON(pagenr >= nr_pages);
81147e4937aSGao Xiang 
81247e4937aSGao Xiang 		/*
81347e4937aSGao Xiang 		 * currently EROFS doesn't support multiref(dedup),
81447e4937aSGao Xiang 		 * so here erroring out one multiref page.
81547e4937aSGao Xiang 		 */
8168d8a09b0SGao Xiang 		if (pages[pagenr]) {
81747e4937aSGao Xiang 			DBG_BUGON(1);
81847e4937aSGao Xiang 			SetPageError(pages[pagenr]);
81947e4937aSGao Xiang 			z_erofs_onlinepage_endio(pages[pagenr]);
82047e4937aSGao Xiang 			err = -EFSCORRUPTED;
82147e4937aSGao Xiang 		}
82247e4937aSGao Xiang 		pages[pagenr] = page;
82347e4937aSGao Xiang 	}
82447e4937aSGao Xiang 	z_erofs_pagevec_ctor_exit(&ctor, true);
82547e4937aSGao Xiang 
82647e4937aSGao Xiang 	overlapped = false;
82747e4937aSGao Xiang 	compressed_pages = pcl->compressed_pages;
82847e4937aSGao Xiang 
82947e4937aSGao Xiang 	for (i = 0; i < clusterpages; ++i) {
83047e4937aSGao Xiang 		unsigned int pagenr;
83147e4937aSGao Xiang 
83247e4937aSGao Xiang 		page = compressed_pages[i];
83347e4937aSGao Xiang 
83447e4937aSGao Xiang 		/* all compressed pages ought to be valid */
83547e4937aSGao Xiang 		DBG_BUGON(!page);
83647e4937aSGao Xiang 		DBG_BUGON(!page->mapping);
83747e4937aSGao Xiang 
83847e4937aSGao Xiang 		if (!z_erofs_page_is_staging(page)) {
83947e4937aSGao Xiang 			if (erofs_page_is_managed(sbi, page)) {
8408d8a09b0SGao Xiang 				if (!PageUptodate(page))
84147e4937aSGao Xiang 					err = -EIO;
84247e4937aSGao Xiang 				continue;
84347e4937aSGao Xiang 			}
84447e4937aSGao Xiang 
84547e4937aSGao Xiang 			/*
84647e4937aSGao Xiang 			 * only if non-head page can be selected
84747e4937aSGao Xiang 			 * for inplace decompression
84847e4937aSGao Xiang 			 */
84947e4937aSGao Xiang 			pagenr = z_erofs_onlinepage_index(page);
85047e4937aSGao Xiang 
85147e4937aSGao Xiang 			DBG_BUGON(pagenr >= nr_pages);
8528d8a09b0SGao Xiang 			if (pages[pagenr]) {
85347e4937aSGao Xiang 				DBG_BUGON(1);
85447e4937aSGao Xiang 				SetPageError(pages[pagenr]);
85547e4937aSGao Xiang 				z_erofs_onlinepage_endio(pages[pagenr]);
85647e4937aSGao Xiang 				err = -EFSCORRUPTED;
85747e4937aSGao Xiang 			}
85847e4937aSGao Xiang 			pages[pagenr] = page;
85947e4937aSGao Xiang 
86047e4937aSGao Xiang 			overlapped = true;
86147e4937aSGao Xiang 		}
86247e4937aSGao Xiang 
86347e4937aSGao Xiang 		/* PG_error needs checking for inplaced and staging pages */
8648d8a09b0SGao Xiang 		if (PageError(page)) {
86547e4937aSGao Xiang 			DBG_BUGON(PageUptodate(page));
86647e4937aSGao Xiang 			err = -EIO;
86747e4937aSGao Xiang 		}
86847e4937aSGao Xiang 	}
86947e4937aSGao Xiang 
8708d8a09b0SGao Xiang 	if (err)
87147e4937aSGao Xiang 		goto out;
87247e4937aSGao Xiang 
87347e4937aSGao Xiang 	llen = pcl->length >> Z_EROFS_PCLUSTER_LENGTH_BIT;
87447e4937aSGao Xiang 	if (nr_pages << PAGE_SHIFT >= cl->pageofs + llen) {
87547e4937aSGao Xiang 		outputsize = llen;
87647e4937aSGao Xiang 		partial = !(pcl->length & Z_EROFS_PCLUSTER_FULL_LENGTH);
87747e4937aSGao Xiang 	} else {
87847e4937aSGao Xiang 		outputsize = (nr_pages << PAGE_SHIFT) - cl->pageofs;
87947e4937aSGao Xiang 		partial = true;
88047e4937aSGao Xiang 	}
88147e4937aSGao Xiang 
88247e4937aSGao Xiang 	err = z_erofs_decompress(&(struct z_erofs_decompress_req) {
88347e4937aSGao Xiang 					.sb = sb,
88447e4937aSGao Xiang 					.in = compressed_pages,
88547e4937aSGao Xiang 					.out = pages,
88647e4937aSGao Xiang 					.pageofs_out = cl->pageofs,
88747e4937aSGao Xiang 					.inputsize = PAGE_SIZE,
88847e4937aSGao Xiang 					.outputsize = outputsize,
88947e4937aSGao Xiang 					.alg = pcl->algorithmformat,
89047e4937aSGao Xiang 					.inplace_io = overlapped,
89147e4937aSGao Xiang 					.partial_decoding = partial
89247e4937aSGao Xiang 				 }, pagepool);
89347e4937aSGao Xiang 
89447e4937aSGao Xiang out:
89547e4937aSGao Xiang 	/* must handle all compressed pages before endding pages */
89647e4937aSGao Xiang 	for (i = 0; i < clusterpages; ++i) {
89747e4937aSGao Xiang 		page = compressed_pages[i];
89847e4937aSGao Xiang 
89947e4937aSGao Xiang 		if (erofs_page_is_managed(sbi, page))
90047e4937aSGao Xiang 			continue;
90147e4937aSGao Xiang 
90247e4937aSGao Xiang 		/* recycle all individual staging pages */
90347e4937aSGao Xiang 		(void)z_erofs_put_stagingpage(pagepool, page);
90447e4937aSGao Xiang 
90547e4937aSGao Xiang 		WRITE_ONCE(compressed_pages[i], NULL);
90647e4937aSGao Xiang 	}
90747e4937aSGao Xiang 
90847e4937aSGao Xiang 	for (i = 0; i < nr_pages; ++i) {
90947e4937aSGao Xiang 		page = pages[i];
91047e4937aSGao Xiang 		if (!page)
91147e4937aSGao Xiang 			continue;
91247e4937aSGao Xiang 
91347e4937aSGao Xiang 		DBG_BUGON(!page->mapping);
91447e4937aSGao Xiang 
91547e4937aSGao Xiang 		/* recycle all individual staging pages */
91647e4937aSGao Xiang 		if (z_erofs_put_stagingpage(pagepool, page))
91747e4937aSGao Xiang 			continue;
91847e4937aSGao Xiang 
9198d8a09b0SGao Xiang 		if (err < 0)
92047e4937aSGao Xiang 			SetPageError(page);
92147e4937aSGao Xiang 
92247e4937aSGao Xiang 		z_erofs_onlinepage_endio(page);
92347e4937aSGao Xiang 	}
92447e4937aSGao Xiang 
92547e4937aSGao Xiang 	if (pages == z_pagemap_global)
92647e4937aSGao Xiang 		mutex_unlock(&z_pagemap_global_lock);
9278d8a09b0SGao Xiang 	else if (pages != pages_onstack)
92847e4937aSGao Xiang 		kvfree(pages);
92947e4937aSGao Xiang 
93047e4937aSGao Xiang 	cl->nr_pages = 0;
93147e4937aSGao Xiang 	cl->vcnt = 0;
93247e4937aSGao Xiang 
93347e4937aSGao Xiang 	/* all cl locks MUST be taken before the following line */
93447e4937aSGao Xiang 	WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_NIL);
93547e4937aSGao Xiang 
93647e4937aSGao Xiang 	/* all cl locks SHOULD be released right now */
93747e4937aSGao Xiang 	mutex_unlock(&cl->lock);
93847e4937aSGao Xiang 
93947e4937aSGao Xiang 	z_erofs_collection_put(cl);
94047e4937aSGao Xiang 	return err;
94147e4937aSGao Xiang }
94247e4937aSGao Xiang 
9430c638f70SGao Xiang static void z_erofs_decompress_queue(const struct z_erofs_decompressqueue *io,
94447e4937aSGao Xiang 				     struct list_head *pagepool)
94547e4937aSGao Xiang {
94647e4937aSGao Xiang 	z_erofs_next_pcluster_t owned = io->head;
94747e4937aSGao Xiang 
94847e4937aSGao Xiang 	while (owned != Z_EROFS_PCLUSTER_TAIL_CLOSED) {
94947e4937aSGao Xiang 		struct z_erofs_pcluster *pcl;
95047e4937aSGao Xiang 
95147e4937aSGao Xiang 		/* no possible that 'owned' equals Z_EROFS_WORK_TPTR_TAIL */
95247e4937aSGao Xiang 		DBG_BUGON(owned == Z_EROFS_PCLUSTER_TAIL);
95347e4937aSGao Xiang 
95447e4937aSGao Xiang 		/* no possible that 'owned' equals NULL */
95547e4937aSGao Xiang 		DBG_BUGON(owned == Z_EROFS_PCLUSTER_NIL);
95647e4937aSGao Xiang 
95747e4937aSGao Xiang 		pcl = container_of(owned, struct z_erofs_pcluster, next);
95847e4937aSGao Xiang 		owned = READ_ONCE(pcl->next);
95947e4937aSGao Xiang 
960a4b1fab1SGao Xiang 		z_erofs_decompress_pcluster(io->sb, pcl, pagepool);
96147e4937aSGao Xiang 	}
96247e4937aSGao Xiang }
96347e4937aSGao Xiang 
9640c638f70SGao Xiang static void z_erofs_decompressqueue_work(struct work_struct *work)
96547e4937aSGao Xiang {
966a4b1fab1SGao Xiang 	struct z_erofs_decompressqueue *bgq =
967a4b1fab1SGao Xiang 		container_of(work, struct z_erofs_decompressqueue, u.work);
96847e4937aSGao Xiang 	LIST_HEAD(pagepool);
96947e4937aSGao Xiang 
970a4b1fab1SGao Xiang 	DBG_BUGON(bgq->head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
9710c638f70SGao Xiang 	z_erofs_decompress_queue(bgq, &pagepool);
97247e4937aSGao Xiang 
97347e4937aSGao Xiang 	put_pages_list(&pagepool);
974a4b1fab1SGao Xiang 	kvfree(bgq);
97547e4937aSGao Xiang }
97647e4937aSGao Xiang 
97747e4937aSGao Xiang static struct page *pickup_page_for_submission(struct z_erofs_pcluster *pcl,
97847e4937aSGao Xiang 					       unsigned int nr,
97947e4937aSGao Xiang 					       struct list_head *pagepool,
98047e4937aSGao Xiang 					       struct address_space *mc,
98147e4937aSGao Xiang 					       gfp_t gfp)
98247e4937aSGao Xiang {
98347e4937aSGao Xiang 	const pgoff_t index = pcl->obj.index;
98447e4937aSGao Xiang 	bool tocache = false;
98547e4937aSGao Xiang 
98647e4937aSGao Xiang 	struct address_space *mapping;
98747e4937aSGao Xiang 	struct page *oldpage, *page;
98847e4937aSGao Xiang 
98947e4937aSGao Xiang 	compressed_page_t t;
99047e4937aSGao Xiang 	int justfound;
99147e4937aSGao Xiang 
99247e4937aSGao Xiang repeat:
99347e4937aSGao Xiang 	page = READ_ONCE(pcl->compressed_pages[nr]);
99447e4937aSGao Xiang 	oldpage = page;
99547e4937aSGao Xiang 
99647e4937aSGao Xiang 	if (!page)
99747e4937aSGao Xiang 		goto out_allocpage;
99847e4937aSGao Xiang 
99947e4937aSGao Xiang 	/*
100047e4937aSGao Xiang 	 * the cached page has not been allocated and
100147e4937aSGao Xiang 	 * an placeholder is out there, prepare it now.
100247e4937aSGao Xiang 	 */
1003bda17a45SGao Xiang 	if (page == PAGE_UNALLOCATED) {
100447e4937aSGao Xiang 		tocache = true;
100547e4937aSGao Xiang 		goto out_allocpage;
100647e4937aSGao Xiang 	}
100747e4937aSGao Xiang 
100847e4937aSGao Xiang 	/* process the target tagged pointer */
100947e4937aSGao Xiang 	t = tagptr_init(compressed_page_t, page);
101047e4937aSGao Xiang 	justfound = tagptr_unfold_tags(t);
101147e4937aSGao Xiang 	page = tagptr_unfold_ptr(t);
101247e4937aSGao Xiang 
101347e4937aSGao Xiang 	mapping = READ_ONCE(page->mapping);
101447e4937aSGao Xiang 
101547e4937aSGao Xiang 	/*
101647e4937aSGao Xiang 	 * unmanaged (file) pages are all locked solidly,
101747e4937aSGao Xiang 	 * therefore it is impossible for `mapping' to be NULL.
101847e4937aSGao Xiang 	 */
101947e4937aSGao Xiang 	if (mapping && mapping != mc)
102047e4937aSGao Xiang 		/* ought to be unmanaged pages */
102147e4937aSGao Xiang 		goto out;
102247e4937aSGao Xiang 
102347e4937aSGao Xiang 	lock_page(page);
102447e4937aSGao Xiang 
102547e4937aSGao Xiang 	/* only true if page reclaim goes wrong, should never happen */
102647e4937aSGao Xiang 	DBG_BUGON(justfound && PagePrivate(page));
102747e4937aSGao Xiang 
102847e4937aSGao Xiang 	/* the page is still in manage cache */
102947e4937aSGao Xiang 	if (page->mapping == mc) {
103047e4937aSGao Xiang 		WRITE_ONCE(pcl->compressed_pages[nr], page);
103147e4937aSGao Xiang 
103247e4937aSGao Xiang 		ClearPageError(page);
103347e4937aSGao Xiang 		if (!PagePrivate(page)) {
103447e4937aSGao Xiang 			/*
103547e4937aSGao Xiang 			 * impossible to be !PagePrivate(page) for
103647e4937aSGao Xiang 			 * the current restriction as well if
103747e4937aSGao Xiang 			 * the page is already in compressed_pages[].
103847e4937aSGao Xiang 			 */
103947e4937aSGao Xiang 			DBG_BUGON(!justfound);
104047e4937aSGao Xiang 
104147e4937aSGao Xiang 			justfound = 0;
104247e4937aSGao Xiang 			set_page_private(page, (unsigned long)pcl);
104347e4937aSGao Xiang 			SetPagePrivate(page);
104447e4937aSGao Xiang 		}
104547e4937aSGao Xiang 
104647e4937aSGao Xiang 		/* no need to submit io if it is already up-to-date */
104747e4937aSGao Xiang 		if (PageUptodate(page)) {
104847e4937aSGao Xiang 			unlock_page(page);
104947e4937aSGao Xiang 			page = NULL;
105047e4937aSGao Xiang 		}
105147e4937aSGao Xiang 		goto out;
105247e4937aSGao Xiang 	}
105347e4937aSGao Xiang 
105447e4937aSGao Xiang 	/*
105547e4937aSGao Xiang 	 * the managed page has been truncated, it's unsafe to
105647e4937aSGao Xiang 	 * reuse this one, let's allocate a new cache-managed page.
105747e4937aSGao Xiang 	 */
105847e4937aSGao Xiang 	DBG_BUGON(page->mapping);
105947e4937aSGao Xiang 	DBG_BUGON(!justfound);
106047e4937aSGao Xiang 
106147e4937aSGao Xiang 	tocache = true;
106247e4937aSGao Xiang 	unlock_page(page);
106347e4937aSGao Xiang 	put_page(page);
106447e4937aSGao Xiang out_allocpage:
10655ddcee1fSGao Xiang 	page = erofs_allocpage(pagepool, gfp | __GFP_NOFAIL);
10665ddcee1fSGao Xiang 	if (!tocache || add_to_page_cache_lru(page, mc, index + nr, gfp)) {
10675ddcee1fSGao Xiang 		/* non-LRU / non-movable temporary page is needed */
106847e4937aSGao Xiang 		page->mapping = Z_EROFS_MAPPING_STAGING;
10695ddcee1fSGao Xiang 		tocache = false;
107047e4937aSGao Xiang 	}
107147e4937aSGao Xiang 
10725ddcee1fSGao Xiang 	if (oldpage != cmpxchg(&pcl->compressed_pages[nr], oldpage, page)) {
10735ddcee1fSGao Xiang 		if (tocache) {
10745ddcee1fSGao Xiang 			/* since it added to managed cache successfully */
10755ddcee1fSGao Xiang 			unlock_page(page);
10765ddcee1fSGao Xiang 			put_page(page);
10775ddcee1fSGao Xiang 		} else {
10785ddcee1fSGao Xiang 			list_add(&page->lru, pagepool);
10795ddcee1fSGao Xiang 		}
10805ddcee1fSGao Xiang 		cond_resched();
10815ddcee1fSGao Xiang 		goto repeat;
10825ddcee1fSGao Xiang 	}
108347e4937aSGao Xiang 	set_page_private(page, (unsigned long)pcl);
108447e4937aSGao Xiang 	SetPagePrivate(page);
108547e4937aSGao Xiang out:	/* the only exit (for tracing and debugging) */
108647e4937aSGao Xiang 	return page;
108747e4937aSGao Xiang }
108847e4937aSGao Xiang 
1089a4b1fab1SGao Xiang static struct z_erofs_decompressqueue *
1090a4b1fab1SGao Xiang jobqueue_init(struct super_block *sb,
1091a4b1fab1SGao Xiang 	      struct z_erofs_decompressqueue *fgq, bool *fg)
109247e4937aSGao Xiang {
1093a4b1fab1SGao Xiang 	struct z_erofs_decompressqueue *q;
109447e4937aSGao Xiang 
1095a4b1fab1SGao Xiang 	if (fg && !*fg) {
1096a4b1fab1SGao Xiang 		q = kvzalloc(sizeof(*q), GFP_KERNEL | __GFP_NOWARN);
1097a4b1fab1SGao Xiang 		if (!q) {
1098a4b1fab1SGao Xiang 			*fg = true;
1099a4b1fab1SGao Xiang 			goto fg_out;
110047e4937aSGao Xiang 		}
11010c638f70SGao Xiang 		INIT_WORK(&q->u.work, z_erofs_decompressqueue_work);
1102a4b1fab1SGao Xiang 	} else {
1103a4b1fab1SGao Xiang fg_out:
1104a4b1fab1SGao Xiang 		q = fgq;
1105a4b1fab1SGao Xiang 		init_waitqueue_head(&fgq->u.wait);
1106a4b1fab1SGao Xiang 		atomic_set(&fgq->pending_bios, 0);
1107a4b1fab1SGao Xiang 	}
1108a4b1fab1SGao Xiang 	q->sb = sb;
1109a4b1fab1SGao Xiang 	q->head = Z_EROFS_PCLUSTER_TAIL_CLOSED;
1110a4b1fab1SGao Xiang 	return q;
111147e4937aSGao Xiang }
111247e4937aSGao Xiang 
111347e4937aSGao Xiang /* define decompression jobqueue types */
111447e4937aSGao Xiang enum {
111547e4937aSGao Xiang 	JQ_BYPASS,
111647e4937aSGao Xiang 	JQ_SUBMIT,
111747e4937aSGao Xiang 	NR_JOBQUEUES,
111847e4937aSGao Xiang };
111947e4937aSGao Xiang 
112047e4937aSGao Xiang static void *jobqueueset_init(struct super_block *sb,
1121a4b1fab1SGao Xiang 			      struct z_erofs_decompressqueue *q[],
1122a4b1fab1SGao Xiang 			      struct z_erofs_decompressqueue *fgq, bool *fg)
112347e4937aSGao Xiang {
112447e4937aSGao Xiang 	/*
112547e4937aSGao Xiang 	 * if managed cache is enabled, bypass jobqueue is needed,
112647e4937aSGao Xiang 	 * no need to read from device for all pclusters in this queue.
112747e4937aSGao Xiang 	 */
1128a4b1fab1SGao Xiang 	q[JQ_BYPASS] = jobqueue_init(sb, fgq + JQ_BYPASS, NULL);
1129a4b1fab1SGao Xiang 	q[JQ_SUBMIT] = jobqueue_init(sb, fgq + JQ_SUBMIT, fg);
113047e4937aSGao Xiang 
1131a4b1fab1SGao Xiang 	return tagptr_cast_ptr(tagptr_fold(tagptr1_t, q[JQ_SUBMIT], *fg));
113247e4937aSGao Xiang }
113347e4937aSGao Xiang 
113447e4937aSGao Xiang static void move_to_bypass_jobqueue(struct z_erofs_pcluster *pcl,
113547e4937aSGao Xiang 				    z_erofs_next_pcluster_t qtail[],
113647e4937aSGao Xiang 				    z_erofs_next_pcluster_t owned_head)
113747e4937aSGao Xiang {
113847e4937aSGao Xiang 	z_erofs_next_pcluster_t *const submit_qtail = qtail[JQ_SUBMIT];
113947e4937aSGao Xiang 	z_erofs_next_pcluster_t *const bypass_qtail = qtail[JQ_BYPASS];
114047e4937aSGao Xiang 
114147e4937aSGao Xiang 	DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
114247e4937aSGao Xiang 	if (owned_head == Z_EROFS_PCLUSTER_TAIL)
114347e4937aSGao Xiang 		owned_head = Z_EROFS_PCLUSTER_TAIL_CLOSED;
114447e4937aSGao Xiang 
114547e4937aSGao Xiang 	WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_TAIL_CLOSED);
114647e4937aSGao Xiang 
114747e4937aSGao Xiang 	WRITE_ONCE(*submit_qtail, owned_head);
114847e4937aSGao Xiang 	WRITE_ONCE(*bypass_qtail, &pcl->next);
114947e4937aSGao Xiang 
115047e4937aSGao Xiang 	qtail[JQ_BYPASS] = &pcl->next;
115147e4937aSGao Xiang }
115247e4937aSGao Xiang 
11531e4a2955SGao Xiang static void z_erofs_submit_queue(struct super_block *sb,
115447e4937aSGao Xiang 				 z_erofs_next_pcluster_t owned_head,
115547e4937aSGao Xiang 				 struct list_head *pagepool,
1156a4b1fab1SGao Xiang 				 struct z_erofs_decompressqueue *fgq,
1157a4b1fab1SGao Xiang 				 bool *force_fg)
115847e4937aSGao Xiang {
1159bda17a45SGao Xiang 	struct erofs_sb_info *const sbi = EROFS_SB(sb);
116047e4937aSGao Xiang 	z_erofs_next_pcluster_t qtail[NR_JOBQUEUES];
1161a4b1fab1SGao Xiang 	struct z_erofs_decompressqueue *q[NR_JOBQUEUES];
116247e4937aSGao Xiang 	void *bi_private;
116347e4937aSGao Xiang 	/* since bio will be NULL, no need to initialize last_index */
116447e4937aSGao Xiang 	pgoff_t uninitialized_var(last_index);
11651e4a2955SGao Xiang 	unsigned int nr_bios = 0;
11661e4a2955SGao Xiang 	struct bio *bio = NULL;
116747e4937aSGao Xiang 
1168a4b1fab1SGao Xiang 	bi_private = jobqueueset_init(sb, q, fgq, force_fg);
1169a4b1fab1SGao Xiang 	qtail[JQ_BYPASS] = &q[JQ_BYPASS]->head;
1170a4b1fab1SGao Xiang 	qtail[JQ_SUBMIT] = &q[JQ_SUBMIT]->head;
117147e4937aSGao Xiang 
117247e4937aSGao Xiang 	/* by default, all need io submission */
117347e4937aSGao Xiang 	q[JQ_SUBMIT]->head = owned_head;
117447e4937aSGao Xiang 
117547e4937aSGao Xiang 	do {
117647e4937aSGao Xiang 		struct z_erofs_pcluster *pcl;
11771e4a2955SGao Xiang 		pgoff_t cur, end;
11781e4a2955SGao Xiang 		unsigned int i = 0;
11791e4a2955SGao Xiang 		bool bypass = true;
118047e4937aSGao Xiang 
118147e4937aSGao Xiang 		/* no possible 'owned_head' equals the following */
118247e4937aSGao Xiang 		DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
118347e4937aSGao Xiang 		DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_NIL);
118447e4937aSGao Xiang 
118547e4937aSGao Xiang 		pcl = container_of(owned_head, struct z_erofs_pcluster, next);
118647e4937aSGao Xiang 
11871e4a2955SGao Xiang 		cur = pcl->obj.index;
11881e4a2955SGao Xiang 		end = cur + BIT(pcl->clusterbits);
118947e4937aSGao Xiang 
119047e4937aSGao Xiang 		/* close the main owned chain at first */
119147e4937aSGao Xiang 		owned_head = cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_TAIL,
119247e4937aSGao Xiang 				     Z_EROFS_PCLUSTER_TAIL_CLOSED);
119347e4937aSGao Xiang 
11941e4a2955SGao Xiang 		do {
11951e4a2955SGao Xiang 			struct page *page;
11961e4a2955SGao Xiang 			int err;
119747e4937aSGao Xiang 
11981e4a2955SGao Xiang 			page = pickup_page_for_submission(pcl, i++, pagepool,
119947e4937aSGao Xiang 							  MNGD_MAPPING(sbi),
120047e4937aSGao Xiang 							  GFP_NOFS);
12011e4a2955SGao Xiang 			if (!page)
12021e4a2955SGao Xiang 				continue;
120347e4937aSGao Xiang 
12041e4a2955SGao Xiang 			if (bio && cur != last_index + 1) {
120547e4937aSGao Xiang submit_bio_retry:
120694e4e153SGao Xiang 				submit_bio(bio);
120747e4937aSGao Xiang 				bio = NULL;
120847e4937aSGao Xiang 			}
120947e4937aSGao Xiang 
121047e4937aSGao Xiang 			if (!bio) {
1211a5c0b780SGao Xiang 				bio = bio_alloc(GFP_NOIO, BIO_MAX_PAGES);
1212a5c0b780SGao Xiang 
12130c638f70SGao Xiang 				bio->bi_end_io = z_erofs_decompressqueue_endio;
1214a5c0b780SGao Xiang 				bio_set_dev(bio, sb->s_bdev);
12151e4a2955SGao Xiang 				bio->bi_iter.bi_sector = (sector_t)cur <<
1216a5c0b780SGao Xiang 					LOG_SECTORS_PER_BLOCK;
1217a5c0b780SGao Xiang 				bio->bi_private = bi_private;
121894e4e153SGao Xiang 				bio->bi_opf = REQ_OP_READ;
121947e4937aSGao Xiang 				++nr_bios;
122047e4937aSGao Xiang 			}
122147e4937aSGao Xiang 
122247e4937aSGao Xiang 			err = bio_add_page(bio, page, PAGE_SIZE, 0);
122347e4937aSGao Xiang 			if (err < PAGE_SIZE)
122447e4937aSGao Xiang 				goto submit_bio_retry;
122547e4937aSGao Xiang 
12261e4a2955SGao Xiang 			last_index = cur;
12271e4a2955SGao Xiang 			bypass = false;
12281e4a2955SGao Xiang 		} while (++cur < end);
122947e4937aSGao Xiang 
12301e4a2955SGao Xiang 		if (!bypass)
123147e4937aSGao Xiang 			qtail[JQ_SUBMIT] = &pcl->next;
123247e4937aSGao Xiang 		else
123347e4937aSGao Xiang 			move_to_bypass_jobqueue(pcl, qtail, owned_head);
123447e4937aSGao Xiang 	} while (owned_head != Z_EROFS_PCLUSTER_TAIL);
123547e4937aSGao Xiang 
123647e4937aSGao Xiang 	if (bio)
123794e4e153SGao Xiang 		submit_bio(bio);
123847e4937aSGao Xiang 
1239587a67b7SGao Xiang 	/*
1240587a67b7SGao Xiang 	 * although background is preferred, no one is pending for submission.
1241587a67b7SGao Xiang 	 * don't issue workqueue for decompression but drop it directly instead.
1242587a67b7SGao Xiang 	 */
1243587a67b7SGao Xiang 	if (!*force_fg && !nr_bios) {
1244587a67b7SGao Xiang 		kvfree(q[JQ_SUBMIT]);
12451e4a2955SGao Xiang 		return;
1246587a67b7SGao Xiang 	}
1247a4b1fab1SGao Xiang 	z_erofs_decompress_kickoff(q[JQ_SUBMIT], *force_fg, nr_bios);
124847e4937aSGao Xiang }
124947e4937aSGao Xiang 
12500c638f70SGao Xiang static void z_erofs_runqueue(struct super_block *sb,
125147e4937aSGao Xiang 			     struct z_erofs_collector *clt,
12520c638f70SGao Xiang 			     struct list_head *pagepool, bool force_fg)
125347e4937aSGao Xiang {
1254a4b1fab1SGao Xiang 	struct z_erofs_decompressqueue io[NR_JOBQUEUES];
125547e4937aSGao Xiang 
12561e4a2955SGao Xiang 	if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL)
125747e4937aSGao Xiang 		return;
12581e4a2955SGao Xiang 	z_erofs_submit_queue(sb, clt->owned_head, pagepool, io, &force_fg);
125947e4937aSGao Xiang 
12600c638f70SGao Xiang 	/* handle bypass queue (no i/o pclusters) immediately */
12610c638f70SGao Xiang 	z_erofs_decompress_queue(&io[JQ_BYPASS], pagepool);
126247e4937aSGao Xiang 
126347e4937aSGao Xiang 	if (!force_fg)
126447e4937aSGao Xiang 		return;
126547e4937aSGao Xiang 
126647e4937aSGao Xiang 	/* wait until all bios are completed */
1267a93f8c36SGao Xiang 	io_wait_event(io[JQ_SUBMIT].u.wait,
126847e4937aSGao Xiang 		      !atomic_read(&io[JQ_SUBMIT].pending_bios));
126947e4937aSGao Xiang 
12700c638f70SGao Xiang 	/* handle synchronous decompress queue in the caller context */
12710c638f70SGao Xiang 	z_erofs_decompress_queue(&io[JQ_SUBMIT], pagepool);
127247e4937aSGao Xiang }
127347e4937aSGao Xiang 
12740c638f70SGao Xiang static int z_erofs_readpage(struct file *file, struct page *page)
127547e4937aSGao Xiang {
127647e4937aSGao Xiang 	struct inode *const inode = page->mapping->host;
127747e4937aSGao Xiang 	struct z_erofs_decompress_frontend f = DECOMPRESS_FRONTEND_INIT(inode);
127847e4937aSGao Xiang 	int err;
127947e4937aSGao Xiang 	LIST_HEAD(pagepool);
128047e4937aSGao Xiang 
128147e4937aSGao Xiang 	trace_erofs_readpage(page, false);
128247e4937aSGao Xiang 
128347e4937aSGao Xiang 	f.headoffset = (erofs_off_t)page->index << PAGE_SHIFT;
128447e4937aSGao Xiang 
128547e4937aSGao Xiang 	err = z_erofs_do_read_page(&f, page, &pagepool);
128647e4937aSGao Xiang 	(void)z_erofs_collector_end(&f.clt);
128747e4937aSGao Xiang 
128847e4937aSGao Xiang 	/* if some compressed cluster ready, need submit them anyway */
12890c638f70SGao Xiang 	z_erofs_runqueue(inode->i_sb, &f.clt, &pagepool, true);
129047e4937aSGao Xiang 
129147e4937aSGao Xiang 	if (err)
12924f761fa2SGao Xiang 		erofs_err(inode->i_sb, "failed to read, err [%d]", err);
129347e4937aSGao Xiang 
129447e4937aSGao Xiang 	if (f.map.mpage)
129547e4937aSGao Xiang 		put_page(f.map.mpage);
129647e4937aSGao Xiang 
129747e4937aSGao Xiang 	/* clean up the remaining free pages */
129847e4937aSGao Xiang 	put_pages_list(&pagepool);
129947e4937aSGao Xiang 	return err;
130047e4937aSGao Xiang }
130147e4937aSGao Xiang 
130247e4937aSGao Xiang static bool should_decompress_synchronously(struct erofs_sb_info *sbi,
130347e4937aSGao Xiang 					    unsigned int nr)
130447e4937aSGao Xiang {
130547e4937aSGao Xiang 	return nr <= sbi->max_sync_decompress_pages;
130647e4937aSGao Xiang }
130747e4937aSGao Xiang 
13080c638f70SGao Xiang static int z_erofs_readpages(struct file *filp, struct address_space *mapping,
13090c638f70SGao Xiang 			     struct list_head *pages, unsigned int nr_pages)
131047e4937aSGao Xiang {
131147e4937aSGao Xiang 	struct inode *const inode = mapping->host;
131247e4937aSGao Xiang 	struct erofs_sb_info *const sbi = EROFS_I_SB(inode);
131347e4937aSGao Xiang 
131447e4937aSGao Xiang 	bool sync = should_decompress_synchronously(sbi, nr_pages);
131547e4937aSGao Xiang 	struct z_erofs_decompress_frontend f = DECOMPRESS_FRONTEND_INIT(inode);
131647e4937aSGao Xiang 	gfp_t gfp = mapping_gfp_constraint(mapping, GFP_KERNEL);
131747e4937aSGao Xiang 	struct page *head = NULL;
131847e4937aSGao Xiang 	LIST_HEAD(pagepool);
131947e4937aSGao Xiang 
132047e4937aSGao Xiang 	trace_erofs_readpages(mapping->host, lru_to_page(pages),
132147e4937aSGao Xiang 			      nr_pages, false);
132247e4937aSGao Xiang 
132347e4937aSGao Xiang 	f.headoffset = (erofs_off_t)lru_to_page(pages)->index << PAGE_SHIFT;
132447e4937aSGao Xiang 
132547e4937aSGao Xiang 	for (; nr_pages; --nr_pages) {
132647e4937aSGao Xiang 		struct page *page = lru_to_page(pages);
132747e4937aSGao Xiang 
132847e4937aSGao Xiang 		prefetchw(&page->flags);
132947e4937aSGao Xiang 		list_del(&page->lru);
133047e4937aSGao Xiang 
133147e4937aSGao Xiang 		/*
133247e4937aSGao Xiang 		 * A pure asynchronous readahead is indicated if
133347e4937aSGao Xiang 		 * a PG_readahead marked page is hitted at first.
133447e4937aSGao Xiang 		 * Let's also do asynchronous decompression for this case.
133547e4937aSGao Xiang 		 */
133647e4937aSGao Xiang 		sync &= !(PageReadahead(page) && !head);
133747e4937aSGao Xiang 
133847e4937aSGao Xiang 		if (add_to_page_cache_lru(page, mapping, page->index, gfp)) {
133947e4937aSGao Xiang 			list_add(&page->lru, &pagepool);
134047e4937aSGao Xiang 			continue;
134147e4937aSGao Xiang 		}
134247e4937aSGao Xiang 
134347e4937aSGao Xiang 		set_page_private(page, (unsigned long)head);
134447e4937aSGao Xiang 		head = page;
134547e4937aSGao Xiang 	}
134647e4937aSGao Xiang 
134747e4937aSGao Xiang 	while (head) {
134847e4937aSGao Xiang 		struct page *page = head;
134947e4937aSGao Xiang 		int err;
135047e4937aSGao Xiang 
135147e4937aSGao Xiang 		/* traversal in reverse order */
135247e4937aSGao Xiang 		head = (void *)page_private(page);
135347e4937aSGao Xiang 
135447e4937aSGao Xiang 		err = z_erofs_do_read_page(&f, page, &pagepool);
1355a5876e24SGao Xiang 		if (err)
13564f761fa2SGao Xiang 			erofs_err(inode->i_sb,
13574f761fa2SGao Xiang 				  "readahead error at page %lu @ nid %llu",
13584f761fa2SGao Xiang 				  page->index, EROFS_I(inode)->nid);
135947e4937aSGao Xiang 		put_page(page);
136047e4937aSGao Xiang 	}
136147e4937aSGao Xiang 
136247e4937aSGao Xiang 	(void)z_erofs_collector_end(&f.clt);
136347e4937aSGao Xiang 
13640c638f70SGao Xiang 	z_erofs_runqueue(inode->i_sb, &f.clt, &pagepool, sync);
136547e4937aSGao Xiang 
136647e4937aSGao Xiang 	if (f.map.mpage)
136747e4937aSGao Xiang 		put_page(f.map.mpage);
136847e4937aSGao Xiang 
136947e4937aSGao Xiang 	/* clean up the remaining free pages */
137047e4937aSGao Xiang 	put_pages_list(&pagepool);
137147e4937aSGao Xiang 	return 0;
137247e4937aSGao Xiang }
137347e4937aSGao Xiang 
13740c638f70SGao Xiang const struct address_space_operations z_erofs_aops = {
13750c638f70SGao Xiang 	.readpage = z_erofs_readpage,
13760c638f70SGao Xiang 	.readpages = z_erofs_readpages,
137747e4937aSGao Xiang };
137847e4937aSGao Xiang 
1379