xref: /openbmc/linux/fs/f2fs/compress.c (revision b368cc5e26341113453e7458f03cdfe0eeb84a40)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * f2fs compress support
4  *
5  * Copyright (c) 2019 Chao Yu <chao@kernel.org>
6  */
7 
8 #include <linux/fs.h>
9 #include <linux/f2fs_fs.h>
10 #include <linux/writeback.h>
11 #include <linux/backing-dev.h>
12 #include <linux/lzo.h>
13 #include <linux/lz4.h>
14 #include <linux/zstd.h>
15 #include <linux/pagevec.h>
16 
17 #include "f2fs.h"
18 #include "node.h"
19 #include "segment.h"
20 #include <trace/events/f2fs.h>
21 
22 static struct kmem_cache *cic_entry_slab;
23 static struct kmem_cache *dic_entry_slab;
24 
25 static void *page_array_alloc(struct inode *inode, int nr)
26 {
27 	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
28 	unsigned int size = sizeof(struct page *) * nr;
29 
30 	if (likely(size <= sbi->page_array_slab_size))
31 		return f2fs_kmem_cache_alloc(sbi->page_array_slab,
32 					GFP_F2FS_ZERO, false, F2FS_I_SB(inode));
33 	return f2fs_kzalloc(sbi, size, GFP_NOFS);
34 }
35 
36 static void page_array_free(struct inode *inode, void *pages, int nr)
37 {
38 	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
39 	unsigned int size = sizeof(struct page *) * nr;
40 
41 	if (!pages)
42 		return;
43 
44 	if (likely(size <= sbi->page_array_slab_size))
45 		kmem_cache_free(sbi->page_array_slab, pages);
46 	else
47 		kfree(pages);
48 }
49 
50 struct f2fs_compress_ops {
51 	int (*init_compress_ctx)(struct compress_ctx *cc);
52 	void (*destroy_compress_ctx)(struct compress_ctx *cc);
53 	int (*compress_pages)(struct compress_ctx *cc);
54 	int (*init_decompress_ctx)(struct decompress_io_ctx *dic);
55 	void (*destroy_decompress_ctx)(struct decompress_io_ctx *dic);
56 	int (*decompress_pages)(struct decompress_io_ctx *dic);
57 };
58 
59 static unsigned int offset_in_cluster(struct compress_ctx *cc, pgoff_t index)
60 {
61 	return index & (cc->cluster_size - 1);
62 }
63 
64 static pgoff_t cluster_idx(struct compress_ctx *cc, pgoff_t index)
65 {
66 	return index >> cc->log_cluster_size;
67 }
68 
69 static pgoff_t start_idx_of_cluster(struct compress_ctx *cc)
70 {
71 	return cc->cluster_idx << cc->log_cluster_size;
72 }
73 
74 bool f2fs_is_compressed_page(struct page *page)
75 {
76 	if (!PagePrivate(page))
77 		return false;
78 	if (!page_private(page))
79 		return false;
80 	if (page_private_nonpointer(page))
81 		return false;
82 
83 	f2fs_bug_on(F2FS_M_SB(page->mapping),
84 		*((u32 *)page_private(page)) != F2FS_COMPRESSED_PAGE_MAGIC);
85 	return true;
86 }
87 
88 static void f2fs_set_compressed_page(struct page *page,
89 		struct inode *inode, pgoff_t index, void *data)
90 {
91 	attach_page_private(page, (void *)data);
92 
93 	/* i_crypto_info and iv index */
94 	page->index = index;
95 	page->mapping = inode->i_mapping;
96 }
97 
98 static void f2fs_drop_rpages(struct compress_ctx *cc, int len, bool unlock)
99 {
100 	int i;
101 
102 	for (i = 0; i < len; i++) {
103 		if (!cc->rpages[i])
104 			continue;
105 		if (unlock)
106 			unlock_page(cc->rpages[i]);
107 		else
108 			put_page(cc->rpages[i]);
109 	}
110 }
111 
112 static void f2fs_put_rpages(struct compress_ctx *cc)
113 {
114 	f2fs_drop_rpages(cc, cc->cluster_size, false);
115 }
116 
117 static void f2fs_unlock_rpages(struct compress_ctx *cc, int len)
118 {
119 	f2fs_drop_rpages(cc, len, true);
120 }
121 
122 static void f2fs_put_rpages_wbc(struct compress_ctx *cc,
123 		struct writeback_control *wbc, bool redirty, int unlock)
124 {
125 	unsigned int i;
126 
127 	for (i = 0; i < cc->cluster_size; i++) {
128 		if (!cc->rpages[i])
129 			continue;
130 		if (redirty)
131 			redirty_page_for_writepage(wbc, cc->rpages[i]);
132 		f2fs_put_page(cc->rpages[i], unlock);
133 	}
134 }
135 
136 struct page *f2fs_compress_control_page(struct page *page)
137 {
138 	return ((struct compress_io_ctx *)page_private(page))->rpages[0];
139 }
140 
141 int f2fs_init_compress_ctx(struct compress_ctx *cc)
142 {
143 	if (cc->rpages)
144 		return 0;
145 
146 	cc->rpages = page_array_alloc(cc->inode, cc->cluster_size);
147 	return cc->rpages ? 0 : -ENOMEM;
148 }
149 
150 void f2fs_destroy_compress_ctx(struct compress_ctx *cc, bool reuse)
151 {
152 	page_array_free(cc->inode, cc->rpages, cc->cluster_size);
153 	cc->rpages = NULL;
154 	cc->nr_rpages = 0;
155 	cc->nr_cpages = 0;
156 	if (!reuse)
157 		cc->cluster_idx = NULL_CLUSTER;
158 }
159 
160 void f2fs_compress_ctx_add_page(struct compress_ctx *cc, struct page *page)
161 {
162 	unsigned int cluster_ofs;
163 
164 	if (!f2fs_cluster_can_merge_page(cc, page->index))
165 		f2fs_bug_on(F2FS_I_SB(cc->inode), 1);
166 
167 	cluster_ofs = offset_in_cluster(cc, page->index);
168 	cc->rpages[cluster_ofs] = page;
169 	cc->nr_rpages++;
170 	cc->cluster_idx = cluster_idx(cc, page->index);
171 }
172 
173 #ifdef CONFIG_F2FS_FS_LZO
174 static int lzo_init_compress_ctx(struct compress_ctx *cc)
175 {
176 	cc->private = f2fs_kvmalloc(F2FS_I_SB(cc->inode),
177 				LZO1X_MEM_COMPRESS, GFP_NOFS);
178 	if (!cc->private)
179 		return -ENOMEM;
180 
181 	cc->clen = lzo1x_worst_compress(PAGE_SIZE << cc->log_cluster_size);
182 	return 0;
183 }
184 
185 static void lzo_destroy_compress_ctx(struct compress_ctx *cc)
186 {
187 	kvfree(cc->private);
188 	cc->private = NULL;
189 }
190 
191 static int lzo_compress_pages(struct compress_ctx *cc)
192 {
193 	int ret;
194 
195 	ret = lzo1x_1_compress(cc->rbuf, cc->rlen, cc->cbuf->cdata,
196 					&cc->clen, cc->private);
197 	if (ret != LZO_E_OK) {
198 		printk_ratelimited("%sF2FS-fs (%s): lzo compress failed, ret:%d\n",
199 				KERN_ERR, F2FS_I_SB(cc->inode)->sb->s_id, ret);
200 		return -EIO;
201 	}
202 	return 0;
203 }
204 
205 static int lzo_decompress_pages(struct decompress_io_ctx *dic)
206 {
207 	int ret;
208 
209 	ret = lzo1x_decompress_safe(dic->cbuf->cdata, dic->clen,
210 						dic->rbuf, &dic->rlen);
211 	if (ret != LZO_E_OK) {
212 		printk_ratelimited("%sF2FS-fs (%s): lzo decompress failed, ret:%d\n",
213 				KERN_ERR, F2FS_I_SB(dic->inode)->sb->s_id, ret);
214 		return -EIO;
215 	}
216 
217 	if (dic->rlen != PAGE_SIZE << dic->log_cluster_size) {
218 		printk_ratelimited("%sF2FS-fs (%s): lzo invalid rlen:%zu, "
219 					"expected:%lu\n", KERN_ERR,
220 					F2FS_I_SB(dic->inode)->sb->s_id,
221 					dic->rlen,
222 					PAGE_SIZE << dic->log_cluster_size);
223 		return -EIO;
224 	}
225 	return 0;
226 }
227 
228 static const struct f2fs_compress_ops f2fs_lzo_ops = {
229 	.init_compress_ctx	= lzo_init_compress_ctx,
230 	.destroy_compress_ctx	= lzo_destroy_compress_ctx,
231 	.compress_pages		= lzo_compress_pages,
232 	.decompress_pages	= lzo_decompress_pages,
233 };
234 #endif
235 
236 #ifdef CONFIG_F2FS_FS_LZ4
237 static int lz4_init_compress_ctx(struct compress_ctx *cc)
238 {
239 	unsigned int size = LZ4_MEM_COMPRESS;
240 
241 #ifdef CONFIG_F2FS_FS_LZ4HC
242 	if (F2FS_I(cc->inode)->i_compress_flag >> COMPRESS_LEVEL_OFFSET)
243 		size = LZ4HC_MEM_COMPRESS;
244 #endif
245 
246 	cc->private = f2fs_kvmalloc(F2FS_I_SB(cc->inode), size, GFP_NOFS);
247 	if (!cc->private)
248 		return -ENOMEM;
249 
250 	/*
251 	 * we do not change cc->clen to LZ4_compressBound(inputsize) to
252 	 * adapt worst compress case, because lz4 compressor can handle
253 	 * output budget properly.
254 	 */
255 	cc->clen = cc->rlen - PAGE_SIZE - COMPRESS_HEADER_SIZE;
256 	return 0;
257 }
258 
259 static void lz4_destroy_compress_ctx(struct compress_ctx *cc)
260 {
261 	kvfree(cc->private);
262 	cc->private = NULL;
263 }
264 
265 #ifdef CONFIG_F2FS_FS_LZ4HC
266 static int lz4hc_compress_pages(struct compress_ctx *cc)
267 {
268 	unsigned char level = F2FS_I(cc->inode)->i_compress_flag >>
269 						COMPRESS_LEVEL_OFFSET;
270 	int len;
271 
272 	if (level)
273 		len = LZ4_compress_HC(cc->rbuf, cc->cbuf->cdata, cc->rlen,
274 					cc->clen, level, cc->private);
275 	else
276 		len = LZ4_compress_default(cc->rbuf, cc->cbuf->cdata, cc->rlen,
277 						cc->clen, cc->private);
278 	if (!len)
279 		return -EAGAIN;
280 
281 	cc->clen = len;
282 	return 0;
283 }
284 #endif
285 
286 static int lz4_compress_pages(struct compress_ctx *cc)
287 {
288 	int len;
289 
290 #ifdef CONFIG_F2FS_FS_LZ4HC
291 	return lz4hc_compress_pages(cc);
292 #endif
293 	len = LZ4_compress_default(cc->rbuf, cc->cbuf->cdata, cc->rlen,
294 						cc->clen, cc->private);
295 	if (!len)
296 		return -EAGAIN;
297 
298 	cc->clen = len;
299 	return 0;
300 }
301 
302 static int lz4_decompress_pages(struct decompress_io_ctx *dic)
303 {
304 	int ret;
305 
306 	ret = LZ4_decompress_safe(dic->cbuf->cdata, dic->rbuf,
307 						dic->clen, dic->rlen);
308 	if (ret < 0) {
309 		printk_ratelimited("%sF2FS-fs (%s): lz4 decompress failed, ret:%d\n",
310 				KERN_ERR, F2FS_I_SB(dic->inode)->sb->s_id, ret);
311 		return -EIO;
312 	}
313 
314 	if (ret != PAGE_SIZE << dic->log_cluster_size) {
315 		printk_ratelimited("%sF2FS-fs (%s): lz4 invalid rlen:%zu, "
316 					"expected:%lu\n", KERN_ERR,
317 					F2FS_I_SB(dic->inode)->sb->s_id,
318 					dic->rlen,
319 					PAGE_SIZE << dic->log_cluster_size);
320 		return -EIO;
321 	}
322 	return 0;
323 }
324 
325 static const struct f2fs_compress_ops f2fs_lz4_ops = {
326 	.init_compress_ctx	= lz4_init_compress_ctx,
327 	.destroy_compress_ctx	= lz4_destroy_compress_ctx,
328 	.compress_pages		= lz4_compress_pages,
329 	.decompress_pages	= lz4_decompress_pages,
330 };
331 #endif
332 
333 #ifdef CONFIG_F2FS_FS_ZSTD
334 #define F2FS_ZSTD_DEFAULT_CLEVEL	1
335 
336 static int zstd_init_compress_ctx(struct compress_ctx *cc)
337 {
338 	ZSTD_parameters params;
339 	ZSTD_CStream *stream;
340 	void *workspace;
341 	unsigned int workspace_size;
342 	unsigned char level = F2FS_I(cc->inode)->i_compress_flag >>
343 						COMPRESS_LEVEL_OFFSET;
344 
345 	if (!level)
346 		level = F2FS_ZSTD_DEFAULT_CLEVEL;
347 
348 	params = ZSTD_getParams(level, cc->rlen, 0);
349 	workspace_size = ZSTD_CStreamWorkspaceBound(params.cParams);
350 
351 	workspace = f2fs_kvmalloc(F2FS_I_SB(cc->inode),
352 					workspace_size, GFP_NOFS);
353 	if (!workspace)
354 		return -ENOMEM;
355 
356 	stream = ZSTD_initCStream(params, 0, workspace, workspace_size);
357 	if (!stream) {
358 		printk_ratelimited("%sF2FS-fs (%s): %s ZSTD_initCStream failed\n",
359 				KERN_ERR, F2FS_I_SB(cc->inode)->sb->s_id,
360 				__func__);
361 		kvfree(workspace);
362 		return -EIO;
363 	}
364 
365 	cc->private = workspace;
366 	cc->private2 = stream;
367 
368 	cc->clen = cc->rlen - PAGE_SIZE - COMPRESS_HEADER_SIZE;
369 	return 0;
370 }
371 
372 static void zstd_destroy_compress_ctx(struct compress_ctx *cc)
373 {
374 	kvfree(cc->private);
375 	cc->private = NULL;
376 	cc->private2 = NULL;
377 }
378 
379 static int zstd_compress_pages(struct compress_ctx *cc)
380 {
381 	ZSTD_CStream *stream = cc->private2;
382 	ZSTD_inBuffer inbuf;
383 	ZSTD_outBuffer outbuf;
384 	int src_size = cc->rlen;
385 	int dst_size = src_size - PAGE_SIZE - COMPRESS_HEADER_SIZE;
386 	int ret;
387 
388 	inbuf.pos = 0;
389 	inbuf.src = cc->rbuf;
390 	inbuf.size = src_size;
391 
392 	outbuf.pos = 0;
393 	outbuf.dst = cc->cbuf->cdata;
394 	outbuf.size = dst_size;
395 
396 	ret = ZSTD_compressStream(stream, &outbuf, &inbuf);
397 	if (ZSTD_isError(ret)) {
398 		printk_ratelimited("%sF2FS-fs (%s): %s ZSTD_compressStream failed, ret: %d\n",
399 				KERN_ERR, F2FS_I_SB(cc->inode)->sb->s_id,
400 				__func__, ZSTD_getErrorCode(ret));
401 		return -EIO;
402 	}
403 
404 	ret = ZSTD_endStream(stream, &outbuf);
405 	if (ZSTD_isError(ret)) {
406 		printk_ratelimited("%sF2FS-fs (%s): %s ZSTD_endStream returned %d\n",
407 				KERN_ERR, F2FS_I_SB(cc->inode)->sb->s_id,
408 				__func__, ZSTD_getErrorCode(ret));
409 		return -EIO;
410 	}
411 
412 	/*
413 	 * there is compressed data remained in intermediate buffer due to
414 	 * no more space in cbuf.cdata
415 	 */
416 	if (ret)
417 		return -EAGAIN;
418 
419 	cc->clen = outbuf.pos;
420 	return 0;
421 }
422 
423 static int zstd_init_decompress_ctx(struct decompress_io_ctx *dic)
424 {
425 	ZSTD_DStream *stream;
426 	void *workspace;
427 	unsigned int workspace_size;
428 	unsigned int max_window_size =
429 			MAX_COMPRESS_WINDOW_SIZE(dic->log_cluster_size);
430 
431 	workspace_size = ZSTD_DStreamWorkspaceBound(max_window_size);
432 
433 	workspace = f2fs_kvmalloc(F2FS_I_SB(dic->inode),
434 					workspace_size, GFP_NOFS);
435 	if (!workspace)
436 		return -ENOMEM;
437 
438 	stream = ZSTD_initDStream(max_window_size, workspace, workspace_size);
439 	if (!stream) {
440 		printk_ratelimited("%sF2FS-fs (%s): %s ZSTD_initDStream failed\n",
441 				KERN_ERR, F2FS_I_SB(dic->inode)->sb->s_id,
442 				__func__);
443 		kvfree(workspace);
444 		return -EIO;
445 	}
446 
447 	dic->private = workspace;
448 	dic->private2 = stream;
449 
450 	return 0;
451 }
452 
453 static void zstd_destroy_decompress_ctx(struct decompress_io_ctx *dic)
454 {
455 	kvfree(dic->private);
456 	dic->private = NULL;
457 	dic->private2 = NULL;
458 }
459 
460 static int zstd_decompress_pages(struct decompress_io_ctx *dic)
461 {
462 	ZSTD_DStream *stream = dic->private2;
463 	ZSTD_inBuffer inbuf;
464 	ZSTD_outBuffer outbuf;
465 	int ret;
466 
467 	inbuf.pos = 0;
468 	inbuf.src = dic->cbuf->cdata;
469 	inbuf.size = dic->clen;
470 
471 	outbuf.pos = 0;
472 	outbuf.dst = dic->rbuf;
473 	outbuf.size = dic->rlen;
474 
475 	ret = ZSTD_decompressStream(stream, &outbuf, &inbuf);
476 	if (ZSTD_isError(ret)) {
477 		printk_ratelimited("%sF2FS-fs (%s): %s ZSTD_compressStream failed, ret: %d\n",
478 				KERN_ERR, F2FS_I_SB(dic->inode)->sb->s_id,
479 				__func__, ZSTD_getErrorCode(ret));
480 		return -EIO;
481 	}
482 
483 	if (dic->rlen != outbuf.pos) {
484 		printk_ratelimited("%sF2FS-fs (%s): %s ZSTD invalid rlen:%zu, "
485 				"expected:%lu\n", KERN_ERR,
486 				F2FS_I_SB(dic->inode)->sb->s_id,
487 				__func__, dic->rlen,
488 				PAGE_SIZE << dic->log_cluster_size);
489 		return -EIO;
490 	}
491 
492 	return 0;
493 }
494 
495 static const struct f2fs_compress_ops f2fs_zstd_ops = {
496 	.init_compress_ctx	= zstd_init_compress_ctx,
497 	.destroy_compress_ctx	= zstd_destroy_compress_ctx,
498 	.compress_pages		= zstd_compress_pages,
499 	.init_decompress_ctx	= zstd_init_decompress_ctx,
500 	.destroy_decompress_ctx	= zstd_destroy_decompress_ctx,
501 	.decompress_pages	= zstd_decompress_pages,
502 };
503 #endif
504 
505 #ifdef CONFIG_F2FS_FS_LZO
506 #ifdef CONFIG_F2FS_FS_LZORLE
507 static int lzorle_compress_pages(struct compress_ctx *cc)
508 {
509 	int ret;
510 
511 	ret = lzorle1x_1_compress(cc->rbuf, cc->rlen, cc->cbuf->cdata,
512 					&cc->clen, cc->private);
513 	if (ret != LZO_E_OK) {
514 		printk_ratelimited("%sF2FS-fs (%s): lzo-rle compress failed, ret:%d\n",
515 				KERN_ERR, F2FS_I_SB(cc->inode)->sb->s_id, ret);
516 		return -EIO;
517 	}
518 	return 0;
519 }
520 
521 static const struct f2fs_compress_ops f2fs_lzorle_ops = {
522 	.init_compress_ctx	= lzo_init_compress_ctx,
523 	.destroy_compress_ctx	= lzo_destroy_compress_ctx,
524 	.compress_pages		= lzorle_compress_pages,
525 	.decompress_pages	= lzo_decompress_pages,
526 };
527 #endif
528 #endif
529 
530 static const struct f2fs_compress_ops *f2fs_cops[COMPRESS_MAX] = {
531 #ifdef CONFIG_F2FS_FS_LZO
532 	&f2fs_lzo_ops,
533 #else
534 	NULL,
535 #endif
536 #ifdef CONFIG_F2FS_FS_LZ4
537 	&f2fs_lz4_ops,
538 #else
539 	NULL,
540 #endif
541 #ifdef CONFIG_F2FS_FS_ZSTD
542 	&f2fs_zstd_ops,
543 #else
544 	NULL,
545 #endif
546 #if defined(CONFIG_F2FS_FS_LZO) && defined(CONFIG_F2FS_FS_LZORLE)
547 	&f2fs_lzorle_ops,
548 #else
549 	NULL,
550 #endif
551 };
552 
553 bool f2fs_is_compress_backend_ready(struct inode *inode)
554 {
555 	if (!f2fs_compressed_file(inode))
556 		return true;
557 	return f2fs_cops[F2FS_I(inode)->i_compress_algorithm];
558 }
559 
560 static mempool_t *compress_page_pool;
561 static int num_compress_pages = 512;
562 module_param(num_compress_pages, uint, 0444);
563 MODULE_PARM_DESC(num_compress_pages,
564 		"Number of intermediate compress pages to preallocate");
565 
566 int f2fs_init_compress_mempool(void)
567 {
568 	compress_page_pool = mempool_create_page_pool(num_compress_pages, 0);
569 	if (!compress_page_pool)
570 		return -ENOMEM;
571 
572 	return 0;
573 }
574 
575 void f2fs_destroy_compress_mempool(void)
576 {
577 	mempool_destroy(compress_page_pool);
578 }
579 
580 static struct page *f2fs_compress_alloc_page(void)
581 {
582 	struct page *page;
583 
584 	page = mempool_alloc(compress_page_pool, GFP_NOFS);
585 	lock_page(page);
586 
587 	return page;
588 }
589 
590 static void f2fs_compress_free_page(struct page *page)
591 {
592 	if (!page)
593 		return;
594 	detach_page_private(page);
595 	page->mapping = NULL;
596 	unlock_page(page);
597 	mempool_free(page, compress_page_pool);
598 }
599 
600 #define MAX_VMAP_RETRIES	3
601 
602 static void *f2fs_vmap(struct page **pages, unsigned int count)
603 {
604 	int i;
605 	void *buf = NULL;
606 
607 	for (i = 0; i < MAX_VMAP_RETRIES; i++) {
608 		buf = vm_map_ram(pages, count, -1);
609 		if (buf)
610 			break;
611 		vm_unmap_aliases();
612 	}
613 	return buf;
614 }
615 
616 static int f2fs_compress_pages(struct compress_ctx *cc)
617 {
618 	struct f2fs_inode_info *fi = F2FS_I(cc->inode);
619 	const struct f2fs_compress_ops *cops =
620 				f2fs_cops[fi->i_compress_algorithm];
621 	unsigned int max_len, new_nr_cpages;
622 	struct page **new_cpages;
623 	u32 chksum = 0;
624 	int i, ret;
625 
626 	trace_f2fs_compress_pages_start(cc->inode, cc->cluster_idx,
627 				cc->cluster_size, fi->i_compress_algorithm);
628 
629 	if (cops->init_compress_ctx) {
630 		ret = cops->init_compress_ctx(cc);
631 		if (ret)
632 			goto out;
633 	}
634 
635 	max_len = COMPRESS_HEADER_SIZE + cc->clen;
636 	cc->nr_cpages = DIV_ROUND_UP(max_len, PAGE_SIZE);
637 
638 	cc->cpages = page_array_alloc(cc->inode, cc->nr_cpages);
639 	if (!cc->cpages) {
640 		ret = -ENOMEM;
641 		goto destroy_compress_ctx;
642 	}
643 
644 	for (i = 0; i < cc->nr_cpages; i++) {
645 		cc->cpages[i] = f2fs_compress_alloc_page();
646 		if (!cc->cpages[i]) {
647 			ret = -ENOMEM;
648 			goto out_free_cpages;
649 		}
650 	}
651 
652 	cc->rbuf = f2fs_vmap(cc->rpages, cc->cluster_size);
653 	if (!cc->rbuf) {
654 		ret = -ENOMEM;
655 		goto out_free_cpages;
656 	}
657 
658 	cc->cbuf = f2fs_vmap(cc->cpages, cc->nr_cpages);
659 	if (!cc->cbuf) {
660 		ret = -ENOMEM;
661 		goto out_vunmap_rbuf;
662 	}
663 
664 	ret = cops->compress_pages(cc);
665 	if (ret)
666 		goto out_vunmap_cbuf;
667 
668 	max_len = PAGE_SIZE * (cc->cluster_size - 1) - COMPRESS_HEADER_SIZE;
669 
670 	if (cc->clen > max_len) {
671 		ret = -EAGAIN;
672 		goto out_vunmap_cbuf;
673 	}
674 
675 	cc->cbuf->clen = cpu_to_le32(cc->clen);
676 
677 	if (fi->i_compress_flag & 1 << COMPRESS_CHKSUM)
678 		chksum = f2fs_crc32(F2FS_I_SB(cc->inode),
679 					cc->cbuf->cdata, cc->clen);
680 	cc->cbuf->chksum = cpu_to_le32(chksum);
681 
682 	for (i = 0; i < COMPRESS_DATA_RESERVED_SIZE; i++)
683 		cc->cbuf->reserved[i] = cpu_to_le32(0);
684 
685 	new_nr_cpages = DIV_ROUND_UP(cc->clen + COMPRESS_HEADER_SIZE, PAGE_SIZE);
686 
687 	/* Now we're going to cut unnecessary tail pages */
688 	new_cpages = page_array_alloc(cc->inode, new_nr_cpages);
689 	if (!new_cpages) {
690 		ret = -ENOMEM;
691 		goto out_vunmap_cbuf;
692 	}
693 
694 	/* zero out any unused part of the last page */
695 	memset(&cc->cbuf->cdata[cc->clen], 0,
696 			(new_nr_cpages * PAGE_SIZE) -
697 			(cc->clen + COMPRESS_HEADER_SIZE));
698 
699 	vm_unmap_ram(cc->cbuf, cc->nr_cpages);
700 	vm_unmap_ram(cc->rbuf, cc->cluster_size);
701 
702 	for (i = 0; i < cc->nr_cpages; i++) {
703 		if (i < new_nr_cpages) {
704 			new_cpages[i] = cc->cpages[i];
705 			continue;
706 		}
707 		f2fs_compress_free_page(cc->cpages[i]);
708 		cc->cpages[i] = NULL;
709 	}
710 
711 	if (cops->destroy_compress_ctx)
712 		cops->destroy_compress_ctx(cc);
713 
714 	page_array_free(cc->inode, cc->cpages, cc->nr_cpages);
715 	cc->cpages = new_cpages;
716 	cc->nr_cpages = new_nr_cpages;
717 
718 	trace_f2fs_compress_pages_end(cc->inode, cc->cluster_idx,
719 							cc->clen, ret);
720 	return 0;
721 
722 out_vunmap_cbuf:
723 	vm_unmap_ram(cc->cbuf, cc->nr_cpages);
724 out_vunmap_rbuf:
725 	vm_unmap_ram(cc->rbuf, cc->cluster_size);
726 out_free_cpages:
727 	for (i = 0; i < cc->nr_cpages; i++) {
728 		if (cc->cpages[i])
729 			f2fs_compress_free_page(cc->cpages[i]);
730 	}
731 	page_array_free(cc->inode, cc->cpages, cc->nr_cpages);
732 	cc->cpages = NULL;
733 destroy_compress_ctx:
734 	if (cops->destroy_compress_ctx)
735 		cops->destroy_compress_ctx(cc);
736 out:
737 	trace_f2fs_compress_pages_end(cc->inode, cc->cluster_idx,
738 							cc->clen, ret);
739 	return ret;
740 }
741 
742 void f2fs_decompress_cluster(struct decompress_io_ctx *dic)
743 {
744 	struct f2fs_sb_info *sbi = F2FS_I_SB(dic->inode);
745 	struct f2fs_inode_info *fi = F2FS_I(dic->inode);
746 	const struct f2fs_compress_ops *cops =
747 			f2fs_cops[fi->i_compress_algorithm];
748 	int ret;
749 	int i;
750 
751 	trace_f2fs_decompress_pages_start(dic->inode, dic->cluster_idx,
752 				dic->cluster_size, fi->i_compress_algorithm);
753 
754 	if (dic->failed) {
755 		ret = -EIO;
756 		goto out_end_io;
757 	}
758 
759 	dic->tpages = page_array_alloc(dic->inode, dic->cluster_size);
760 	if (!dic->tpages) {
761 		ret = -ENOMEM;
762 		goto out_end_io;
763 	}
764 
765 	for (i = 0; i < dic->cluster_size; i++) {
766 		if (dic->rpages[i]) {
767 			dic->tpages[i] = dic->rpages[i];
768 			continue;
769 		}
770 
771 		dic->tpages[i] = f2fs_compress_alloc_page();
772 		if (!dic->tpages[i]) {
773 			ret = -ENOMEM;
774 			goto out_end_io;
775 		}
776 	}
777 
778 	if (cops->init_decompress_ctx) {
779 		ret = cops->init_decompress_ctx(dic);
780 		if (ret)
781 			goto out_end_io;
782 	}
783 
784 	dic->rbuf = f2fs_vmap(dic->tpages, dic->cluster_size);
785 	if (!dic->rbuf) {
786 		ret = -ENOMEM;
787 		goto out_destroy_decompress_ctx;
788 	}
789 
790 	dic->cbuf = f2fs_vmap(dic->cpages, dic->nr_cpages);
791 	if (!dic->cbuf) {
792 		ret = -ENOMEM;
793 		goto out_vunmap_rbuf;
794 	}
795 
796 	dic->clen = le32_to_cpu(dic->cbuf->clen);
797 	dic->rlen = PAGE_SIZE << dic->log_cluster_size;
798 
799 	if (dic->clen > PAGE_SIZE * dic->nr_cpages - COMPRESS_HEADER_SIZE) {
800 		ret = -EFSCORRUPTED;
801 		goto out_vunmap_cbuf;
802 	}
803 
804 	ret = cops->decompress_pages(dic);
805 
806 	if (!ret && (fi->i_compress_flag & 1 << COMPRESS_CHKSUM)) {
807 		u32 provided = le32_to_cpu(dic->cbuf->chksum);
808 		u32 calculated = f2fs_crc32(sbi, dic->cbuf->cdata, dic->clen);
809 
810 		if (provided != calculated) {
811 			if (!is_inode_flag_set(dic->inode, FI_COMPRESS_CORRUPT)) {
812 				set_inode_flag(dic->inode, FI_COMPRESS_CORRUPT);
813 				printk_ratelimited(
814 					"%sF2FS-fs (%s): checksum invalid, nid = %lu, %x vs %x",
815 					KERN_INFO, sbi->sb->s_id, dic->inode->i_ino,
816 					provided, calculated);
817 			}
818 			set_sbi_flag(sbi, SBI_NEED_FSCK);
819 		}
820 	}
821 
822 out_vunmap_cbuf:
823 	vm_unmap_ram(dic->cbuf, dic->nr_cpages);
824 out_vunmap_rbuf:
825 	vm_unmap_ram(dic->rbuf, dic->cluster_size);
826 out_destroy_decompress_ctx:
827 	if (cops->destroy_decompress_ctx)
828 		cops->destroy_decompress_ctx(dic);
829 out_end_io:
830 	trace_f2fs_decompress_pages_end(dic->inode, dic->cluster_idx,
831 							dic->clen, ret);
832 	f2fs_decompress_end_io(dic, ret);
833 }
834 
835 /*
836  * This is called when a page of a compressed cluster has been read from disk
837  * (or failed to be read from disk).  It checks whether this page was the last
838  * page being waited on in the cluster, and if so, it decompresses the cluster
839  * (or in the case of a failure, cleans up without actually decompressing).
840  */
841 void f2fs_end_read_compressed_page(struct page *page, bool failed,
842 						block_t blkaddr)
843 {
844 	struct decompress_io_ctx *dic =
845 			(struct decompress_io_ctx *)page_private(page);
846 	struct f2fs_sb_info *sbi = F2FS_I_SB(dic->inode);
847 
848 	dec_page_count(sbi, F2FS_RD_DATA);
849 
850 	if (failed)
851 		WRITE_ONCE(dic->failed, true);
852 	else if (blkaddr)
853 		f2fs_cache_compressed_page(sbi, page,
854 					dic->inode->i_ino, blkaddr);
855 
856 	if (atomic_dec_and_test(&dic->remaining_pages))
857 		f2fs_decompress_cluster(dic);
858 }
859 
860 static bool is_page_in_cluster(struct compress_ctx *cc, pgoff_t index)
861 {
862 	if (cc->cluster_idx == NULL_CLUSTER)
863 		return true;
864 	return cc->cluster_idx == cluster_idx(cc, index);
865 }
866 
867 bool f2fs_cluster_is_empty(struct compress_ctx *cc)
868 {
869 	return cc->nr_rpages == 0;
870 }
871 
872 static bool f2fs_cluster_is_full(struct compress_ctx *cc)
873 {
874 	return cc->cluster_size == cc->nr_rpages;
875 }
876 
877 bool f2fs_cluster_can_merge_page(struct compress_ctx *cc, pgoff_t index)
878 {
879 	if (f2fs_cluster_is_empty(cc))
880 		return true;
881 	return is_page_in_cluster(cc, index);
882 }
883 
884 bool f2fs_all_cluster_page_loaded(struct compress_ctx *cc, struct pagevec *pvec,
885 				int index, int nr_pages)
886 {
887 	unsigned long pgidx;
888 	int i;
889 
890 	if (nr_pages - index < cc->cluster_size)
891 		return false;
892 
893 	pgidx = pvec->pages[index]->index;
894 
895 	for (i = 1; i < cc->cluster_size; i++) {
896 		if (pvec->pages[index + i]->index != pgidx + i)
897 			return false;
898 	}
899 
900 	return true;
901 }
902 
903 static bool cluster_has_invalid_data(struct compress_ctx *cc)
904 {
905 	loff_t i_size = i_size_read(cc->inode);
906 	unsigned nr_pages = DIV_ROUND_UP(i_size, PAGE_SIZE);
907 	int i;
908 
909 	for (i = 0; i < cc->cluster_size; i++) {
910 		struct page *page = cc->rpages[i];
911 
912 		f2fs_bug_on(F2FS_I_SB(cc->inode), !page);
913 
914 		/* beyond EOF */
915 		if (page->index >= nr_pages)
916 			return true;
917 	}
918 	return false;
919 }
920 
921 bool f2fs_sanity_check_cluster(struct dnode_of_data *dn)
922 {
923 	struct f2fs_sb_info *sbi = F2FS_I_SB(dn->inode);
924 	unsigned int cluster_size = F2FS_I(dn->inode)->i_cluster_size;
925 	bool compressed = dn->data_blkaddr == COMPRESS_ADDR;
926 	int cluster_end = 0;
927 	int i;
928 	char *reason = "";
929 
930 	if (!compressed)
931 		return false;
932 
933 	/* [..., COMPR_ADDR, ...] */
934 	if (dn->ofs_in_node % cluster_size) {
935 		reason = "[*|C|*|*]";
936 		goto out;
937 	}
938 
939 	for (i = 1; i < cluster_size; i++) {
940 		block_t blkaddr = data_blkaddr(dn->inode, dn->node_page,
941 							dn->ofs_in_node + i);
942 
943 		/* [COMPR_ADDR, ..., COMPR_ADDR] */
944 		if (blkaddr == COMPRESS_ADDR) {
945 			reason = "[C|*|C|*]";
946 			goto out;
947 		}
948 		if (compressed) {
949 			if (!__is_valid_data_blkaddr(blkaddr)) {
950 				if (!cluster_end)
951 					cluster_end = i;
952 				continue;
953 			}
954 			/* [COMPR_ADDR, NULL_ADDR or NEW_ADDR, valid_blkaddr] */
955 			if (cluster_end) {
956 				reason = "[C|N|N|V]";
957 				goto out;
958 			}
959 		}
960 	}
961 	return false;
962 out:
963 	f2fs_warn(sbi, "access invalid cluster, ino:%lu, nid:%u, ofs_in_node:%u, reason:%s",
964 			dn->inode->i_ino, dn->nid, dn->ofs_in_node, reason);
965 	set_sbi_flag(sbi, SBI_NEED_FSCK);
966 	return true;
967 }
968 
969 static int __f2fs_cluster_blocks(struct inode *inode,
970 				unsigned int cluster_idx, bool compr)
971 {
972 	struct dnode_of_data dn;
973 	unsigned int cluster_size = F2FS_I(inode)->i_cluster_size;
974 	unsigned int start_idx = cluster_idx <<
975 				F2FS_I(inode)->i_log_cluster_size;
976 	int ret;
977 
978 	set_new_dnode(&dn, inode, NULL, NULL, 0);
979 	ret = f2fs_get_dnode_of_data(&dn, start_idx, LOOKUP_NODE);
980 	if (ret) {
981 		if (ret == -ENOENT)
982 			ret = 0;
983 		goto fail;
984 	}
985 
986 	if (f2fs_sanity_check_cluster(&dn)) {
987 		ret = -EFSCORRUPTED;
988 		goto fail;
989 	}
990 
991 	if (dn.data_blkaddr == COMPRESS_ADDR) {
992 		int i;
993 
994 		ret = 1;
995 		for (i = 1; i < cluster_size; i++) {
996 			block_t blkaddr;
997 
998 			blkaddr = data_blkaddr(dn.inode,
999 					dn.node_page, dn.ofs_in_node + i);
1000 			if (compr) {
1001 				if (__is_valid_data_blkaddr(blkaddr))
1002 					ret++;
1003 			} else {
1004 				if (blkaddr != NULL_ADDR)
1005 					ret++;
1006 			}
1007 		}
1008 
1009 		f2fs_bug_on(F2FS_I_SB(inode),
1010 			!compr && ret != cluster_size &&
1011 			!is_inode_flag_set(inode, FI_COMPRESS_RELEASED));
1012 	}
1013 fail:
1014 	f2fs_put_dnode(&dn);
1015 	return ret;
1016 }
1017 
1018 /* return # of compressed blocks in compressed cluster */
1019 static int f2fs_compressed_blocks(struct compress_ctx *cc)
1020 {
1021 	return __f2fs_cluster_blocks(cc->inode, cc->cluster_idx, true);
1022 }
1023 
1024 /* return # of valid blocks in compressed cluster */
1025 int f2fs_is_compressed_cluster(struct inode *inode, pgoff_t index)
1026 {
1027 	return __f2fs_cluster_blocks(inode,
1028 		index >> F2FS_I(inode)->i_log_cluster_size,
1029 		false);
1030 }
1031 
1032 static bool cluster_may_compress(struct compress_ctx *cc)
1033 {
1034 	if (!f2fs_need_compress_data(cc->inode))
1035 		return false;
1036 	if (f2fs_is_atomic_file(cc->inode))
1037 		return false;
1038 	if (!f2fs_cluster_is_full(cc))
1039 		return false;
1040 	if (unlikely(f2fs_cp_error(F2FS_I_SB(cc->inode))))
1041 		return false;
1042 	return !cluster_has_invalid_data(cc);
1043 }
1044 
1045 static void set_cluster_writeback(struct compress_ctx *cc)
1046 {
1047 	int i;
1048 
1049 	for (i = 0; i < cc->cluster_size; i++) {
1050 		if (cc->rpages[i])
1051 			set_page_writeback(cc->rpages[i]);
1052 	}
1053 }
1054 
1055 static void set_cluster_dirty(struct compress_ctx *cc)
1056 {
1057 	int i;
1058 
1059 	for (i = 0; i < cc->cluster_size; i++)
1060 		if (cc->rpages[i])
1061 			set_page_dirty(cc->rpages[i]);
1062 }
1063 
1064 static int prepare_compress_overwrite(struct compress_ctx *cc,
1065 		struct page **pagep, pgoff_t index, void **fsdata)
1066 {
1067 	struct f2fs_sb_info *sbi = F2FS_I_SB(cc->inode);
1068 	struct address_space *mapping = cc->inode->i_mapping;
1069 	struct page *page;
1070 	sector_t last_block_in_bio;
1071 	unsigned fgp_flag = FGP_LOCK | FGP_WRITE | FGP_CREAT;
1072 	pgoff_t start_idx = start_idx_of_cluster(cc);
1073 	int i, ret;
1074 
1075 retry:
1076 	ret = f2fs_is_compressed_cluster(cc->inode, start_idx);
1077 	if (ret <= 0)
1078 		return ret;
1079 
1080 	ret = f2fs_init_compress_ctx(cc);
1081 	if (ret)
1082 		return ret;
1083 
1084 	/* keep page reference to avoid page reclaim */
1085 	for (i = 0; i < cc->cluster_size; i++) {
1086 		page = f2fs_pagecache_get_page(mapping, start_idx + i,
1087 							fgp_flag, GFP_NOFS);
1088 		if (!page) {
1089 			ret = -ENOMEM;
1090 			goto unlock_pages;
1091 		}
1092 
1093 		if (PageUptodate(page))
1094 			f2fs_put_page(page, 1);
1095 		else
1096 			f2fs_compress_ctx_add_page(cc, page);
1097 	}
1098 
1099 	if (!f2fs_cluster_is_empty(cc)) {
1100 		struct bio *bio = NULL;
1101 
1102 		ret = f2fs_read_multi_pages(cc, &bio, cc->cluster_size,
1103 					&last_block_in_bio, false, true);
1104 		f2fs_put_rpages(cc);
1105 		f2fs_destroy_compress_ctx(cc, true);
1106 		if (ret)
1107 			goto out;
1108 		if (bio)
1109 			f2fs_submit_bio(sbi, bio, DATA);
1110 
1111 		ret = f2fs_init_compress_ctx(cc);
1112 		if (ret)
1113 			goto out;
1114 	}
1115 
1116 	for (i = 0; i < cc->cluster_size; i++) {
1117 		f2fs_bug_on(sbi, cc->rpages[i]);
1118 
1119 		page = find_lock_page(mapping, start_idx + i);
1120 		if (!page) {
1121 			/* page can be truncated */
1122 			goto release_and_retry;
1123 		}
1124 
1125 		f2fs_wait_on_page_writeback(page, DATA, true, true);
1126 		f2fs_compress_ctx_add_page(cc, page);
1127 
1128 		if (!PageUptodate(page)) {
1129 release_and_retry:
1130 			f2fs_put_rpages(cc);
1131 			f2fs_unlock_rpages(cc, i + 1);
1132 			f2fs_destroy_compress_ctx(cc, true);
1133 			goto retry;
1134 		}
1135 	}
1136 
1137 	if (likely(!ret)) {
1138 		*fsdata = cc->rpages;
1139 		*pagep = cc->rpages[offset_in_cluster(cc, index)];
1140 		return cc->cluster_size;
1141 	}
1142 
1143 unlock_pages:
1144 	f2fs_put_rpages(cc);
1145 	f2fs_unlock_rpages(cc, i);
1146 	f2fs_destroy_compress_ctx(cc, true);
1147 out:
1148 	return ret;
1149 }
1150 
1151 int f2fs_prepare_compress_overwrite(struct inode *inode,
1152 		struct page **pagep, pgoff_t index, void **fsdata)
1153 {
1154 	struct compress_ctx cc = {
1155 		.inode = inode,
1156 		.log_cluster_size = F2FS_I(inode)->i_log_cluster_size,
1157 		.cluster_size = F2FS_I(inode)->i_cluster_size,
1158 		.cluster_idx = index >> F2FS_I(inode)->i_log_cluster_size,
1159 		.rpages = NULL,
1160 		.nr_rpages = 0,
1161 	};
1162 
1163 	return prepare_compress_overwrite(&cc, pagep, index, fsdata);
1164 }
1165 
1166 bool f2fs_compress_write_end(struct inode *inode, void *fsdata,
1167 					pgoff_t index, unsigned copied)
1168 
1169 {
1170 	struct compress_ctx cc = {
1171 		.inode = inode,
1172 		.log_cluster_size = F2FS_I(inode)->i_log_cluster_size,
1173 		.cluster_size = F2FS_I(inode)->i_cluster_size,
1174 		.rpages = fsdata,
1175 	};
1176 	bool first_index = (index == cc.rpages[0]->index);
1177 
1178 	if (copied)
1179 		set_cluster_dirty(&cc);
1180 
1181 	f2fs_put_rpages_wbc(&cc, NULL, false, 1);
1182 	f2fs_destroy_compress_ctx(&cc, false);
1183 
1184 	return first_index;
1185 }
1186 
1187 int f2fs_truncate_partial_cluster(struct inode *inode, u64 from, bool lock)
1188 {
1189 	void *fsdata = NULL;
1190 	struct page *pagep;
1191 	int log_cluster_size = F2FS_I(inode)->i_log_cluster_size;
1192 	pgoff_t start_idx = from >> (PAGE_SHIFT + log_cluster_size) <<
1193 							log_cluster_size;
1194 	int err;
1195 
1196 	err = f2fs_is_compressed_cluster(inode, start_idx);
1197 	if (err < 0)
1198 		return err;
1199 
1200 	/* truncate normal cluster */
1201 	if (!err)
1202 		return f2fs_do_truncate_blocks(inode, from, lock);
1203 
1204 	/* truncate compressed cluster */
1205 	err = f2fs_prepare_compress_overwrite(inode, &pagep,
1206 						start_idx, &fsdata);
1207 
1208 	/* should not be a normal cluster */
1209 	f2fs_bug_on(F2FS_I_SB(inode), err == 0);
1210 
1211 	if (err <= 0)
1212 		return err;
1213 
1214 	if (err > 0) {
1215 		struct page **rpages = fsdata;
1216 		int cluster_size = F2FS_I(inode)->i_cluster_size;
1217 		int i;
1218 
1219 		for (i = cluster_size - 1; i >= 0; i--) {
1220 			loff_t start = rpages[i]->index << PAGE_SHIFT;
1221 
1222 			if (from <= start) {
1223 				zero_user_segment(rpages[i], 0, PAGE_SIZE);
1224 			} else {
1225 				zero_user_segment(rpages[i], from - start,
1226 								PAGE_SIZE);
1227 				break;
1228 			}
1229 		}
1230 
1231 		f2fs_compress_write_end(inode, fsdata, start_idx, true);
1232 	}
1233 	return 0;
1234 }
1235 
1236 static int f2fs_write_compressed_pages(struct compress_ctx *cc,
1237 					int *submitted,
1238 					struct writeback_control *wbc,
1239 					enum iostat_type io_type)
1240 {
1241 	struct inode *inode = cc->inode;
1242 	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1243 	struct f2fs_inode_info *fi = F2FS_I(inode);
1244 	struct f2fs_io_info fio = {
1245 		.sbi = sbi,
1246 		.ino = cc->inode->i_ino,
1247 		.type = DATA,
1248 		.op = REQ_OP_WRITE,
1249 		.op_flags = wbc_to_write_flags(wbc),
1250 		.old_blkaddr = NEW_ADDR,
1251 		.page = NULL,
1252 		.encrypted_page = NULL,
1253 		.compressed_page = NULL,
1254 		.submitted = false,
1255 		.io_type = io_type,
1256 		.io_wbc = wbc,
1257 		.encrypted = fscrypt_inode_uses_fs_layer_crypto(cc->inode),
1258 	};
1259 	struct dnode_of_data dn;
1260 	struct node_info ni;
1261 	struct compress_io_ctx *cic;
1262 	pgoff_t start_idx = start_idx_of_cluster(cc);
1263 	unsigned int last_index = cc->cluster_size - 1;
1264 	loff_t psize;
1265 	int i, err;
1266 
1267 	/* we should bypass data pages to proceed the kworkder jobs */
1268 	if (unlikely(f2fs_cp_error(sbi))) {
1269 		mapping_set_error(cc->rpages[0]->mapping, -EIO);
1270 		goto out_free;
1271 	}
1272 
1273 	if (IS_NOQUOTA(inode)) {
1274 		/*
1275 		 * We need to wait for node_write to avoid block allocation during
1276 		 * checkpoint. This can only happen to quota writes which can cause
1277 		 * the below discard race condition.
1278 		 */
1279 		down_read(&sbi->node_write);
1280 	} else if (!f2fs_trylock_op(sbi)) {
1281 		goto out_free;
1282 	}
1283 
1284 	set_new_dnode(&dn, cc->inode, NULL, NULL, 0);
1285 
1286 	err = f2fs_get_dnode_of_data(&dn, start_idx, LOOKUP_NODE);
1287 	if (err)
1288 		goto out_unlock_op;
1289 
1290 	for (i = 0; i < cc->cluster_size; i++) {
1291 		if (data_blkaddr(dn.inode, dn.node_page,
1292 					dn.ofs_in_node + i) == NULL_ADDR)
1293 			goto out_put_dnode;
1294 	}
1295 
1296 	psize = (loff_t)(cc->rpages[last_index]->index + 1) << PAGE_SHIFT;
1297 
1298 	err = f2fs_get_node_info(fio.sbi, dn.nid, &ni);
1299 	if (err)
1300 		goto out_put_dnode;
1301 
1302 	fio.version = ni.version;
1303 
1304 	cic = f2fs_kmem_cache_alloc(cic_entry_slab, GFP_F2FS_ZERO, false, sbi);
1305 	if (!cic)
1306 		goto out_put_dnode;
1307 
1308 	cic->magic = F2FS_COMPRESSED_PAGE_MAGIC;
1309 	cic->inode = inode;
1310 	atomic_set(&cic->pending_pages, cc->nr_cpages);
1311 	cic->rpages = page_array_alloc(cc->inode, cc->cluster_size);
1312 	if (!cic->rpages)
1313 		goto out_put_cic;
1314 
1315 	cic->nr_rpages = cc->cluster_size;
1316 
1317 	for (i = 0; i < cc->nr_cpages; i++) {
1318 		f2fs_set_compressed_page(cc->cpages[i], inode,
1319 					cc->rpages[i + 1]->index, cic);
1320 		fio.compressed_page = cc->cpages[i];
1321 
1322 		fio.old_blkaddr = data_blkaddr(dn.inode, dn.node_page,
1323 						dn.ofs_in_node + i + 1);
1324 
1325 		/* wait for GCed page writeback via META_MAPPING */
1326 		f2fs_wait_on_block_writeback(inode, fio.old_blkaddr);
1327 
1328 		if (fio.encrypted) {
1329 			fio.page = cc->rpages[i + 1];
1330 			err = f2fs_encrypt_one_page(&fio);
1331 			if (err)
1332 				goto out_destroy_crypt;
1333 			cc->cpages[i] = fio.encrypted_page;
1334 		}
1335 	}
1336 
1337 	set_cluster_writeback(cc);
1338 
1339 	for (i = 0; i < cc->cluster_size; i++)
1340 		cic->rpages[i] = cc->rpages[i];
1341 
1342 	for (i = 0; i < cc->cluster_size; i++, dn.ofs_in_node++) {
1343 		block_t blkaddr;
1344 
1345 		blkaddr = f2fs_data_blkaddr(&dn);
1346 		fio.page = cc->rpages[i];
1347 		fio.old_blkaddr = blkaddr;
1348 
1349 		/* cluster header */
1350 		if (i == 0) {
1351 			if (blkaddr == COMPRESS_ADDR)
1352 				fio.compr_blocks++;
1353 			if (__is_valid_data_blkaddr(blkaddr))
1354 				f2fs_invalidate_blocks(sbi, blkaddr);
1355 			f2fs_update_data_blkaddr(&dn, COMPRESS_ADDR);
1356 			goto unlock_continue;
1357 		}
1358 
1359 		if (fio.compr_blocks && __is_valid_data_blkaddr(blkaddr))
1360 			fio.compr_blocks++;
1361 
1362 		if (i > cc->nr_cpages) {
1363 			if (__is_valid_data_blkaddr(blkaddr)) {
1364 				f2fs_invalidate_blocks(sbi, blkaddr);
1365 				f2fs_update_data_blkaddr(&dn, NEW_ADDR);
1366 			}
1367 			goto unlock_continue;
1368 		}
1369 
1370 		f2fs_bug_on(fio.sbi, blkaddr == NULL_ADDR);
1371 
1372 		if (fio.encrypted)
1373 			fio.encrypted_page = cc->cpages[i - 1];
1374 		else
1375 			fio.compressed_page = cc->cpages[i - 1];
1376 
1377 		cc->cpages[i - 1] = NULL;
1378 		f2fs_outplace_write_data(&dn, &fio);
1379 		(*submitted)++;
1380 unlock_continue:
1381 		inode_dec_dirty_pages(cc->inode);
1382 		unlock_page(fio.page);
1383 	}
1384 
1385 	if (fio.compr_blocks)
1386 		f2fs_i_compr_blocks_update(inode, fio.compr_blocks - 1, false);
1387 	f2fs_i_compr_blocks_update(inode, cc->nr_cpages, true);
1388 	add_compr_block_stat(inode, cc->nr_cpages);
1389 
1390 	set_inode_flag(cc->inode, FI_APPEND_WRITE);
1391 	if (cc->cluster_idx == 0)
1392 		set_inode_flag(inode, FI_FIRST_BLOCK_WRITTEN);
1393 
1394 	f2fs_put_dnode(&dn);
1395 	if (IS_NOQUOTA(inode))
1396 		up_read(&sbi->node_write);
1397 	else
1398 		f2fs_unlock_op(sbi);
1399 
1400 	spin_lock(&fi->i_size_lock);
1401 	if (fi->last_disk_size < psize)
1402 		fi->last_disk_size = psize;
1403 	spin_unlock(&fi->i_size_lock);
1404 
1405 	f2fs_put_rpages(cc);
1406 	page_array_free(cc->inode, cc->cpages, cc->nr_cpages);
1407 	cc->cpages = NULL;
1408 	f2fs_destroy_compress_ctx(cc, false);
1409 	return 0;
1410 
1411 out_destroy_crypt:
1412 	page_array_free(cc->inode, cic->rpages, cc->cluster_size);
1413 
1414 	for (--i; i >= 0; i--)
1415 		fscrypt_finalize_bounce_page(&cc->cpages[i]);
1416 out_put_cic:
1417 	kmem_cache_free(cic_entry_slab, cic);
1418 out_put_dnode:
1419 	f2fs_put_dnode(&dn);
1420 out_unlock_op:
1421 	if (IS_NOQUOTA(inode))
1422 		up_read(&sbi->node_write);
1423 	else
1424 		f2fs_unlock_op(sbi);
1425 out_free:
1426 	for (i = 0; i < cc->nr_cpages; i++) {
1427 		if (!cc->cpages[i])
1428 			continue;
1429 		f2fs_compress_free_page(cc->cpages[i]);
1430 		cc->cpages[i] = NULL;
1431 	}
1432 	page_array_free(cc->inode, cc->cpages, cc->nr_cpages);
1433 	cc->cpages = NULL;
1434 	return -EAGAIN;
1435 }
1436 
1437 void f2fs_compress_write_end_io(struct bio *bio, struct page *page)
1438 {
1439 	struct f2fs_sb_info *sbi = bio->bi_private;
1440 	struct compress_io_ctx *cic =
1441 			(struct compress_io_ctx *)page_private(page);
1442 	int i;
1443 
1444 	if (unlikely(bio->bi_status))
1445 		mapping_set_error(cic->inode->i_mapping, -EIO);
1446 
1447 	f2fs_compress_free_page(page);
1448 
1449 	dec_page_count(sbi, F2FS_WB_DATA);
1450 
1451 	if (atomic_dec_return(&cic->pending_pages))
1452 		return;
1453 
1454 	for (i = 0; i < cic->nr_rpages; i++) {
1455 		WARN_ON(!cic->rpages[i]);
1456 		clear_page_private_gcing(cic->rpages[i]);
1457 		end_page_writeback(cic->rpages[i]);
1458 	}
1459 
1460 	page_array_free(cic->inode, cic->rpages, cic->nr_rpages);
1461 	kmem_cache_free(cic_entry_slab, cic);
1462 }
1463 
1464 static int f2fs_write_raw_pages(struct compress_ctx *cc,
1465 					int *submitted,
1466 					struct writeback_control *wbc,
1467 					enum iostat_type io_type)
1468 {
1469 	struct address_space *mapping = cc->inode->i_mapping;
1470 	int _submitted, compr_blocks, ret;
1471 	int i = -1, err = 0;
1472 
1473 	compr_blocks = f2fs_compressed_blocks(cc);
1474 	if (compr_blocks < 0) {
1475 		err = compr_blocks;
1476 		goto out_err;
1477 	}
1478 
1479 	for (i = 0; i < cc->cluster_size; i++) {
1480 		if (!cc->rpages[i])
1481 			continue;
1482 retry_write:
1483 		if (cc->rpages[i]->mapping != mapping) {
1484 			unlock_page(cc->rpages[i]);
1485 			continue;
1486 		}
1487 
1488 		BUG_ON(!PageLocked(cc->rpages[i]));
1489 
1490 		ret = f2fs_write_single_data_page(cc->rpages[i], &_submitted,
1491 						NULL, NULL, wbc, io_type,
1492 						compr_blocks, false);
1493 		if (ret) {
1494 			if (ret == AOP_WRITEPAGE_ACTIVATE) {
1495 				unlock_page(cc->rpages[i]);
1496 				ret = 0;
1497 			} else if (ret == -EAGAIN) {
1498 				/*
1499 				 * for quota file, just redirty left pages to
1500 				 * avoid deadlock caused by cluster update race
1501 				 * from foreground operation.
1502 				 */
1503 				if (IS_NOQUOTA(cc->inode)) {
1504 					err = 0;
1505 					goto out_err;
1506 				}
1507 				ret = 0;
1508 				cond_resched();
1509 				congestion_wait(BLK_RW_ASYNC,
1510 						DEFAULT_IO_TIMEOUT);
1511 				lock_page(cc->rpages[i]);
1512 
1513 				if (!PageDirty(cc->rpages[i])) {
1514 					unlock_page(cc->rpages[i]);
1515 					continue;
1516 				}
1517 
1518 				clear_page_dirty_for_io(cc->rpages[i]);
1519 				goto retry_write;
1520 			}
1521 			err = ret;
1522 			goto out_err;
1523 		}
1524 
1525 		*submitted += _submitted;
1526 	}
1527 
1528 	f2fs_balance_fs(F2FS_M_SB(mapping), true);
1529 
1530 	return 0;
1531 out_err:
1532 	for (++i; i < cc->cluster_size; i++) {
1533 		if (!cc->rpages[i])
1534 			continue;
1535 		redirty_page_for_writepage(wbc, cc->rpages[i]);
1536 		unlock_page(cc->rpages[i]);
1537 	}
1538 	return err;
1539 }
1540 
1541 int f2fs_write_multi_pages(struct compress_ctx *cc,
1542 					int *submitted,
1543 					struct writeback_control *wbc,
1544 					enum iostat_type io_type)
1545 {
1546 	int err;
1547 
1548 	*submitted = 0;
1549 	if (cluster_may_compress(cc)) {
1550 		err = f2fs_compress_pages(cc);
1551 		if (err == -EAGAIN) {
1552 			add_compr_block_stat(cc->inode, cc->cluster_size);
1553 			goto write;
1554 		} else if (err) {
1555 			f2fs_put_rpages_wbc(cc, wbc, true, 1);
1556 			goto destroy_out;
1557 		}
1558 
1559 		err = f2fs_write_compressed_pages(cc, submitted,
1560 							wbc, io_type);
1561 		if (!err)
1562 			return 0;
1563 		f2fs_bug_on(F2FS_I_SB(cc->inode), err != -EAGAIN);
1564 	}
1565 write:
1566 	f2fs_bug_on(F2FS_I_SB(cc->inode), *submitted);
1567 
1568 	err = f2fs_write_raw_pages(cc, submitted, wbc, io_type);
1569 	f2fs_put_rpages_wbc(cc, wbc, false, 0);
1570 destroy_out:
1571 	f2fs_destroy_compress_ctx(cc, false);
1572 	return err;
1573 }
1574 
1575 static void f2fs_free_dic(struct decompress_io_ctx *dic);
1576 
1577 struct decompress_io_ctx *f2fs_alloc_dic(struct compress_ctx *cc)
1578 {
1579 	struct decompress_io_ctx *dic;
1580 	pgoff_t start_idx = start_idx_of_cluster(cc);
1581 	int i;
1582 
1583 	dic = f2fs_kmem_cache_alloc(dic_entry_slab, GFP_F2FS_ZERO,
1584 					false, F2FS_I_SB(cc->inode));
1585 	if (!dic)
1586 		return ERR_PTR(-ENOMEM);
1587 
1588 	dic->rpages = page_array_alloc(cc->inode, cc->cluster_size);
1589 	if (!dic->rpages) {
1590 		kmem_cache_free(dic_entry_slab, dic);
1591 		return ERR_PTR(-ENOMEM);
1592 	}
1593 
1594 	dic->magic = F2FS_COMPRESSED_PAGE_MAGIC;
1595 	dic->inode = cc->inode;
1596 	atomic_set(&dic->remaining_pages, cc->nr_cpages);
1597 	dic->cluster_idx = cc->cluster_idx;
1598 	dic->cluster_size = cc->cluster_size;
1599 	dic->log_cluster_size = cc->log_cluster_size;
1600 	dic->nr_cpages = cc->nr_cpages;
1601 	refcount_set(&dic->refcnt, 1);
1602 	dic->failed = false;
1603 	dic->need_verity = f2fs_need_verity(cc->inode, start_idx);
1604 
1605 	for (i = 0; i < dic->cluster_size; i++)
1606 		dic->rpages[i] = cc->rpages[i];
1607 	dic->nr_rpages = cc->cluster_size;
1608 
1609 	dic->cpages = page_array_alloc(dic->inode, dic->nr_cpages);
1610 	if (!dic->cpages)
1611 		goto out_free;
1612 
1613 	for (i = 0; i < dic->nr_cpages; i++) {
1614 		struct page *page;
1615 
1616 		page = f2fs_compress_alloc_page();
1617 		if (!page)
1618 			goto out_free;
1619 
1620 		f2fs_set_compressed_page(page, cc->inode,
1621 					start_idx + i + 1, dic);
1622 		dic->cpages[i] = page;
1623 	}
1624 
1625 	return dic;
1626 
1627 out_free:
1628 	f2fs_free_dic(dic);
1629 	return ERR_PTR(-ENOMEM);
1630 }
1631 
1632 static void f2fs_free_dic(struct decompress_io_ctx *dic)
1633 {
1634 	int i;
1635 
1636 	if (dic->tpages) {
1637 		for (i = 0; i < dic->cluster_size; i++) {
1638 			if (dic->rpages[i])
1639 				continue;
1640 			if (!dic->tpages[i])
1641 				continue;
1642 			f2fs_compress_free_page(dic->tpages[i]);
1643 		}
1644 		page_array_free(dic->inode, dic->tpages, dic->cluster_size);
1645 	}
1646 
1647 	if (dic->cpages) {
1648 		for (i = 0; i < dic->nr_cpages; i++) {
1649 			if (!dic->cpages[i])
1650 				continue;
1651 			f2fs_compress_free_page(dic->cpages[i]);
1652 		}
1653 		page_array_free(dic->inode, dic->cpages, dic->nr_cpages);
1654 	}
1655 
1656 	page_array_free(dic->inode, dic->rpages, dic->nr_rpages);
1657 	kmem_cache_free(dic_entry_slab, dic);
1658 }
1659 
1660 static void f2fs_put_dic(struct decompress_io_ctx *dic)
1661 {
1662 	if (refcount_dec_and_test(&dic->refcnt))
1663 		f2fs_free_dic(dic);
1664 }
1665 
1666 /*
1667  * Update and unlock the cluster's pagecache pages, and release the reference to
1668  * the decompress_io_ctx that was being held for I/O completion.
1669  */
1670 static void __f2fs_decompress_end_io(struct decompress_io_ctx *dic, bool failed)
1671 {
1672 	int i;
1673 
1674 	for (i = 0; i < dic->cluster_size; i++) {
1675 		struct page *rpage = dic->rpages[i];
1676 
1677 		if (!rpage)
1678 			continue;
1679 
1680 		/* PG_error was set if verity failed. */
1681 		if (failed || PageError(rpage)) {
1682 			ClearPageUptodate(rpage);
1683 			/* will re-read again later */
1684 			ClearPageError(rpage);
1685 		} else {
1686 			SetPageUptodate(rpage);
1687 		}
1688 		unlock_page(rpage);
1689 	}
1690 
1691 	f2fs_put_dic(dic);
1692 }
1693 
1694 static void f2fs_verify_cluster(struct work_struct *work)
1695 {
1696 	struct decompress_io_ctx *dic =
1697 		container_of(work, struct decompress_io_ctx, verity_work);
1698 	int i;
1699 
1700 	/* Verify the cluster's decompressed pages with fs-verity. */
1701 	for (i = 0; i < dic->cluster_size; i++) {
1702 		struct page *rpage = dic->rpages[i];
1703 
1704 		if (rpage && !fsverity_verify_page(rpage))
1705 			SetPageError(rpage);
1706 	}
1707 
1708 	__f2fs_decompress_end_io(dic, false);
1709 }
1710 
1711 /*
1712  * This is called when a compressed cluster has been decompressed
1713  * (or failed to be read and/or decompressed).
1714  */
1715 void f2fs_decompress_end_io(struct decompress_io_ctx *dic, bool failed)
1716 {
1717 	if (!failed && dic->need_verity) {
1718 		/*
1719 		 * Note that to avoid deadlocks, the verity work can't be done
1720 		 * on the decompression workqueue.  This is because verifying
1721 		 * the data pages can involve reading metadata pages from the
1722 		 * file, and these metadata pages may be compressed.
1723 		 */
1724 		INIT_WORK(&dic->verity_work, f2fs_verify_cluster);
1725 		fsverity_enqueue_verify_work(&dic->verity_work);
1726 	} else {
1727 		__f2fs_decompress_end_io(dic, failed);
1728 	}
1729 }
1730 
1731 /*
1732  * Put a reference to a compressed page's decompress_io_ctx.
1733  *
1734  * This is called when the page is no longer needed and can be freed.
1735  */
1736 void f2fs_put_page_dic(struct page *page)
1737 {
1738 	struct decompress_io_ctx *dic =
1739 			(struct decompress_io_ctx *)page_private(page);
1740 
1741 	f2fs_put_dic(dic);
1742 }
1743 
1744 /*
1745  * check whether cluster blocks are contiguous, and add extent cache entry
1746  * only if cluster blocks are logically and physically contiguous.
1747  */
1748 unsigned int f2fs_cluster_blocks_are_contiguous(struct dnode_of_data *dn)
1749 {
1750 	bool compressed = f2fs_data_blkaddr(dn) == COMPRESS_ADDR;
1751 	int i = compressed ? 1 : 0;
1752 	block_t first_blkaddr = data_blkaddr(dn->inode, dn->node_page,
1753 						dn->ofs_in_node + i);
1754 
1755 	for (i += 1; i < F2FS_I(dn->inode)->i_cluster_size; i++) {
1756 		block_t blkaddr = data_blkaddr(dn->inode, dn->node_page,
1757 						dn->ofs_in_node + i);
1758 
1759 		if (!__is_valid_data_blkaddr(blkaddr))
1760 			break;
1761 		if (first_blkaddr + i - (compressed ? 1 : 0) != blkaddr)
1762 			return 0;
1763 	}
1764 
1765 	return compressed ? i - 1 : i;
1766 }
1767 
1768 const struct address_space_operations f2fs_compress_aops = {
1769 	.releasepage = f2fs_release_page,
1770 	.invalidatepage = f2fs_invalidate_page,
1771 };
1772 
1773 struct address_space *COMPRESS_MAPPING(struct f2fs_sb_info *sbi)
1774 {
1775 	return sbi->compress_inode->i_mapping;
1776 }
1777 
1778 void f2fs_invalidate_compress_page(struct f2fs_sb_info *sbi, block_t blkaddr)
1779 {
1780 	if (!sbi->compress_inode)
1781 		return;
1782 	invalidate_mapping_pages(COMPRESS_MAPPING(sbi), blkaddr, blkaddr);
1783 }
1784 
1785 void f2fs_cache_compressed_page(struct f2fs_sb_info *sbi, struct page *page,
1786 						nid_t ino, block_t blkaddr)
1787 {
1788 	struct page *cpage;
1789 	int ret;
1790 
1791 	if (!test_opt(sbi, COMPRESS_CACHE))
1792 		return;
1793 
1794 	if (!f2fs_is_valid_blkaddr(sbi, blkaddr, DATA_GENERIC_ENHANCE_READ))
1795 		return;
1796 
1797 	if (!f2fs_available_free_memory(sbi, COMPRESS_PAGE))
1798 		return;
1799 
1800 	cpage = find_get_page(COMPRESS_MAPPING(sbi), blkaddr);
1801 	if (cpage) {
1802 		f2fs_put_page(cpage, 0);
1803 		return;
1804 	}
1805 
1806 	cpage = alloc_page(__GFP_NOWARN | __GFP_IO);
1807 	if (!cpage)
1808 		return;
1809 
1810 	ret = add_to_page_cache_lru(cpage, COMPRESS_MAPPING(sbi),
1811 						blkaddr, GFP_NOFS);
1812 	if (ret) {
1813 		f2fs_put_page(cpage, 0);
1814 		return;
1815 	}
1816 
1817 	set_page_private_data(cpage, ino);
1818 
1819 	if (!f2fs_is_valid_blkaddr(sbi, blkaddr, DATA_GENERIC_ENHANCE_READ))
1820 		goto out;
1821 
1822 	memcpy(page_address(cpage), page_address(page), PAGE_SIZE);
1823 	SetPageUptodate(cpage);
1824 out:
1825 	f2fs_put_page(cpage, 1);
1826 }
1827 
1828 bool f2fs_load_compressed_page(struct f2fs_sb_info *sbi, struct page *page,
1829 								block_t blkaddr)
1830 {
1831 	struct page *cpage;
1832 	bool hitted = false;
1833 
1834 	if (!test_opt(sbi, COMPRESS_CACHE))
1835 		return false;
1836 
1837 	cpage = f2fs_pagecache_get_page(COMPRESS_MAPPING(sbi),
1838 				blkaddr, FGP_LOCK | FGP_NOWAIT, GFP_NOFS);
1839 	if (cpage) {
1840 		if (PageUptodate(cpage)) {
1841 			atomic_inc(&sbi->compress_page_hit);
1842 			memcpy(page_address(page),
1843 				page_address(cpage), PAGE_SIZE);
1844 			hitted = true;
1845 		}
1846 		f2fs_put_page(cpage, 1);
1847 	}
1848 
1849 	return hitted;
1850 }
1851 
1852 void f2fs_invalidate_compress_pages(struct f2fs_sb_info *sbi, nid_t ino)
1853 {
1854 	struct address_space *mapping = sbi->compress_inode->i_mapping;
1855 	struct pagevec pvec;
1856 	pgoff_t index = 0;
1857 	pgoff_t end = MAX_BLKADDR(sbi);
1858 
1859 	if (!mapping->nrpages)
1860 		return;
1861 
1862 	pagevec_init(&pvec);
1863 
1864 	do {
1865 		unsigned int nr_pages;
1866 		int i;
1867 
1868 		nr_pages = pagevec_lookup_range(&pvec, mapping,
1869 						&index, end - 1);
1870 		if (!nr_pages)
1871 			break;
1872 
1873 		for (i = 0; i < nr_pages; i++) {
1874 			struct page *page = pvec.pages[i];
1875 
1876 			if (page->index > end)
1877 				break;
1878 
1879 			lock_page(page);
1880 			if (page->mapping != mapping) {
1881 				unlock_page(page);
1882 				continue;
1883 			}
1884 
1885 			if (ino != get_page_private_data(page)) {
1886 				unlock_page(page);
1887 				continue;
1888 			}
1889 
1890 			generic_error_remove_page(mapping, page);
1891 			unlock_page(page);
1892 		}
1893 		pagevec_release(&pvec);
1894 		cond_resched();
1895 	} while (index < end);
1896 }
1897 
1898 int f2fs_init_compress_inode(struct f2fs_sb_info *sbi)
1899 {
1900 	struct inode *inode;
1901 
1902 	if (!test_opt(sbi, COMPRESS_CACHE))
1903 		return 0;
1904 
1905 	inode = f2fs_iget(sbi->sb, F2FS_COMPRESS_INO(sbi));
1906 	if (IS_ERR(inode))
1907 		return PTR_ERR(inode);
1908 	sbi->compress_inode = inode;
1909 
1910 	sbi->compress_percent = COMPRESS_PERCENT;
1911 	sbi->compress_watermark = COMPRESS_WATERMARK;
1912 
1913 	atomic_set(&sbi->compress_page_hit, 0);
1914 
1915 	return 0;
1916 }
1917 
1918 void f2fs_destroy_compress_inode(struct f2fs_sb_info *sbi)
1919 {
1920 	if (!sbi->compress_inode)
1921 		return;
1922 	iput(sbi->compress_inode);
1923 	sbi->compress_inode = NULL;
1924 }
1925 
1926 int f2fs_init_page_array_cache(struct f2fs_sb_info *sbi)
1927 {
1928 	dev_t dev = sbi->sb->s_bdev->bd_dev;
1929 	char slab_name[32];
1930 
1931 	sprintf(slab_name, "f2fs_page_array_entry-%u:%u", MAJOR(dev), MINOR(dev));
1932 
1933 	sbi->page_array_slab_size = sizeof(struct page *) <<
1934 					F2FS_OPTION(sbi).compress_log_size;
1935 
1936 	sbi->page_array_slab = f2fs_kmem_cache_create(slab_name,
1937 					sbi->page_array_slab_size);
1938 	if (!sbi->page_array_slab)
1939 		return -ENOMEM;
1940 	return 0;
1941 }
1942 
1943 void f2fs_destroy_page_array_cache(struct f2fs_sb_info *sbi)
1944 {
1945 	kmem_cache_destroy(sbi->page_array_slab);
1946 }
1947 
1948 static int __init f2fs_init_cic_cache(void)
1949 {
1950 	cic_entry_slab = f2fs_kmem_cache_create("f2fs_cic_entry",
1951 					sizeof(struct compress_io_ctx));
1952 	if (!cic_entry_slab)
1953 		return -ENOMEM;
1954 	return 0;
1955 }
1956 
1957 static void f2fs_destroy_cic_cache(void)
1958 {
1959 	kmem_cache_destroy(cic_entry_slab);
1960 }
1961 
1962 static int __init f2fs_init_dic_cache(void)
1963 {
1964 	dic_entry_slab = f2fs_kmem_cache_create("f2fs_dic_entry",
1965 					sizeof(struct decompress_io_ctx));
1966 	if (!dic_entry_slab)
1967 		return -ENOMEM;
1968 	return 0;
1969 }
1970 
1971 static void f2fs_destroy_dic_cache(void)
1972 {
1973 	kmem_cache_destroy(dic_entry_slab);
1974 }
1975 
1976 int __init f2fs_init_compress_cache(void)
1977 {
1978 	int err;
1979 
1980 	err = f2fs_init_cic_cache();
1981 	if (err)
1982 		goto out;
1983 	err = f2fs_init_dic_cache();
1984 	if (err)
1985 		goto free_cic;
1986 	return 0;
1987 free_cic:
1988 	f2fs_destroy_cic_cache();
1989 out:
1990 	return -ENOMEM;
1991 }
1992 
1993 void f2fs_destroy_compress_cache(void)
1994 {
1995 	f2fs_destroy_dic_cache();
1996 	f2fs_destroy_cic_cache();
1997 }
1998