aboutsummaryrefslogtreecommitdiff
path: root/fs/erofs
AgeCommit message (Expand)AuthorFilesLines
2 daysMerge tag 'pull-bd_inode-1' of git://git.kernel.org/pub/scm/linux/kernel/git/...Gravatar Linus Torvalds 7-44/+33
2024-05-09erofs: Zstandard compression supportGravatar Gao Xiang 9-1/+333
2024-05-08erofs: clean up z_erofs_load_full_lcluster()Gravatar Gao Xiang 2-20/+6
2024-05-08erofs: derive fsid from on-disk UUID for .statfs() if possibleGravatar Hongzhen Luo 1-7/+5
2024-05-08erofs: add a reserved buffer pool for lz4 decompressionGravatar Chunhai Guo 3-17/+52
2024-05-08erofs: do not use pagepool in z_erofs_gbuf_growsize()Gravatar Chunhai Guo 1-36/+31
2024-05-08erofs: rename per-CPU buffers to global buffer pool and make it configurableGravatar Chunhai Guo 6-161/+166
2024-05-08erofs: rename utils.c to zutil.cGravatar Chunhai Guo 2-21/+13
2024-05-03use ->bd_mapping instead of ->bd_inode->i_mappingGravatar Al Viro 1-1/+1
2024-04-28erofs: reliably distinguish block based and fscache modeGravatar Christian Brauner 1-6/+2
2024-04-28erofs: get rid of erofs_fs_contextGravatar Baokun Li 2-70/+53
2024-04-28erofs: modify the error message when prepare_ondemand_read failedGravatar Hongbo Li 1-1/+1
2024-04-25erofs_buf: store address_space instead of inodeGravatar Al Viro 6-10/+9
2024-04-07erofs: switch erofs_bread() to passing offset instead of block numberGravatar Al Viro 7-34/+24
2024-03-25erofs: drop experimental warning for FSDAXGravatar Gao Xiang 1-1/+0
2024-03-12mm, slab: remove last vestiges of SLAB_MEM_SPREADGravatar Linus Torvalds 1-1/+1
2024-03-12Merge tag 'erofs-for-6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 9-317/+335
2024-03-11Merge tag 'vfs-6.9.super' of git://git.kernel.org/pub/scm/linux/kernel/git/vf...Gravatar Linus Torvalds 3-12/+12
2024-03-10erofs: support compressed inodes over fscacheGravatar Jingbo Xu 4-20/+77
2024-03-10erofs: make iov_iter describe target buffers over fscacheGravatar Jingbo Xu 1-112/+123
2024-03-10erofs: fix lockdep false positives on initializing erofs_pseudo_mntGravatar Baokun Li 3-31/+15
2024-03-10erofs: refine managed cache operations to foliosGravatar Gao Xiang 6-48/+34
2024-03-10erofs: convert z_erofs_submissionqueue_endio() to foliosGravatar Gao Xiang 1-11/+11
2024-03-10erofs: convert z_erofs_fill_bio_vec() to foliosGravatar Gao Xiang 1-35/+36
2024-03-10erofs: get rid of `justfound` debugging tagGravatar Gao Xiang 1-17/+3
2024-03-10erofs: convert z_erofs_do_read_page() to foliosGravatar Gao Xiang 1-16/+15
2024-03-10erofs: convert z_erofs_onlinepage_.* to foliosGravatar Gao Xiang 1-28/+22
2024-03-07erofs: apply proper VMA alignment for memory mapped files on THPGravatar Gao Xiang 1-0/+1
2024-03-07erofs: fix uninitialized page cache reported by KMSANGravatar Gao Xiang 1-1/+2
2024-02-25Merge tag 'erofs-for-6.8-rc6-fixes' of git://git.kernel.org/pub/scm/linux/ker...Gravatar Linus Torvalds 1-14/+14
2024-02-25Merge tag 'pull-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfsGravatar Linus Torvalds 1-3/+4
2024-02-25erofs: port device access to fileGravatar Christian Brauner 3-12/+12
2024-02-22erofs: fix refcount on the metabuf used for inode lookupGravatar Sandeep Dhavale 1-14/+14
2024-02-20erofs: fix handling kern_mount() failureGravatar Al Viro 1-3/+4
2024-01-27erofs: relaxed temporary buffers allocation on readaheadGravatar Chunhai Guo 5-20/+42
2024-01-26erofs: fix infinite loop due to a race of filling compressed_bvecsGravatar Gao Xiang 1-36/+38
2024-01-25erofs: get rid of unneeded GFP_NOFSGravatar Jingbo Xu 4-7/+7
2024-01-19Merge tag 'vfs-6.8.netfs' of gitolite.kernel.org:pub/scm/linux/kernel/git/vfs...Gravatar Linus Torvalds 1-2/+5
2024-01-18Merge tag 'erofs-for-6.8-rc1-fixes' of git://git.kernel.org/pub/scm/linux/ker...Gravatar Linus Torvalds 3-14/+17
2024-01-15erofs: Don't use certain unnecessary folio_*() functionsGravatar David Howells 1-3/+3
2024-01-13erofs: fix inconsistent per-file compression formatGravatar Gao Xiang 2-11/+14
2024-01-10erofs: make erofs_{err,info}() support NULL sb parameterGravatar Chunhai Guo 2-3/+9
2024-01-10erofs: avoid debugging output for (de)compressed dataGravatar Gao Xiang 1-7/+1
2023-12-24netfs, fscache: Combine fscache with netfsGravatar David Howells 1-2/+5
2023-12-21erofs: allow partially filled compressed bvecsGravatar Yue Hu 1-23/+13
2023-12-18erofs: enable sub-page compressed block supportGravatar Gao Xiang 2-4/+8
2023-12-18erofs: refine z_erofs_transform_plain() for sub-page block supportGravatar Gao Xiang 1-33/+48
2023-12-18erofs: fix ztailpacking for subpage compressed blocksGravatar Gao Xiang 1-1/+1
2023-12-15erofs: fix up compacted indexes for block size < 4096Gravatar Gao Xiang 1-18/+14
2023-12-15erofs: record `pclustersize` in bytes instead of pagesGravatar Gao Xiang 1-38/+26