Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/fs/erofs/zdata.c
29265 views
1
// SPDX-License-Identifier: GPL-2.0-only
2
/*
3
* Copyright (C) 2018 HUAWEI, Inc.
4
* https://www.huawei.com/
5
* Copyright (C) 2022 Alibaba Cloud
6
*/
7
#include "compress.h"
8
#include <linux/psi.h>
9
#include <linux/cpuhotplug.h>
10
#include <trace/events/erofs.h>
11
12
#define Z_EROFS_PCLUSTER_MAX_PAGES (Z_EROFS_PCLUSTER_MAX_SIZE / PAGE_SIZE)
13
#define Z_EROFS_INLINE_BVECS 2
14
15
struct z_erofs_bvec {
16
struct page *page;
17
int offset;
18
unsigned int end;
19
};
20
21
#define __Z_EROFS_BVSET(name, total) \
22
struct name { \
23
/* point to the next page which contains the following bvecs */ \
24
struct page *nextpage; \
25
struct z_erofs_bvec bvec[total]; \
26
}
27
__Z_EROFS_BVSET(z_erofs_bvset,);
28
__Z_EROFS_BVSET(z_erofs_bvset_inline, Z_EROFS_INLINE_BVECS);
29
30
/*
31
* Structure fields follow one of the following exclusion rules.
32
*
33
* I: Modifiable by initialization/destruction paths and read-only
34
* for everyone else;
35
*
36
* L: Field should be protected by the pcluster lock;
37
*
38
* A: Field should be accessed / updated in atomic for parallelized code.
39
*/
40
struct z_erofs_pcluster {
41
struct mutex lock;
42
struct lockref lockref;
43
44
/* A: point to next chained pcluster or TAILs */
45
struct z_erofs_pcluster *next;
46
47
/* I: start physical position of this pcluster */
48
erofs_off_t pos;
49
50
/* L: the maximum decompression size of this round */
51
unsigned int length;
52
53
/* L: total number of bvecs */
54
unsigned int vcnt;
55
56
/* I: pcluster size (compressed size) in bytes */
57
unsigned int pclustersize;
58
59
/* I: page offset of start position of decompression */
60
unsigned short pageofs_out;
61
62
/* I: page offset of inline compressed data */
63
unsigned short pageofs_in;
64
65
union {
66
/* L: inline a certain number of bvec for bootstrap */
67
struct z_erofs_bvset_inline bvset;
68
69
/* I: can be used to free the pcluster by RCU. */
70
struct rcu_head rcu;
71
};
72
73
/* I: compression algorithm format */
74
unsigned char algorithmformat;
75
76
/* I: whether compressed data is in-lined or not */
77
bool from_meta;
78
79
/* L: whether partial decompression or not */
80
bool partial;
81
82
/* L: whether extra buffer allocations are best-effort */
83
bool besteffort;
84
85
/* A: compressed bvecs (can be cached or inplaced pages) */
86
struct z_erofs_bvec compressed_bvecs[];
87
};
88
89
/* the end of a chain of pclusters */
90
#define Z_EROFS_PCLUSTER_TAIL ((void *) 0x700 + POISON_POINTER_DELTA)
91
92
struct z_erofs_decompressqueue {
93
struct super_block *sb;
94
struct z_erofs_pcluster *head;
95
atomic_t pending_bios;
96
97
union {
98
struct completion done;
99
struct work_struct work;
100
struct kthread_work kthread_work;
101
} u;
102
bool eio, sync;
103
};
104
105
static inline unsigned int z_erofs_pclusterpages(struct z_erofs_pcluster *pcl)
106
{
107
return PAGE_ALIGN(pcl->pageofs_in + pcl->pclustersize) >> PAGE_SHIFT;
108
}
109
110
static bool erofs_folio_is_managed(struct erofs_sb_info *sbi, struct folio *fo)
111
{
112
return fo->mapping == MNGD_MAPPING(sbi);
113
}
114
115
#define Z_EROFS_ONSTACK_PAGES 32
116
117
/*
118
* since pclustersize is variable for big pcluster feature, introduce slab
119
* pools implementation for different pcluster sizes.
120
*/
121
struct z_erofs_pcluster_slab {
122
struct kmem_cache *slab;
123
unsigned int maxpages;
124
char name[48];
125
};
126
127
#define _PCLP(n) { .maxpages = n }
128
129
static struct z_erofs_pcluster_slab pcluster_pool[] __read_mostly = {
130
_PCLP(1), _PCLP(4), _PCLP(16), _PCLP(64), _PCLP(128),
131
_PCLP(Z_EROFS_PCLUSTER_MAX_PAGES + 1)
132
};
133
134
struct z_erofs_bvec_iter {
135
struct page *bvpage;
136
struct z_erofs_bvset *bvset;
137
unsigned int nr, cur;
138
};
139
140
static struct page *z_erofs_bvec_iter_end(struct z_erofs_bvec_iter *iter)
141
{
142
if (iter->bvpage)
143
kunmap_local(iter->bvset);
144
return iter->bvpage;
145
}
146
147
static struct page *z_erofs_bvset_flip(struct z_erofs_bvec_iter *iter)
148
{
149
unsigned long base = (unsigned long)((struct z_erofs_bvset *)0)->bvec;
150
/* have to access nextpage in advance, otherwise it will be unmapped */
151
struct page *nextpage = iter->bvset->nextpage;
152
struct page *oldpage;
153
154
DBG_BUGON(!nextpage);
155
oldpage = z_erofs_bvec_iter_end(iter);
156
iter->bvpage = nextpage;
157
iter->bvset = kmap_local_page(nextpage);
158
iter->nr = (PAGE_SIZE - base) / sizeof(struct z_erofs_bvec);
159
iter->cur = 0;
160
return oldpage;
161
}
162
163
static void z_erofs_bvec_iter_begin(struct z_erofs_bvec_iter *iter,
164
struct z_erofs_bvset_inline *bvset,
165
unsigned int bootstrap_nr,
166
unsigned int cur)
167
{
168
*iter = (struct z_erofs_bvec_iter) {
169
.nr = bootstrap_nr,
170
.bvset = (struct z_erofs_bvset *)bvset,
171
};
172
173
while (cur > iter->nr) {
174
cur -= iter->nr;
175
z_erofs_bvset_flip(iter);
176
}
177
iter->cur = cur;
178
}
179
180
static int z_erofs_bvec_enqueue(struct z_erofs_bvec_iter *iter,
181
struct z_erofs_bvec *bvec,
182
struct page **candidate_bvpage,
183
struct page **pagepool)
184
{
185
if (iter->cur >= iter->nr) {
186
struct page *nextpage = *candidate_bvpage;
187
188
if (!nextpage) {
189
nextpage = __erofs_allocpage(pagepool, GFP_KERNEL,
190
true);
191
if (!nextpage)
192
return -ENOMEM;
193
set_page_private(nextpage, Z_EROFS_SHORTLIVED_PAGE);
194
}
195
DBG_BUGON(iter->bvset->nextpage);
196
iter->bvset->nextpage = nextpage;
197
z_erofs_bvset_flip(iter);
198
199
iter->bvset->nextpage = NULL;
200
*candidate_bvpage = NULL;
201
}
202
iter->bvset->bvec[iter->cur++] = *bvec;
203
return 0;
204
}
205
206
static void z_erofs_bvec_dequeue(struct z_erofs_bvec_iter *iter,
207
struct z_erofs_bvec *bvec,
208
struct page **old_bvpage)
209
{
210
if (iter->cur == iter->nr)
211
*old_bvpage = z_erofs_bvset_flip(iter);
212
else
213
*old_bvpage = NULL;
214
*bvec = iter->bvset->bvec[iter->cur++];
215
}
216
217
static void z_erofs_destroy_pcluster_pool(void)
218
{
219
int i;
220
221
for (i = 0; i < ARRAY_SIZE(pcluster_pool); ++i) {
222
if (!pcluster_pool[i].slab)
223
continue;
224
kmem_cache_destroy(pcluster_pool[i].slab);
225
pcluster_pool[i].slab = NULL;
226
}
227
}
228
229
static int z_erofs_create_pcluster_pool(void)
230
{
231
struct z_erofs_pcluster_slab *pcs;
232
struct z_erofs_pcluster *a;
233
unsigned int size;
234
235
for (pcs = pcluster_pool;
236
pcs < pcluster_pool + ARRAY_SIZE(pcluster_pool); ++pcs) {
237
size = struct_size(a, compressed_bvecs, pcs->maxpages);
238
239
sprintf(pcs->name, "erofs_pcluster-%u", pcs->maxpages);
240
pcs->slab = kmem_cache_create(pcs->name, size, 0,
241
SLAB_RECLAIM_ACCOUNT, NULL);
242
if (pcs->slab)
243
continue;
244
245
z_erofs_destroy_pcluster_pool();
246
return -ENOMEM;
247
}
248
return 0;
249
}
250
251
static struct z_erofs_pcluster *z_erofs_alloc_pcluster(unsigned int size)
252
{
253
unsigned int nrpages = PAGE_ALIGN(size) >> PAGE_SHIFT;
254
struct z_erofs_pcluster_slab *pcs = pcluster_pool;
255
256
for (; pcs < pcluster_pool + ARRAY_SIZE(pcluster_pool); ++pcs) {
257
struct z_erofs_pcluster *pcl;
258
259
if (nrpages > pcs->maxpages)
260
continue;
261
262
pcl = kmem_cache_zalloc(pcs->slab, GFP_KERNEL);
263
if (!pcl)
264
return ERR_PTR(-ENOMEM);
265
return pcl;
266
}
267
return ERR_PTR(-EINVAL);
268
}
269
270
static void z_erofs_free_pcluster(struct z_erofs_pcluster *pcl)
271
{
272
unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
273
int i;
274
275
for (i = 0; i < ARRAY_SIZE(pcluster_pool); ++i) {
276
struct z_erofs_pcluster_slab *pcs = pcluster_pool + i;
277
278
if (pclusterpages > pcs->maxpages)
279
continue;
280
281
kmem_cache_free(pcs->slab, pcl);
282
return;
283
}
284
DBG_BUGON(1);
285
}
286
287
static struct workqueue_struct *z_erofs_workqueue __read_mostly;
288
289
#ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
290
static struct kthread_worker __rcu **z_erofs_pcpu_workers;
291
static atomic_t erofs_percpu_workers_initialized = ATOMIC_INIT(0);
292
293
static void erofs_destroy_percpu_workers(void)
294
{
295
struct kthread_worker *worker;
296
unsigned int cpu;
297
298
for_each_possible_cpu(cpu) {
299
worker = rcu_dereference_protected(
300
z_erofs_pcpu_workers[cpu], 1);
301
rcu_assign_pointer(z_erofs_pcpu_workers[cpu], NULL);
302
if (worker)
303
kthread_destroy_worker(worker);
304
}
305
kfree(z_erofs_pcpu_workers);
306
}
307
308
static struct kthread_worker *erofs_init_percpu_worker(int cpu)
309
{
310
struct kthread_worker *worker =
311
kthread_run_worker_on_cpu(cpu, 0, "erofs_worker/%u");
312
313
if (IS_ERR(worker))
314
return worker;
315
if (IS_ENABLED(CONFIG_EROFS_FS_PCPU_KTHREAD_HIPRI))
316
sched_set_fifo_low(worker->task);
317
return worker;
318
}
319
320
static int erofs_init_percpu_workers(void)
321
{
322
struct kthread_worker *worker;
323
unsigned int cpu;
324
325
z_erofs_pcpu_workers = kcalloc(num_possible_cpus(),
326
sizeof(struct kthread_worker *), GFP_ATOMIC);
327
if (!z_erofs_pcpu_workers)
328
return -ENOMEM;
329
330
for_each_online_cpu(cpu) { /* could miss cpu{off,on}line? */
331
worker = erofs_init_percpu_worker(cpu);
332
if (!IS_ERR(worker))
333
rcu_assign_pointer(z_erofs_pcpu_workers[cpu], worker);
334
}
335
return 0;
336
}
337
338
#ifdef CONFIG_HOTPLUG_CPU
339
static DEFINE_SPINLOCK(z_erofs_pcpu_worker_lock);
340
static enum cpuhp_state erofs_cpuhp_state;
341
342
static int erofs_cpu_online(unsigned int cpu)
343
{
344
struct kthread_worker *worker, *old;
345
346
worker = erofs_init_percpu_worker(cpu);
347
if (IS_ERR(worker))
348
return PTR_ERR(worker);
349
350
spin_lock(&z_erofs_pcpu_worker_lock);
351
old = rcu_dereference_protected(z_erofs_pcpu_workers[cpu],
352
lockdep_is_held(&z_erofs_pcpu_worker_lock));
353
if (!old)
354
rcu_assign_pointer(z_erofs_pcpu_workers[cpu], worker);
355
spin_unlock(&z_erofs_pcpu_worker_lock);
356
if (old)
357
kthread_destroy_worker(worker);
358
return 0;
359
}
360
361
static int erofs_cpu_offline(unsigned int cpu)
362
{
363
struct kthread_worker *worker;
364
365
spin_lock(&z_erofs_pcpu_worker_lock);
366
worker = rcu_dereference_protected(z_erofs_pcpu_workers[cpu],
367
lockdep_is_held(&z_erofs_pcpu_worker_lock));
368
rcu_assign_pointer(z_erofs_pcpu_workers[cpu], NULL);
369
spin_unlock(&z_erofs_pcpu_worker_lock);
370
371
synchronize_rcu();
372
if (worker)
373
kthread_destroy_worker(worker);
374
return 0;
375
}
376
377
static int erofs_cpu_hotplug_init(void)
378
{
379
int state;
380
381
state = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
382
"fs/erofs:online", erofs_cpu_online, erofs_cpu_offline);
383
if (state < 0)
384
return state;
385
386
erofs_cpuhp_state = state;
387
return 0;
388
}
389
390
static void erofs_cpu_hotplug_destroy(void)
391
{
392
if (erofs_cpuhp_state)
393
cpuhp_remove_state_nocalls(erofs_cpuhp_state);
394
}
395
#else /* !CONFIG_HOTPLUG_CPU */
396
static inline int erofs_cpu_hotplug_init(void) { return 0; }
397
static inline void erofs_cpu_hotplug_destroy(void) {}
398
#endif/* CONFIG_HOTPLUG_CPU */
399
static int z_erofs_init_pcpu_workers(struct super_block *sb)
400
{
401
int err;
402
403
if (atomic_xchg(&erofs_percpu_workers_initialized, 1))
404
return 0;
405
406
err = erofs_init_percpu_workers();
407
if (err) {
408
erofs_err(sb, "per-cpu workers: failed to allocate.");
409
goto err_init_percpu_workers;
410
}
411
412
err = erofs_cpu_hotplug_init();
413
if (err < 0) {
414
erofs_err(sb, "per-cpu workers: failed CPU hotplug init.");
415
goto err_cpuhp_init;
416
}
417
erofs_info(sb, "initialized per-cpu workers successfully.");
418
return err;
419
420
err_cpuhp_init:
421
erofs_destroy_percpu_workers();
422
err_init_percpu_workers:
423
atomic_set(&erofs_percpu_workers_initialized, 0);
424
return err;
425
}
426
427
static void z_erofs_destroy_pcpu_workers(void)
428
{
429
if (!atomic_xchg(&erofs_percpu_workers_initialized, 0))
430
return;
431
erofs_cpu_hotplug_destroy();
432
erofs_destroy_percpu_workers();
433
}
434
#else /* !CONFIG_EROFS_FS_PCPU_KTHREAD */
435
static inline int z_erofs_init_pcpu_workers(struct super_block *sb) { return 0; }
436
static inline void z_erofs_destroy_pcpu_workers(void) {}
437
#endif/* CONFIG_EROFS_FS_PCPU_KTHREAD */
438
439
void z_erofs_exit_subsystem(void)
440
{
441
z_erofs_destroy_pcpu_workers();
442
destroy_workqueue(z_erofs_workqueue);
443
z_erofs_destroy_pcluster_pool();
444
z_erofs_crypto_disable_all_engines();
445
z_erofs_exit_decompressor();
446
}
447
448
int __init z_erofs_init_subsystem(void)
449
{
450
int err = z_erofs_init_decompressor();
451
452
if (err)
453
goto err_decompressor;
454
455
err = z_erofs_create_pcluster_pool();
456
if (err)
457
goto err_pcluster_pool;
458
459
z_erofs_workqueue = alloc_workqueue("erofs_worker",
460
WQ_UNBOUND | WQ_HIGHPRI, num_possible_cpus());
461
if (!z_erofs_workqueue) {
462
err = -ENOMEM;
463
goto err_workqueue_init;
464
}
465
466
return err;
467
468
err_workqueue_init:
469
z_erofs_destroy_pcluster_pool();
470
err_pcluster_pool:
471
z_erofs_exit_decompressor();
472
err_decompressor:
473
return err;
474
}
475
476
enum z_erofs_pclustermode {
477
/* It has previously been linked into another processing chain */
478
Z_EROFS_PCLUSTER_INFLIGHT,
479
/*
480
* A weaker form of Z_EROFS_PCLUSTER_FOLLOWED; the difference is that it
481
* may be dispatched to the bypass queue later due to uptodated managed
482
* folios. All file-backed folios related to this pcluster cannot be
483
* reused for in-place I/O (or bvpage) since the pcluster may be decoded
484
* in a separate queue (and thus out of order).
485
*/
486
Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE,
487
/*
488
* The pcluster has just been linked to our processing chain.
489
* File-backed folios (except for the head page) related to it can be
490
* used for in-place I/O (or bvpage).
491
*/
492
Z_EROFS_PCLUSTER_FOLLOWED,
493
};
494
495
struct z_erofs_frontend {
496
struct inode *const inode;
497
struct erofs_map_blocks map;
498
struct z_erofs_bvec_iter biter;
499
500
struct page *pagepool;
501
struct page *candidate_bvpage;
502
struct z_erofs_pcluster *pcl, *head;
503
enum z_erofs_pclustermode mode;
504
505
erofs_off_t headoffset;
506
507
/* a pointer used to pick up inplace I/O pages */
508
unsigned int icur;
509
};
510
511
#define Z_EROFS_DEFINE_FRONTEND(fe, i, ho) struct z_erofs_frontend fe = { \
512
.inode = i, .head = Z_EROFS_PCLUSTER_TAIL, \
513
.mode = Z_EROFS_PCLUSTER_FOLLOWED, .headoffset = ho }
514
515
static bool z_erofs_should_alloc_cache(struct z_erofs_frontend *fe)
516
{
517
unsigned int cachestrategy = EROFS_I_SB(fe->inode)->opt.cache_strategy;
518
519
if (cachestrategy <= EROFS_ZIP_CACHE_DISABLED)
520
return false;
521
522
if (!(fe->map.m_flags & EROFS_MAP_FULL_MAPPED))
523
return true;
524
525
if (cachestrategy >= EROFS_ZIP_CACHE_READAROUND &&
526
fe->map.m_la < fe->headoffset)
527
return true;
528
529
return false;
530
}
531
532
static void z_erofs_bind_cache(struct z_erofs_frontend *fe)
533
{
534
struct address_space *mc = MNGD_MAPPING(EROFS_I_SB(fe->inode));
535
struct z_erofs_pcluster *pcl = fe->pcl;
536
unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
537
bool shouldalloc = z_erofs_should_alloc_cache(fe);
538
pgoff_t poff = pcl->pos >> PAGE_SHIFT;
539
bool may_bypass = true;
540
/* Optimistic allocation, as in-place I/O can be used as a fallback */
541
gfp_t gfp = (mapping_gfp_mask(mc) & ~__GFP_DIRECT_RECLAIM) |
542
__GFP_NOMEMALLOC | __GFP_NORETRY | __GFP_NOWARN;
543
struct folio *folio, *newfolio;
544
unsigned int i;
545
546
if (i_blocksize(fe->inode) != PAGE_SIZE ||
547
fe->mode < Z_EROFS_PCLUSTER_FOLLOWED)
548
return;
549
550
for (i = 0; i < pclusterpages; ++i) {
551
/* Inaccurate check w/o locking to avoid unneeded lookups */
552
if (READ_ONCE(pcl->compressed_bvecs[i].page))
553
continue;
554
555
folio = filemap_get_folio(mc, poff + i);
556
if (IS_ERR(folio)) {
557
may_bypass = false;
558
if (!shouldalloc)
559
continue;
560
561
/*
562
* Allocate a managed folio for cached I/O, or it may be
563
* then filled with a file-backed folio for in-place I/O
564
*/
565
newfolio = filemap_alloc_folio(gfp, 0);
566
if (!newfolio)
567
continue;
568
newfolio->private = Z_EROFS_PREALLOCATED_FOLIO;
569
folio = NULL;
570
}
571
spin_lock(&pcl->lockref.lock);
572
if (!pcl->compressed_bvecs[i].page) {
573
pcl->compressed_bvecs[i].page =
574
folio_page(folio ?: newfolio, 0);
575
spin_unlock(&pcl->lockref.lock);
576
continue;
577
}
578
spin_unlock(&pcl->lockref.lock);
579
folio_put(folio ?: newfolio);
580
}
581
582
/*
583
* Don't perform in-place I/O if all compressed pages are available in
584
* the managed cache, as the pcluster can be moved to the bypass queue.
585
*/
586
if (may_bypass)
587
fe->mode = Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE;
588
}
589
590
/* (erofs_shrinker) disconnect cached encoded data with pclusters */
591
static int erofs_try_to_free_all_cached_folios(struct erofs_sb_info *sbi,
592
struct z_erofs_pcluster *pcl)
593
{
594
unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
595
struct folio *folio;
596
int i;
597
598
DBG_BUGON(pcl->from_meta);
599
/* Each cached folio contains one page unless bs > ps is supported */
600
for (i = 0; i < pclusterpages; ++i) {
601
if (pcl->compressed_bvecs[i].page) {
602
folio = page_folio(pcl->compressed_bvecs[i].page);
603
/* Avoid reclaiming or migrating this folio */
604
if (!folio_trylock(folio))
605
return -EBUSY;
606
607
if (!erofs_folio_is_managed(sbi, folio))
608
continue;
609
pcl->compressed_bvecs[i].page = NULL;
610
folio_detach_private(folio);
611
folio_unlock(folio);
612
}
613
}
614
return 0;
615
}
616
617
static bool z_erofs_cache_release_folio(struct folio *folio, gfp_t gfp)
618
{
619
struct z_erofs_pcluster *pcl = folio_get_private(folio);
620
struct z_erofs_bvec *bvec = pcl->compressed_bvecs;
621
struct z_erofs_bvec *end = bvec + z_erofs_pclusterpages(pcl);
622
bool ret;
623
624
if (!folio_test_private(folio))
625
return true;
626
627
ret = false;
628
spin_lock(&pcl->lockref.lock);
629
if (pcl->lockref.count <= 0) {
630
DBG_BUGON(pcl->from_meta);
631
for (; bvec < end; ++bvec) {
632
if (bvec->page && page_folio(bvec->page) == folio) {
633
bvec->page = NULL;
634
folio_detach_private(folio);
635
ret = true;
636
break;
637
}
638
}
639
}
640
spin_unlock(&pcl->lockref.lock);
641
return ret;
642
}
643
644
/*
645
* It will be called only on inode eviction. In case that there are still some
646
* decompression requests in progress, wait with rescheduling for a bit here.
647
* An extra lock could be introduced instead but it seems unnecessary.
648
*/
649
static void z_erofs_cache_invalidate_folio(struct folio *folio,
650
size_t offset, size_t length)
651
{
652
const size_t stop = length + offset;
653
654
/* Check for potential overflow in debug mode */
655
DBG_BUGON(stop > folio_size(folio) || stop < length);
656
657
if (offset == 0 && stop == folio_size(folio))
658
while (!z_erofs_cache_release_folio(folio, 0))
659
cond_resched();
660
}
661
662
static const struct address_space_operations z_erofs_cache_aops = {
663
.release_folio = z_erofs_cache_release_folio,
664
.invalidate_folio = z_erofs_cache_invalidate_folio,
665
};
666
667
int z_erofs_init_super(struct super_block *sb)
668
{
669
struct inode *inode;
670
int err;
671
672
err = z_erofs_init_pcpu_workers(sb);
673
if (err)
674
return err;
675
676
inode = new_inode(sb);
677
if (!inode)
678
return -ENOMEM;
679
set_nlink(inode, 1);
680
inode->i_size = OFFSET_MAX;
681
inode->i_mapping->a_ops = &z_erofs_cache_aops;
682
mapping_set_gfp_mask(inode->i_mapping, GFP_KERNEL);
683
EROFS_SB(sb)->managed_cache = inode;
684
xa_init(&EROFS_SB(sb)->managed_pslots);
685
return 0;
686
}
687
688
/* callers must be with pcluster lock held */
689
static int z_erofs_attach_page(struct z_erofs_frontend *fe,
690
struct z_erofs_bvec *bvec, bool exclusive)
691
{
692
struct z_erofs_pcluster *pcl = fe->pcl;
693
int ret;
694
695
if (exclusive) {
696
/* Inplace I/O is limited to one page for uncompressed data */
697
if (pcl->algorithmformat < Z_EROFS_COMPRESSION_MAX ||
698
fe->icur <= 1) {
699
/* Try to prioritize inplace I/O here */
700
spin_lock(&pcl->lockref.lock);
701
while (fe->icur > 0) {
702
if (pcl->compressed_bvecs[--fe->icur].page)
703
continue;
704
pcl->compressed_bvecs[fe->icur] = *bvec;
705
spin_unlock(&pcl->lockref.lock);
706
return 0;
707
}
708
spin_unlock(&pcl->lockref.lock);
709
}
710
711
/* otherwise, check if it can be used as a bvpage */
712
if (fe->mode >= Z_EROFS_PCLUSTER_FOLLOWED &&
713
!fe->candidate_bvpage)
714
fe->candidate_bvpage = bvec->page;
715
}
716
ret = z_erofs_bvec_enqueue(&fe->biter, bvec, &fe->candidate_bvpage,
717
&fe->pagepool);
718
fe->pcl->vcnt += (ret >= 0);
719
return ret;
720
}
721
722
static bool z_erofs_get_pcluster(struct z_erofs_pcluster *pcl)
723
{
724
if (lockref_get_not_zero(&pcl->lockref))
725
return true;
726
727
spin_lock(&pcl->lockref.lock);
728
if (__lockref_is_dead(&pcl->lockref)) {
729
spin_unlock(&pcl->lockref.lock);
730
return false;
731
}
732
733
if (!pcl->lockref.count++)
734
atomic_long_dec(&erofs_global_shrink_cnt);
735
spin_unlock(&pcl->lockref.lock);
736
return true;
737
}
738
739
static int z_erofs_register_pcluster(struct z_erofs_frontend *fe)
740
{
741
struct erofs_map_blocks *map = &fe->map;
742
struct super_block *sb = fe->inode->i_sb;
743
struct erofs_sb_info *sbi = EROFS_SB(sb);
744
struct z_erofs_pcluster *pcl, *pre;
745
unsigned int pageofs_in;
746
int err;
747
748
pageofs_in = erofs_blkoff(sb, map->m_pa);
749
pcl = z_erofs_alloc_pcluster(pageofs_in + map->m_plen);
750
if (IS_ERR(pcl))
751
return PTR_ERR(pcl);
752
753
lockref_init(&pcl->lockref); /* one ref for this request */
754
pcl->algorithmformat = map->m_algorithmformat;
755
pcl->pclustersize = map->m_plen;
756
pcl->length = 0;
757
pcl->partial = true;
758
pcl->next = fe->head;
759
pcl->pos = map->m_pa;
760
pcl->pageofs_in = pageofs_in;
761
pcl->pageofs_out = map->m_la & ~PAGE_MASK;
762
pcl->from_meta = map->m_flags & EROFS_MAP_META;
763
fe->mode = Z_EROFS_PCLUSTER_FOLLOWED;
764
765
/*
766
* lock all primary followed works before visible to others
767
* and mutex_trylock *never* fails for a new pcluster.
768
*/
769
mutex_init(&pcl->lock);
770
DBG_BUGON(!mutex_trylock(&pcl->lock));
771
772
if (!pcl->from_meta) {
773
while (1) {
774
xa_lock(&sbi->managed_pslots);
775
pre = __xa_cmpxchg(&sbi->managed_pslots, pcl->pos,
776
NULL, pcl, GFP_KERNEL);
777
if (!pre || xa_is_err(pre) || z_erofs_get_pcluster(pre)) {
778
xa_unlock(&sbi->managed_pslots);
779
break;
780
}
781
/* try to legitimize the current in-tree one */
782
xa_unlock(&sbi->managed_pslots);
783
cond_resched();
784
}
785
if (xa_is_err(pre)) {
786
err = xa_err(pre);
787
goto err_out;
788
} else if (pre) {
789
fe->pcl = pre;
790
err = -EEXIST;
791
goto err_out;
792
}
793
}
794
fe->head = fe->pcl = pcl;
795
return 0;
796
797
err_out:
798
mutex_unlock(&pcl->lock);
799
z_erofs_free_pcluster(pcl);
800
return err;
801
}
802
803
static int z_erofs_pcluster_begin(struct z_erofs_frontend *fe)
804
{
805
struct erofs_map_blocks *map = &fe->map;
806
struct super_block *sb = fe->inode->i_sb;
807
struct z_erofs_pcluster *pcl = NULL;
808
void *ptr;
809
int ret;
810
811
DBG_BUGON(fe->pcl);
812
/* must be Z_EROFS_PCLUSTER_TAIL or pointed to previous pcluster */
813
DBG_BUGON(!fe->head);
814
815
if (!(map->m_flags & EROFS_MAP_META)) {
816
while (1) {
817
rcu_read_lock();
818
pcl = xa_load(&EROFS_SB(sb)->managed_pslots, map->m_pa);
819
if (!pcl || z_erofs_get_pcluster(pcl)) {
820
DBG_BUGON(pcl && map->m_pa != pcl->pos);
821
rcu_read_unlock();
822
break;
823
}
824
rcu_read_unlock();
825
}
826
}
827
828
if (pcl) {
829
fe->pcl = pcl;
830
ret = -EEXIST;
831
} else {
832
ret = z_erofs_register_pcluster(fe);
833
}
834
835
if (ret == -EEXIST) {
836
mutex_lock(&fe->pcl->lock);
837
/* check if this pcluster hasn't been linked into any chain. */
838
if (!cmpxchg(&fe->pcl->next, NULL, fe->head)) {
839
/* .. so it can be attached to our submission chain */
840
fe->head = fe->pcl;
841
fe->mode = Z_EROFS_PCLUSTER_FOLLOWED;
842
} else { /* otherwise, it belongs to an inflight chain */
843
fe->mode = Z_EROFS_PCLUSTER_INFLIGHT;
844
}
845
} else if (ret) {
846
return ret;
847
}
848
849
z_erofs_bvec_iter_begin(&fe->biter, &fe->pcl->bvset,
850
Z_EROFS_INLINE_BVECS, fe->pcl->vcnt);
851
if (!fe->pcl->from_meta) {
852
/* bind cache first when cached decompression is preferred */
853
z_erofs_bind_cache(fe);
854
} else {
855
ret = erofs_init_metabuf(&map->buf, sb,
856
erofs_inode_in_metabox(fe->inode));
857
if (ret)
858
return ret;
859
ptr = erofs_bread(&map->buf, map->m_pa, false);
860
if (IS_ERR(ptr)) {
861
ret = PTR_ERR(ptr);
862
erofs_err(sb, "failed to get inline folio %d", ret);
863
return ret;
864
}
865
folio_get(page_folio(map->buf.page));
866
WRITE_ONCE(fe->pcl->compressed_bvecs[0].page, map->buf.page);
867
fe->pcl->pageofs_in = map->m_pa & ~PAGE_MASK;
868
fe->mode = Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE;
869
}
870
/* file-backed inplace I/O pages are traversed in reverse order */
871
fe->icur = z_erofs_pclusterpages(fe->pcl);
872
return 0;
873
}
874
875
static void z_erofs_rcu_callback(struct rcu_head *head)
876
{
877
z_erofs_free_pcluster(container_of(head, struct z_erofs_pcluster, rcu));
878
}
879
880
static bool __erofs_try_to_release_pcluster(struct erofs_sb_info *sbi,
881
struct z_erofs_pcluster *pcl)
882
{
883
if (pcl->lockref.count)
884
return false;
885
886
/*
887
* Note that all cached folios should be detached before deleted from
888
* the XArray. Otherwise some folios could be still attached to the
889
* orphan old pcluster when the new one is available in the tree.
890
*/
891
if (erofs_try_to_free_all_cached_folios(sbi, pcl))
892
return false;
893
894
/*
895
* It's impossible to fail after the pcluster is freezed, but in order
896
* to avoid some race conditions, add a DBG_BUGON to observe this.
897
*/
898
DBG_BUGON(__xa_erase(&sbi->managed_pslots, pcl->pos) != pcl);
899
900
lockref_mark_dead(&pcl->lockref);
901
return true;
902
}
903
904
static bool erofs_try_to_release_pcluster(struct erofs_sb_info *sbi,
905
struct z_erofs_pcluster *pcl)
906
{
907
bool free;
908
909
spin_lock(&pcl->lockref.lock);
910
free = __erofs_try_to_release_pcluster(sbi, pcl);
911
spin_unlock(&pcl->lockref.lock);
912
if (free) {
913
atomic_long_dec(&erofs_global_shrink_cnt);
914
call_rcu(&pcl->rcu, z_erofs_rcu_callback);
915
}
916
return free;
917
}
918
919
unsigned long z_erofs_shrink_scan(struct erofs_sb_info *sbi, unsigned long nr)
920
{
921
struct z_erofs_pcluster *pcl;
922
unsigned long index, freed = 0;
923
924
xa_lock(&sbi->managed_pslots);
925
xa_for_each(&sbi->managed_pslots, index, pcl) {
926
/* try to shrink each valid pcluster */
927
if (!erofs_try_to_release_pcluster(sbi, pcl))
928
continue;
929
xa_unlock(&sbi->managed_pslots);
930
931
++freed;
932
if (!--nr)
933
return freed;
934
xa_lock(&sbi->managed_pslots);
935
}
936
xa_unlock(&sbi->managed_pslots);
937
return freed;
938
}
939
940
static void z_erofs_put_pcluster(struct erofs_sb_info *sbi,
941
struct z_erofs_pcluster *pcl, bool try_free)
942
{
943
bool free = false;
944
945
if (lockref_put_or_lock(&pcl->lockref))
946
return;
947
948
DBG_BUGON(__lockref_is_dead(&pcl->lockref));
949
if (!--pcl->lockref.count) {
950
if (try_free && xa_trylock(&sbi->managed_pslots)) {
951
free = __erofs_try_to_release_pcluster(sbi, pcl);
952
xa_unlock(&sbi->managed_pslots);
953
}
954
atomic_long_add(!free, &erofs_global_shrink_cnt);
955
}
956
spin_unlock(&pcl->lockref.lock);
957
if (free)
958
call_rcu(&pcl->rcu, z_erofs_rcu_callback);
959
}
960
961
static void z_erofs_pcluster_end(struct z_erofs_frontend *fe)
962
{
963
struct z_erofs_pcluster *pcl = fe->pcl;
964
965
if (!pcl)
966
return;
967
968
z_erofs_bvec_iter_end(&fe->biter);
969
mutex_unlock(&pcl->lock);
970
971
if (fe->candidate_bvpage)
972
fe->candidate_bvpage = NULL;
973
974
/* Drop refcount if it doesn't belong to our processing chain */
975
if (fe->mode < Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE)
976
z_erofs_put_pcluster(EROFS_I_SB(fe->inode), pcl, false);
977
fe->pcl = NULL;
978
}
979
980
static int z_erofs_read_fragment(struct super_block *sb, struct folio *folio,
981
unsigned int cur, unsigned int end, erofs_off_t pos)
982
{
983
struct inode *packed_inode = EROFS_SB(sb)->packed_inode;
984
struct erofs_buf buf = __EROFS_BUF_INITIALIZER;
985
unsigned int cnt;
986
u8 *src;
987
988
if (!packed_inode)
989
return -EFSCORRUPTED;
990
991
buf.mapping = packed_inode->i_mapping;
992
for (; cur < end; cur += cnt, pos += cnt) {
993
cnt = min(end - cur, sb->s_blocksize - erofs_blkoff(sb, pos));
994
src = erofs_bread(&buf, pos, true);
995
if (IS_ERR(src)) {
996
erofs_put_metabuf(&buf);
997
return PTR_ERR(src);
998
}
999
memcpy_to_folio(folio, cur, src, cnt);
1000
}
1001
erofs_put_metabuf(&buf);
1002
return 0;
1003
}
1004
1005
static int z_erofs_scan_folio(struct z_erofs_frontend *f,
1006
struct folio *folio, bool ra)
1007
{
1008
struct inode *const inode = f->inode;
1009
struct erofs_map_blocks *const map = &f->map;
1010
const loff_t offset = folio_pos(folio);
1011
const unsigned int bs = i_blocksize(inode);
1012
unsigned int end = folio_size(folio), split = 0, cur, pgs;
1013
bool tight, excl;
1014
int err = 0;
1015
1016
tight = (bs == PAGE_SIZE);
1017
erofs_onlinefolio_init(folio);
1018
do {
1019
if (offset + end - 1 < map->m_la ||
1020
offset + end - 1 >= map->m_la + map->m_llen) {
1021
z_erofs_pcluster_end(f);
1022
map->m_la = offset + end - 1;
1023
map->m_llen = 0;
1024
err = z_erofs_map_blocks_iter(inode, map, 0);
1025
if (err)
1026
break;
1027
}
1028
1029
cur = offset > map->m_la ? 0 : map->m_la - offset;
1030
pgs = round_down(cur, PAGE_SIZE);
1031
/* bump split parts first to avoid several separate cases */
1032
++split;
1033
1034
if (!(map->m_flags & EROFS_MAP_MAPPED)) {
1035
folio_zero_segment(folio, cur, end);
1036
tight = false;
1037
} else if (map->m_flags & __EROFS_MAP_FRAGMENT) {
1038
erofs_off_t fpos = offset + cur - map->m_la;
1039
1040
err = z_erofs_read_fragment(inode->i_sb, folio, cur,
1041
cur + min(map->m_llen - fpos, end - cur),
1042
EROFS_I(inode)->z_fragmentoff + fpos);
1043
if (err)
1044
break;
1045
tight = false;
1046
} else {
1047
if (!f->pcl) {
1048
err = z_erofs_pcluster_begin(f);
1049
if (err)
1050
break;
1051
f->pcl->besteffort |= !ra;
1052
}
1053
1054
pgs = round_down(end - 1, PAGE_SIZE);
1055
/*
1056
* Ensure this partial page belongs to this submit chain
1057
* rather than other concurrent submit chains or
1058
* noio(bypass) chains since those chains are handled
1059
* asynchronously thus it cannot be used for inplace I/O
1060
* or bvpage (should be processed in the strict order.)
1061
*/
1062
tight &= (f->mode >= Z_EROFS_PCLUSTER_FOLLOWED);
1063
excl = false;
1064
if (cur <= pgs) {
1065
excl = (split <= 1) || tight;
1066
cur = pgs;
1067
}
1068
1069
err = z_erofs_attach_page(f, &((struct z_erofs_bvec) {
1070
.page = folio_page(folio, pgs >> PAGE_SHIFT),
1071
.offset = offset + pgs - map->m_la,
1072
.end = end - pgs, }), excl);
1073
if (err)
1074
break;
1075
1076
erofs_onlinefolio_split(folio);
1077
if (f->pcl->length < offset + end - map->m_la) {
1078
f->pcl->length = offset + end - map->m_la;
1079
f->pcl->pageofs_out = map->m_la & ~PAGE_MASK;
1080
}
1081
if ((map->m_flags & EROFS_MAP_FULL_MAPPED) &&
1082
!(map->m_flags & EROFS_MAP_PARTIAL_REF) &&
1083
f->pcl->length == map->m_llen)
1084
f->pcl->partial = false;
1085
}
1086
/* shorten the remaining extent to update progress */
1087
map->m_llen = offset + cur - map->m_la;
1088
map->m_flags &= ~EROFS_MAP_FULL_MAPPED;
1089
if (cur <= pgs) {
1090
split = cur < pgs;
1091
tight = (bs == PAGE_SIZE);
1092
}
1093
} while ((end = cur) > 0);
1094
erofs_onlinefolio_end(folio, err, false);
1095
return err;
1096
}
1097
1098
static bool z_erofs_is_sync_decompress(struct erofs_sb_info *sbi,
1099
unsigned int readahead_pages)
1100
{
1101
/* auto: enable for read_folio, disable for readahead */
1102
if ((sbi->opt.sync_decompress == EROFS_SYNC_DECOMPRESS_AUTO) &&
1103
!readahead_pages)
1104
return true;
1105
1106
if ((sbi->opt.sync_decompress == EROFS_SYNC_DECOMPRESS_FORCE_ON) &&
1107
(readahead_pages <= sbi->opt.max_sync_decompress_pages))
1108
return true;
1109
1110
return false;
1111
}
1112
1113
static bool z_erofs_page_is_invalidated(struct page *page)
1114
{
1115
return !page_folio(page)->mapping && !z_erofs_is_shortlived_page(page);
1116
}
1117
1118
struct z_erofs_backend {
1119
struct page *onstack_pages[Z_EROFS_ONSTACK_PAGES];
1120
struct super_block *sb;
1121
struct z_erofs_pcluster *pcl;
1122
/* pages with the longest decompressed length for deduplication */
1123
struct page **decompressed_pages;
1124
/* pages to keep the compressed data */
1125
struct page **compressed_pages;
1126
1127
struct list_head decompressed_secondary_bvecs;
1128
struct page **pagepool;
1129
unsigned int onstack_used, nr_pages;
1130
/* indicate if temporary copies should be preserved for later use */
1131
bool keepxcpy;
1132
};
1133
1134
struct z_erofs_bvec_item {
1135
struct z_erofs_bvec bvec;
1136
struct list_head list;
1137
};
1138
1139
static void z_erofs_do_decompressed_bvec(struct z_erofs_backend *be,
1140
struct z_erofs_bvec *bvec)
1141
{
1142
int poff = bvec->offset + be->pcl->pageofs_out;
1143
struct z_erofs_bvec_item *item;
1144
struct page **page;
1145
1146
if (!(poff & ~PAGE_MASK) && (bvec->end == PAGE_SIZE ||
1147
bvec->offset + bvec->end == be->pcl->length)) {
1148
DBG_BUGON((poff >> PAGE_SHIFT) >= be->nr_pages);
1149
page = be->decompressed_pages + (poff >> PAGE_SHIFT);
1150
if (!*page) {
1151
*page = bvec->page;
1152
return;
1153
}
1154
} else {
1155
be->keepxcpy = true;
1156
}
1157
1158
/* (cold path) one pcluster is requested multiple times */
1159
item = kmalloc(sizeof(*item), GFP_KERNEL | __GFP_NOFAIL);
1160
item->bvec = *bvec;
1161
list_add(&item->list, &be->decompressed_secondary_bvecs);
1162
}
1163
1164
static void z_erofs_fill_other_copies(struct z_erofs_backend *be, int err)
1165
{
1166
unsigned int off0 = be->pcl->pageofs_out;
1167
struct list_head *p, *n;
1168
1169
list_for_each_safe(p, n, &be->decompressed_secondary_bvecs) {
1170
struct z_erofs_bvec_item *bvi;
1171
unsigned int end, cur;
1172
void *dst, *src;
1173
1174
bvi = container_of(p, struct z_erofs_bvec_item, list);
1175
cur = bvi->bvec.offset < 0 ? -bvi->bvec.offset : 0;
1176
end = min_t(unsigned int, be->pcl->length - bvi->bvec.offset,
1177
bvi->bvec.end);
1178
dst = kmap_local_page(bvi->bvec.page);
1179
while (cur < end) {
1180
unsigned int pgnr, scur, len;
1181
1182
pgnr = (bvi->bvec.offset + cur + off0) >> PAGE_SHIFT;
1183
DBG_BUGON(pgnr >= be->nr_pages);
1184
1185
scur = bvi->bvec.offset + cur -
1186
((pgnr << PAGE_SHIFT) - off0);
1187
len = min_t(unsigned int, end - cur, PAGE_SIZE - scur);
1188
if (!be->decompressed_pages[pgnr]) {
1189
err = -EFSCORRUPTED;
1190
cur += len;
1191
continue;
1192
}
1193
src = kmap_local_page(be->decompressed_pages[pgnr]);
1194
memcpy(dst + cur, src + scur, len);
1195
kunmap_local(src);
1196
cur += len;
1197
}
1198
kunmap_local(dst);
1199
erofs_onlinefolio_end(page_folio(bvi->bvec.page), err, true);
1200
list_del(p);
1201
kfree(bvi);
1202
}
1203
}
1204
1205
static void z_erofs_parse_out_bvecs(struct z_erofs_backend *be)
1206
{
1207
struct z_erofs_pcluster *pcl = be->pcl;
1208
struct z_erofs_bvec_iter biter;
1209
struct page *old_bvpage;
1210
int i;
1211
1212
z_erofs_bvec_iter_begin(&biter, &pcl->bvset, Z_EROFS_INLINE_BVECS, 0);
1213
for (i = 0; i < pcl->vcnt; ++i) {
1214
struct z_erofs_bvec bvec;
1215
1216
z_erofs_bvec_dequeue(&biter, &bvec, &old_bvpage);
1217
1218
if (old_bvpage)
1219
z_erofs_put_shortlivedpage(be->pagepool, old_bvpage);
1220
1221
DBG_BUGON(z_erofs_page_is_invalidated(bvec.page));
1222
z_erofs_do_decompressed_bvec(be, &bvec);
1223
}
1224
1225
old_bvpage = z_erofs_bvec_iter_end(&biter);
1226
if (old_bvpage)
1227
z_erofs_put_shortlivedpage(be->pagepool, old_bvpage);
1228
}
1229
1230
static int z_erofs_parse_in_bvecs(struct z_erofs_backend *be, bool *overlapped)
1231
{
1232
struct z_erofs_pcluster *pcl = be->pcl;
1233
unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
1234
int i, err = 0;
1235
1236
*overlapped = false;
1237
for (i = 0; i < pclusterpages; ++i) {
1238
struct z_erofs_bvec *bvec = &pcl->compressed_bvecs[i];
1239
struct page *page = bvec->page;
1240
1241
/* compressed data ought to be valid when decompressing */
1242
if (IS_ERR(page) || !page) {
1243
bvec->page = NULL; /* clear the failure reason */
1244
err = page ? PTR_ERR(page) : -EIO;
1245
continue;
1246
}
1247
be->compressed_pages[i] = page;
1248
1249
if (pcl->from_meta ||
1250
erofs_folio_is_managed(EROFS_SB(be->sb), page_folio(page))) {
1251
if (!PageUptodate(page))
1252
err = -EIO;
1253
continue;
1254
}
1255
1256
DBG_BUGON(z_erofs_page_is_invalidated(page));
1257
if (z_erofs_is_shortlived_page(page))
1258
continue;
1259
z_erofs_do_decompressed_bvec(be, bvec);
1260
*overlapped = true;
1261
}
1262
return err;
1263
}
1264
1265
static int z_erofs_decompress_pcluster(struct z_erofs_backend *be, int err)
1266
{
1267
struct erofs_sb_info *const sbi = EROFS_SB(be->sb);
1268
struct z_erofs_pcluster *pcl = be->pcl;
1269
unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
1270
const struct z_erofs_decompressor *decomp =
1271
z_erofs_decomp[pcl->algorithmformat];
1272
int i, j, jtop, err2;
1273
struct page *page;
1274
bool overlapped;
1275
bool try_free = true;
1276
1277
mutex_lock(&pcl->lock);
1278
be->nr_pages = PAGE_ALIGN(pcl->length + pcl->pageofs_out) >> PAGE_SHIFT;
1279
1280
/* allocate (de)compressed page arrays if cannot be kept on stack */
1281
be->decompressed_pages = NULL;
1282
be->compressed_pages = NULL;
1283
be->onstack_used = 0;
1284
if (be->nr_pages <= Z_EROFS_ONSTACK_PAGES) {
1285
be->decompressed_pages = be->onstack_pages;
1286
be->onstack_used = be->nr_pages;
1287
memset(be->decompressed_pages, 0,
1288
sizeof(struct page *) * be->nr_pages);
1289
}
1290
1291
if (pclusterpages + be->onstack_used <= Z_EROFS_ONSTACK_PAGES)
1292
be->compressed_pages = be->onstack_pages + be->onstack_used;
1293
1294
if (!be->decompressed_pages)
1295
be->decompressed_pages =
1296
kvcalloc(be->nr_pages, sizeof(struct page *),
1297
GFP_KERNEL | __GFP_NOFAIL);
1298
if (!be->compressed_pages)
1299
be->compressed_pages =
1300
kvcalloc(pclusterpages, sizeof(struct page *),
1301
GFP_KERNEL | __GFP_NOFAIL);
1302
1303
z_erofs_parse_out_bvecs(be);
1304
err2 = z_erofs_parse_in_bvecs(be, &overlapped);
1305
if (err2)
1306
err = err2;
1307
if (!err)
1308
err = decomp->decompress(&(struct z_erofs_decompress_req) {
1309
.sb = be->sb,
1310
.in = be->compressed_pages,
1311
.out = be->decompressed_pages,
1312
.inpages = pclusterpages,
1313
.outpages = be->nr_pages,
1314
.pageofs_in = pcl->pageofs_in,
1315
.pageofs_out = pcl->pageofs_out,
1316
.inputsize = pcl->pclustersize,
1317
.outputsize = pcl->length,
1318
.alg = pcl->algorithmformat,
1319
.inplace_io = overlapped,
1320
.partial_decoding = pcl->partial,
1321
.fillgaps = be->keepxcpy,
1322
.gfp = pcl->besteffort ? GFP_KERNEL :
1323
GFP_NOWAIT | __GFP_NORETRY
1324
}, be->pagepool);
1325
1326
/* must handle all compressed pages before actual file pages */
1327
if (pcl->from_meta) {
1328
folio_put(page_folio(pcl->compressed_bvecs[0].page));
1329
WRITE_ONCE(pcl->compressed_bvecs[0].page, NULL);
1330
} else {
1331
/* managed folios are still left in compressed_bvecs[] */
1332
for (i = 0; i < pclusterpages; ++i) {
1333
page = be->compressed_pages[i];
1334
if (!page)
1335
continue;
1336
if (erofs_folio_is_managed(sbi, page_folio(page))) {
1337
try_free = false;
1338
continue;
1339
}
1340
(void)z_erofs_put_shortlivedpage(be->pagepool, page);
1341
WRITE_ONCE(pcl->compressed_bvecs[i].page, NULL);
1342
}
1343
}
1344
if (be->compressed_pages < be->onstack_pages ||
1345
be->compressed_pages >= be->onstack_pages + Z_EROFS_ONSTACK_PAGES)
1346
kvfree(be->compressed_pages);
1347
1348
jtop = 0;
1349
z_erofs_fill_other_copies(be, err);
1350
for (i = 0; i < be->nr_pages; ++i) {
1351
page = be->decompressed_pages[i];
1352
if (!page)
1353
continue;
1354
1355
DBG_BUGON(z_erofs_page_is_invalidated(page));
1356
if (!z_erofs_is_shortlived_page(page)) {
1357
erofs_onlinefolio_end(page_folio(page), err, true);
1358
continue;
1359
}
1360
if (pcl->algorithmformat != Z_EROFS_COMPRESSION_LZ4) {
1361
erofs_pagepool_add(be->pagepool, page);
1362
continue;
1363
}
1364
for (j = 0; j < jtop && be->decompressed_pages[j] != page; ++j)
1365
;
1366
if (j >= jtop) /* this bounce page is newly detected */
1367
be->decompressed_pages[jtop++] = page;
1368
}
1369
while (jtop)
1370
erofs_pagepool_add(be->pagepool,
1371
be->decompressed_pages[--jtop]);
1372
if (be->decompressed_pages != be->onstack_pages)
1373
kvfree(be->decompressed_pages);
1374
1375
pcl->length = 0;
1376
pcl->partial = true;
1377
pcl->besteffort = false;
1378
pcl->bvset.nextpage = NULL;
1379
pcl->vcnt = 0;
1380
1381
/* pcluster lock MUST be taken before the following line */
1382
WRITE_ONCE(pcl->next, NULL);
1383
mutex_unlock(&pcl->lock);
1384
1385
if (pcl->from_meta)
1386
z_erofs_free_pcluster(pcl);
1387
else
1388
z_erofs_put_pcluster(sbi, pcl, try_free);
1389
return err;
1390
}
1391
1392
static int z_erofs_decompress_queue(const struct z_erofs_decompressqueue *io,
1393
struct page **pagepool)
1394
{
1395
struct z_erofs_backend be = {
1396
.sb = io->sb,
1397
.pagepool = pagepool,
1398
.decompressed_secondary_bvecs =
1399
LIST_HEAD_INIT(be.decompressed_secondary_bvecs),
1400
.pcl = io->head,
1401
};
1402
struct z_erofs_pcluster *next;
1403
int err = io->eio ? -EIO : 0;
1404
1405
for (; be.pcl != Z_EROFS_PCLUSTER_TAIL; be.pcl = next) {
1406
DBG_BUGON(!be.pcl);
1407
next = READ_ONCE(be.pcl->next);
1408
err = z_erofs_decompress_pcluster(&be, err) ?: err;
1409
}
1410
return err;
1411
}
1412
1413
static void z_erofs_decompressqueue_work(struct work_struct *work)
1414
{
1415
struct z_erofs_decompressqueue *bgq =
1416
container_of(work, struct z_erofs_decompressqueue, u.work);
1417
struct page *pagepool = NULL;
1418
1419
DBG_BUGON(bgq->head == Z_EROFS_PCLUSTER_TAIL);
1420
z_erofs_decompress_queue(bgq, &pagepool);
1421
erofs_release_pages(&pagepool);
1422
kvfree(bgq);
1423
}
1424
1425
#ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
1426
static void z_erofs_decompressqueue_kthread_work(struct kthread_work *work)
1427
{
1428
z_erofs_decompressqueue_work((struct work_struct *)work);
1429
}
1430
#endif
1431
1432
/* Use (kthread_)work in atomic contexts to minimize scheduling overhead */
1433
static inline bool z_erofs_in_atomic(void)
1434
{
1435
if (IS_ENABLED(CONFIG_PREEMPTION) && rcu_preempt_depth())
1436
return true;
1437
if (!IS_ENABLED(CONFIG_PREEMPT_COUNT))
1438
return true;
1439
return !preemptible();
1440
}
1441
1442
static void z_erofs_decompress_kickoff(struct z_erofs_decompressqueue *io,
1443
int bios)
1444
{
1445
struct erofs_sb_info *const sbi = EROFS_SB(io->sb);
1446
1447
/* wake up the caller thread for sync decompression */
1448
if (io->sync) {
1449
if (!atomic_add_return(bios, &io->pending_bios))
1450
complete(&io->u.done);
1451
return;
1452
}
1453
1454
if (atomic_add_return(bios, &io->pending_bios))
1455
return;
1456
if (z_erofs_in_atomic()) {
1457
#ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
1458
struct kthread_worker *worker;
1459
1460
rcu_read_lock();
1461
worker = rcu_dereference(
1462
z_erofs_pcpu_workers[raw_smp_processor_id()]);
1463
if (!worker) {
1464
INIT_WORK(&io->u.work, z_erofs_decompressqueue_work);
1465
queue_work(z_erofs_workqueue, &io->u.work);
1466
} else {
1467
kthread_queue_work(worker, &io->u.kthread_work);
1468
}
1469
rcu_read_unlock();
1470
#else
1471
queue_work(z_erofs_workqueue, &io->u.work);
1472
#endif
1473
/* enable sync decompression for readahead */
1474
if (sbi->opt.sync_decompress == EROFS_SYNC_DECOMPRESS_AUTO)
1475
sbi->opt.sync_decompress = EROFS_SYNC_DECOMPRESS_FORCE_ON;
1476
return;
1477
}
1478
z_erofs_decompressqueue_work(&io->u.work);
1479
}
1480
1481
static void z_erofs_fill_bio_vec(struct bio_vec *bvec,
1482
struct z_erofs_frontend *f,
1483
struct z_erofs_pcluster *pcl,
1484
unsigned int nr,
1485
struct address_space *mc)
1486
{
1487
gfp_t gfp = mapping_gfp_mask(mc);
1488
bool tocache = false;
1489
struct z_erofs_bvec zbv;
1490
struct address_space *mapping;
1491
struct folio *folio;
1492
struct page *page;
1493
int bs = i_blocksize(f->inode);
1494
1495
/* Except for inplace folios, the entire folio can be used for I/Os */
1496
bvec->bv_offset = 0;
1497
bvec->bv_len = PAGE_SIZE;
1498
repeat:
1499
spin_lock(&pcl->lockref.lock);
1500
zbv = pcl->compressed_bvecs[nr];
1501
spin_unlock(&pcl->lockref.lock);
1502
if (!zbv.page)
1503
goto out_allocfolio;
1504
1505
bvec->bv_page = zbv.page;
1506
DBG_BUGON(z_erofs_is_shortlived_page(bvec->bv_page));
1507
1508
folio = page_folio(zbv.page);
1509
/* For preallocated managed folios, add them to page cache here */
1510
if (folio->private == Z_EROFS_PREALLOCATED_FOLIO) {
1511
tocache = true;
1512
goto out_tocache;
1513
}
1514
1515
mapping = READ_ONCE(folio->mapping);
1516
/*
1517
* File-backed folios for inplace I/Os are all locked steady,
1518
* therefore it is impossible for `mapping` to be NULL.
1519
*/
1520
if (mapping && mapping != mc) {
1521
if (zbv.offset < 0)
1522
bvec->bv_offset = round_up(-zbv.offset, bs);
1523
bvec->bv_len = round_up(zbv.end, bs) - bvec->bv_offset;
1524
return;
1525
}
1526
1527
folio_lock(folio);
1528
if (likely(folio->mapping == mc)) {
1529
/*
1530
* The cached folio is still in managed cache but without
1531
* a valid `->private` pcluster hint. Let's reconnect them.
1532
*/
1533
if (!folio_test_private(folio)) {
1534
folio_attach_private(folio, pcl);
1535
/* compressed_bvecs[] already takes a ref before */
1536
folio_put(folio);
1537
}
1538
if (likely(folio->private == pcl)) {
1539
/* don't submit cache I/Os again if already uptodate */
1540
if (folio_test_uptodate(folio)) {
1541
folio_unlock(folio);
1542
bvec->bv_page = NULL;
1543
}
1544
return;
1545
}
1546
/*
1547
* Already linked with another pcluster, which only appears in
1548
* crafted images by fuzzers for now. But handle this anyway.
1549
*/
1550
tocache = false; /* use temporary short-lived pages */
1551
} else {
1552
DBG_BUGON(1); /* referenced managed folios can't be truncated */
1553
tocache = true;
1554
}
1555
folio_unlock(folio);
1556
folio_put(folio);
1557
out_allocfolio:
1558
page = __erofs_allocpage(&f->pagepool, gfp, true);
1559
spin_lock(&pcl->lockref.lock);
1560
if (unlikely(pcl->compressed_bvecs[nr].page != zbv.page)) {
1561
if (page)
1562
erofs_pagepool_add(&f->pagepool, page);
1563
spin_unlock(&pcl->lockref.lock);
1564
cond_resched();
1565
goto repeat;
1566
}
1567
pcl->compressed_bvecs[nr].page = page ? page : ERR_PTR(-ENOMEM);
1568
spin_unlock(&pcl->lockref.lock);
1569
bvec->bv_page = page;
1570
if (!page)
1571
return;
1572
folio = page_folio(page);
1573
out_tocache:
1574
if (!tocache || bs != PAGE_SIZE ||
1575
filemap_add_folio(mc, folio, (pcl->pos >> PAGE_SHIFT) + nr, gfp)) {
1576
/* turn into a temporary shortlived folio (1 ref) */
1577
folio->private = (void *)Z_EROFS_SHORTLIVED_PAGE;
1578
return;
1579
}
1580
folio_attach_private(folio, pcl);
1581
/* drop a refcount added by allocpage (then 2 refs in total here) */
1582
folio_put(folio);
1583
}
1584
1585
static struct z_erofs_decompressqueue *jobqueue_init(struct super_block *sb,
1586
struct z_erofs_decompressqueue *fgq, bool *fg)
1587
{
1588
struct z_erofs_decompressqueue *q;
1589
1590
if (fg && !*fg) {
1591
q = kvzalloc(sizeof(*q), GFP_KERNEL | __GFP_NOWARN);
1592
if (!q) {
1593
*fg = true;
1594
goto fg_out;
1595
}
1596
#ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
1597
kthread_init_work(&q->u.kthread_work,
1598
z_erofs_decompressqueue_kthread_work);
1599
#else
1600
INIT_WORK(&q->u.work, z_erofs_decompressqueue_work);
1601
#endif
1602
} else {
1603
fg_out:
1604
q = fgq;
1605
init_completion(&fgq->u.done);
1606
atomic_set(&fgq->pending_bios, 0);
1607
q->eio = false;
1608
q->sync = true;
1609
}
1610
q->sb = sb;
1611
q->head = Z_EROFS_PCLUSTER_TAIL;
1612
return q;
1613
}
1614
1615
/* define decompression jobqueue types */
1616
enum {
1617
JQ_BYPASS,
1618
JQ_SUBMIT,
1619
NR_JOBQUEUES,
1620
};
1621
1622
static void z_erofs_move_to_bypass_queue(struct z_erofs_pcluster *pcl,
1623
struct z_erofs_pcluster *next,
1624
struct z_erofs_pcluster **qtail[])
1625
{
1626
WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_TAIL);
1627
WRITE_ONCE(*qtail[JQ_SUBMIT], next);
1628
WRITE_ONCE(*qtail[JQ_BYPASS], pcl);
1629
qtail[JQ_BYPASS] = &pcl->next;
1630
}
1631
1632
static void z_erofs_endio(struct bio *bio)
1633
{
1634
struct z_erofs_decompressqueue *q = bio->bi_private;
1635
blk_status_t err = bio->bi_status;
1636
struct folio_iter fi;
1637
1638
bio_for_each_folio_all(fi, bio) {
1639
struct folio *folio = fi.folio;
1640
1641
DBG_BUGON(folio_test_uptodate(folio));
1642
DBG_BUGON(z_erofs_page_is_invalidated(&folio->page));
1643
if (!erofs_folio_is_managed(EROFS_SB(q->sb), folio))
1644
continue;
1645
1646
if (!err)
1647
folio_mark_uptodate(folio);
1648
folio_unlock(folio);
1649
}
1650
if (err)
1651
q->eio = true;
1652
z_erofs_decompress_kickoff(q, -1);
1653
if (bio->bi_bdev)
1654
bio_put(bio);
1655
}
1656
1657
static void z_erofs_submit_queue(struct z_erofs_frontend *f,
1658
struct z_erofs_decompressqueue *fgq,
1659
bool *force_fg, bool readahead)
1660
{
1661
struct super_block *sb = f->inode->i_sb;
1662
struct address_space *mc = MNGD_MAPPING(EROFS_SB(sb));
1663
struct z_erofs_pcluster **qtail[NR_JOBQUEUES];
1664
struct z_erofs_decompressqueue *q[NR_JOBQUEUES];
1665
struct z_erofs_pcluster *pcl, *next;
1666
/* bio is NULL initially, so no need to initialize last_{index,bdev} */
1667
erofs_off_t last_pa;
1668
unsigned int nr_bios = 0;
1669
struct bio *bio = NULL;
1670
unsigned long pflags;
1671
int memstall = 0;
1672
1673
/* No need to read from device for pclusters in the bypass queue. */
1674
q[JQ_BYPASS] = jobqueue_init(sb, fgq + JQ_BYPASS, NULL);
1675
q[JQ_SUBMIT] = jobqueue_init(sb, fgq + JQ_SUBMIT, force_fg);
1676
1677
qtail[JQ_BYPASS] = &q[JQ_BYPASS]->head;
1678
qtail[JQ_SUBMIT] = &q[JQ_SUBMIT]->head;
1679
1680
/* by default, all need io submission */
1681
q[JQ_SUBMIT]->head = next = f->head;
1682
1683
do {
1684
struct erofs_map_dev mdev;
1685
erofs_off_t cur, end;
1686
struct bio_vec bvec;
1687
unsigned int i = 0;
1688
bool bypass = true;
1689
1690
pcl = next;
1691
next = READ_ONCE(pcl->next);
1692
if (pcl->from_meta) {
1693
z_erofs_move_to_bypass_queue(pcl, next, qtail);
1694
continue;
1695
}
1696
1697
/* no device id here, thus it will always succeed */
1698
mdev = (struct erofs_map_dev) {
1699
.m_pa = round_down(pcl->pos, sb->s_blocksize),
1700
};
1701
(void)erofs_map_dev(sb, &mdev);
1702
1703
cur = mdev.m_pa;
1704
end = round_up(cur + pcl->pageofs_in + pcl->pclustersize,
1705
sb->s_blocksize);
1706
do {
1707
bvec.bv_page = NULL;
1708
if (bio && (cur != last_pa ||
1709
bio->bi_bdev != mdev.m_bdev)) {
1710
drain_io:
1711
if (erofs_is_fileio_mode(EROFS_SB(sb)))
1712
erofs_fileio_submit_bio(bio);
1713
else if (erofs_is_fscache_mode(sb))
1714
erofs_fscache_submit_bio(bio);
1715
else
1716
submit_bio(bio);
1717
1718
if (memstall) {
1719
psi_memstall_leave(&pflags);
1720
memstall = 0;
1721
}
1722
bio = NULL;
1723
}
1724
1725
if (!bvec.bv_page) {
1726
z_erofs_fill_bio_vec(&bvec, f, pcl, i++, mc);
1727
if (!bvec.bv_page)
1728
continue;
1729
if (cur + bvec.bv_len > end)
1730
bvec.bv_len = end - cur;
1731
DBG_BUGON(bvec.bv_len < sb->s_blocksize);
1732
}
1733
1734
if (unlikely(PageWorkingset(bvec.bv_page)) &&
1735
!memstall) {
1736
psi_memstall_enter(&pflags);
1737
memstall = 1;
1738
}
1739
1740
if (!bio) {
1741
if (erofs_is_fileio_mode(EROFS_SB(sb)))
1742
bio = erofs_fileio_bio_alloc(&mdev);
1743
else if (erofs_is_fscache_mode(sb))
1744
bio = erofs_fscache_bio_alloc(&mdev);
1745
else
1746
bio = bio_alloc(mdev.m_bdev, BIO_MAX_VECS,
1747
REQ_OP_READ, GFP_NOIO);
1748
bio->bi_end_io = z_erofs_endio;
1749
bio->bi_iter.bi_sector =
1750
(mdev.m_dif->fsoff + cur) >> 9;
1751
bio->bi_private = q[JQ_SUBMIT];
1752
if (readahead)
1753
bio->bi_opf |= REQ_RAHEAD;
1754
++nr_bios;
1755
}
1756
1757
if (!bio_add_page(bio, bvec.bv_page, bvec.bv_len,
1758
bvec.bv_offset))
1759
goto drain_io;
1760
last_pa = cur + bvec.bv_len;
1761
bypass = false;
1762
} while ((cur += bvec.bv_len) < end);
1763
1764
if (!bypass)
1765
qtail[JQ_SUBMIT] = &pcl->next;
1766
else
1767
z_erofs_move_to_bypass_queue(pcl, next, qtail);
1768
} while (next != Z_EROFS_PCLUSTER_TAIL);
1769
1770
if (bio) {
1771
if (erofs_is_fileio_mode(EROFS_SB(sb)))
1772
erofs_fileio_submit_bio(bio);
1773
else if (erofs_is_fscache_mode(sb))
1774
erofs_fscache_submit_bio(bio);
1775
else
1776
submit_bio(bio);
1777
}
1778
if (memstall)
1779
psi_memstall_leave(&pflags);
1780
1781
/*
1782
* although background is preferred, no one is pending for submission.
1783
* don't issue decompression but drop it directly instead.
1784
*/
1785
if (!*force_fg && !nr_bios) {
1786
kvfree(q[JQ_SUBMIT]);
1787
return;
1788
}
1789
z_erofs_decompress_kickoff(q[JQ_SUBMIT], nr_bios);
1790
}
1791
1792
static int z_erofs_runqueue(struct z_erofs_frontend *f, unsigned int rapages)
1793
{
1794
struct z_erofs_decompressqueue io[NR_JOBQUEUES];
1795
struct erofs_sb_info *sbi = EROFS_I_SB(f->inode);
1796
bool force_fg = z_erofs_is_sync_decompress(sbi, rapages);
1797
int err;
1798
1799
if (f->head == Z_EROFS_PCLUSTER_TAIL)
1800
return 0;
1801
z_erofs_submit_queue(f, io, &force_fg, !!rapages);
1802
1803
/* handle bypass queue (no i/o pclusters) immediately */
1804
err = z_erofs_decompress_queue(&io[JQ_BYPASS], &f->pagepool);
1805
if (!force_fg)
1806
return err;
1807
1808
/* wait until all bios are completed */
1809
wait_for_completion_io(&io[JQ_SUBMIT].u.done);
1810
1811
/* handle synchronous decompress queue in the caller context */
1812
return z_erofs_decompress_queue(&io[JQ_SUBMIT], &f->pagepool) ?: err;
1813
}
1814
1815
/*
1816
* Since partial uptodate is still unimplemented for now, we have to use
1817
* approximate readmore strategies as a start.
1818
*/
1819
static void z_erofs_pcluster_readmore(struct z_erofs_frontend *f,
1820
struct readahead_control *rac, bool backmost)
1821
{
1822
struct inode *inode = f->inode;
1823
struct erofs_map_blocks *map = &f->map;
1824
erofs_off_t cur, end, headoffset = f->headoffset;
1825
int err;
1826
1827
if (backmost) {
1828
if (rac)
1829
end = headoffset + readahead_length(rac) - 1;
1830
else
1831
end = headoffset + PAGE_SIZE - 1;
1832
map->m_la = end;
1833
err = z_erofs_map_blocks_iter(inode, map,
1834
EROFS_GET_BLOCKS_READMORE);
1835
if (err || !(map->m_flags & EROFS_MAP_ENCODED))
1836
return;
1837
1838
/* expand ra for the trailing edge if readahead */
1839
if (rac) {
1840
cur = round_up(map->m_la + map->m_llen, PAGE_SIZE);
1841
readahead_expand(rac, headoffset, cur - headoffset);
1842
return;
1843
}
1844
end = round_up(end, PAGE_SIZE);
1845
} else {
1846
end = round_up(map->m_la, PAGE_SIZE);
1847
if (!(map->m_flags & EROFS_MAP_ENCODED) || !map->m_llen)
1848
return;
1849
}
1850
1851
cur = map->m_la + map->m_llen - 1;
1852
while ((cur >= end) && (cur < i_size_read(inode))) {
1853
pgoff_t index = cur >> PAGE_SHIFT;
1854
struct folio *folio;
1855
1856
folio = erofs_grab_folio_nowait(inode->i_mapping, index);
1857
if (!IS_ERR_OR_NULL(folio)) {
1858
if (folio_test_uptodate(folio))
1859
folio_unlock(folio);
1860
else
1861
z_erofs_scan_folio(f, folio, !!rac);
1862
folio_put(folio);
1863
}
1864
1865
if (cur < PAGE_SIZE)
1866
break;
1867
cur = (index << PAGE_SHIFT) - 1;
1868
}
1869
}
1870
1871
static int z_erofs_read_folio(struct file *file, struct folio *folio)
1872
{
1873
struct inode *const inode = folio->mapping->host;
1874
Z_EROFS_DEFINE_FRONTEND(f, inode, folio_pos(folio));
1875
int err;
1876
1877
trace_erofs_read_folio(folio, false);
1878
z_erofs_pcluster_readmore(&f, NULL, true);
1879
err = z_erofs_scan_folio(&f, folio, false);
1880
z_erofs_pcluster_readmore(&f, NULL, false);
1881
z_erofs_pcluster_end(&f);
1882
1883
/* if some pclusters are ready, need submit them anyway */
1884
err = z_erofs_runqueue(&f, 0) ?: err;
1885
if (err && err != -EINTR)
1886
erofs_err(inode->i_sb, "read error %d @ %lu of nid %llu",
1887
err, folio->index, EROFS_I(inode)->nid);
1888
1889
erofs_put_metabuf(&f.map.buf);
1890
erofs_release_pages(&f.pagepool);
1891
return err;
1892
}
1893
1894
static void z_erofs_readahead(struct readahead_control *rac)
1895
{
1896
struct inode *const inode = rac->mapping->host;
1897
Z_EROFS_DEFINE_FRONTEND(f, inode, readahead_pos(rac));
1898
unsigned int nrpages = readahead_count(rac);
1899
struct folio *head = NULL, *folio;
1900
int err;
1901
1902
trace_erofs_readahead(inode, readahead_index(rac), nrpages, false);
1903
z_erofs_pcluster_readmore(&f, rac, true);
1904
while ((folio = readahead_folio(rac))) {
1905
folio->private = head;
1906
head = folio;
1907
}
1908
1909
/* traverse in reverse order for best metadata I/O performance */
1910
while (head) {
1911
folio = head;
1912
head = folio_get_private(folio);
1913
1914
err = z_erofs_scan_folio(&f, folio, true);
1915
if (err && err != -EINTR)
1916
erofs_err(inode->i_sb, "readahead error at folio %lu @ nid %llu",
1917
folio->index, EROFS_I(inode)->nid);
1918
}
1919
z_erofs_pcluster_readmore(&f, rac, false);
1920
z_erofs_pcluster_end(&f);
1921
1922
(void)z_erofs_runqueue(&f, nrpages);
1923
erofs_put_metabuf(&f.map.buf);
1924
erofs_release_pages(&f.pagepool);
1925
}
1926
1927
const struct address_space_operations z_erofs_aops = {
1928
.read_folio = z_erofs_read_folio,
1929
.readahead = z_erofs_readahead,
1930
};
1931
1932