aboutsummaryrefslogtreecommitdiff
path: root/fs/f2fs/compress.c
AgeCommit message (Expand)AuthorFilesLines
2023-04-10f2fs: merge lz4hc_compress_pages() to lz4_compress_pages()Gravatar Yangtao Li 1-22/+8
2023-03-29f2fs: fix scheduling while atomic in decompression pathGravatar Jaegeuk Kim 1-1/+6
2023-03-29f2fs: compress: fix to call f2fs_wait_on_page_writeback() in f2fs_write_raw_p...Gravatar Yangtao Li 1-0/+6
2023-03-29f2fs: convert to use bitmap APIGravatar Yangtao Li 1-2/+2
2023-02-07f2fs: fix typos in commentsGravatar Jinyoung CHOI 1-1/+1
2023-02-02f2fs: clean up i_compress_flag and i_compress_level usageGravatar Chao Yu 1-5/+3
2023-02-02f2fs: reduce stack memory cost by using bitfield in struct f2fs_io_infoGravatar Chao Yu 1-2/+3
2023-01-11f2fs: mark f2fs_init_compress_mempool w/ __initGravatar Yangtao Li 1-1/+1
2023-01-11f2fs: start freeing cluster pages from the unused numberGravatar Zhang Qilong 1-3/+1
2023-01-06f2fs: split __submit_bioGravatar Christoph Hellwig 1-1/+1
2023-01-04f2fs: fix to support .migrate_folio for compressed inodeGravatar Chao Yu 1-0/+1
2022-12-14Merge tag 'f2fs-for-6.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-41/+7
2022-12-08f2fs: do some cleanup for f2fs module initGravatar Yangtao Li 1-40/+6
2022-11-28fsverity: stop using PG_error to track error statusGravatar Eric Biggers 1-33/+31
2022-11-28f2fs: set zstd compress level correctlyGravatar Sheng Yong 1-1/+1
2022-10-04f2fs: support recording errors into superblockGravatar Chao Yu 1-0/+2
2022-10-04f2fs: remove redundant check in f2fs_sanity_check_clusterGravatar Zhang Qilong 1-11/+9
2022-10-04f2fs: use COMPRESS_MAPPING to get compress cache mappingGravatar Zhang Qilong 1-1/+1
2022-09-12f2fs: simplify code in f2fs_prepare_decomp_memGravatar Zhang Qilong 1-6/+2
2022-08-08Merge tag 'f2fs-for-6.0' of git://git.kernel.org/pub/scm/linux/kernel/git/jae...Gravatar Linus Torvalds 1-76/+153
2022-08-05f2fs: use onstack pages instead of pvecGravatar Fengnan Chang 1-4/+4
2022-08-05f2fs: intorduce f2fs_all_cluster_page_readyGravatar Fengnan Chang 1-7/+14
2022-08-05f2fs: handle decompress only post processing in softirqGravatar Daeho Jeong 1-68/+135
2022-06-29f2fs: Convert f2fs_invalidate_compress_pages() to use filemap_get_folios()Gravatar Matthew Wilcox (Oracle) 1-20/+15
2022-06-28f2fs: initialize page_array_entry slab only if compression feature is onGravatar Chao Yu 1-0/+3
2022-05-09f2fs: Convert to release_folioGravatar Matthew Wilcox (Oracle) 1-1/+1
2022-03-22Merge tag 'folio-5.18b' of git://git.infradead.org/users/willy/pagecacheGravatar Linus Torvalds 1-1/+1
2022-03-22Merge branch 'akpm' (patches from Andrew)Gravatar Linus Torvalds 1-3/+1
2022-03-22f2fs: replace congestion_wait() calls with io_schedule_timeout()Gravatar NeilBrown 1-3/+1
2022-03-17f2fs: compress: fix to print raw data size in error path of lz4 decompressionGravatar Chao Yu 1-3/+2
2022-03-15f2fs: Convert invalidatepage to invalidate_folioGravatar Matthew Wilcox (Oracle) 1-1/+1
2022-01-24f2fs: move f2fs to use reader-unfair rwsemsGravatar Tim Murray 1-3/+3
2022-01-04f2fs: do not bother checkpoint by f2fs_get_node_infoGravatar Jaegeuk Kim 1-1/+1
2021-12-14f2fs: compress: fix potential deadlock of compress fileGravatar Hyeong-Jun Kim 1-28/+22
2021-11-17f2fs: compress: reduce one page array alloc and free when write compressed pageGravatar Fengnan Chang 1-22/+10
2021-11-13Merge tag 'zstd-for-linus-v5.16' of git://github.com/terrelln/linuxGravatar Linus Torvalds 1-28/+28
2021-11-13Merge tag 'f2fs-for-5.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-0/+20
2021-11-08lib: zstd: Add kernel-specific APIGravatar Nick Terrell 1-28/+28
2021-10-26f2fs: compress: fix overwrite may reduce compress ratio unproperlyGravatar Fengnan Chang 1-0/+19
2021-10-26f2fs: include non-compressed blocks in compr_written_blockGravatar Daeho Jeong 1-0/+1
2021-10-18mm: don't include <linux/blk-cgroup.h> in <linux/backing-dev.h>Gravatar Christoph Hellwig 1-0/+1
2021-08-31f2fs: deallocate compressed pages when error happensGravatar Jaegeuk Kim 1-6/+6
2021-08-17f2fs: compress: do sanity check on clusterGravatar Chao Yu 1-0/+53
2021-08-17f2fs: support fault injection for f2fs_kmem_cache_alloc()Gravatar Chao Yu 1-3/+5
2021-08-05f2fs: extent cache: support unaligned extentGravatar Chao Yu 1-0/+24
2021-06-23f2fs: compress: add compress_inode to cache compressed blocksGravatar Chao Yu 1-2/+166
2021-06-23f2fs: introduce FI_COMPRESS_RELEASED instead of using IMMUTABLE bitGravatar Jaegeuk Kim 1-1/+2
2021-06-23f2fs: compress: remove unneeded preallocationGravatar Chao Yu 1-24/+3
2021-05-26f2fs: let's allow compression for mmap filesGravatar Jaegeuk Kim 1-2/+0
2021-05-14f2fs: compress: clean up parameter of __f2fs_cluster_blocks()Gravatar Chao Yu 1-20/+13