-
- Downloads
Merge tag 'f2fs-for-5.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs
Pull f2fs updates from Jaegeuk Kim: "In this round, we've made more work into per-file compression support. For example, F2FS_IOC_GET | SET_COMPRESS_OPTION provides a way to change the algorithm or cluster size per file. F2FS_IOC_COMPRESS | DECOMPRESS_FILE provides a way to compress and decompress the existing normal files manually. There is also a new mount option, compress_mode=fs|user, which can control who compresses the data. Chao also added a checksum feature with a mount option so that we are able to detect any corrupted cluster. In addition, Daniel contributed casefolding with encryption patch, which will be used for Android devices. Summary: Enhancements: - add ioctls and mount option to manage per-file compression feature - support casefolding with encryption - support checksum for compressed cluster - avoid IO starvation by replacing mutex with rwsem - add sysfs, max_io_bytes, to control max bio size Bug fixes: - fix use-after-free issue when compression and fsverity are enabled - fix consistency corruption during fault injection test - fix data offset for lseek - get rid of buffer_head which has 32bits limit in fiemap - fix some bugs in multi-partitions support - fix nat entry count calculation in shrinker - fix some stat information And, we've refactored some logics and fix minor bugs as well" * tag 'f2fs-for-5.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs: (36 commits) f2fs: compress: fix compression chksum f2fs: fix shift-out-of-bounds in sanity_check_raw_super() f2fs: fix race of pending_pages in decompression f2fs: fix to account inline xattr correctly during recovery f2fs: inline: fix wrong inline inode stat f2fs: inline: correct comment in f2fs_recover_inline_data f2fs: don't check PAGE_SIZE again in sanity_check_raw_super() f2fs: convert to F2FS_*_INO macro f2fs: introduce max_io_bytes, a sysfs entry, to limit bio size f2fs: don't allow any writes on readonly mount f2fs: avoid race condition for shrinker count f2fs: add F2FS_IOC_DECOMPRESS_FILE and F2FS_IOC_COMPRESS_FILE f2fs: add compress_mode mount option f2fs: Remove unnecessary unlikely() f2fs: init dirty_secmap incorrectly f2fs: remove buffer_head which has 32bits limit f2fs: fix wrong block count instead of bytes f2fs: use new conversion functions between blks and bytes f2fs: rename logical_to_blk and blk_to_logical f2fs: fix kbytes written stat for multi-device case ...
Showing
- Documentation/ABI/testing/sysfs-fs-f2fs 7 additions, 0 deletionsDocumentation/ABI/testing/sysfs-fs-f2fs
- Documentation/filesystems/f2fs.rst 36 additions, 0 deletionsDocumentation/filesystems/f2fs.rst
- MAINTAINERS 1 addition, 0 deletionsMAINTAINERS
- fs/crypto/fname.c 0 additions, 4 deletionsfs/crypto/fname.c
- fs/crypto/fscrypt_private.h 0 additions, 1 deletionfs/crypto/fscrypt_private.h
- fs/crypto/hooks.c 0 additions, 1 deletionfs/crypto/hooks.c
- fs/ext4/dir.c 0 additions, 7 deletionsfs/ext4/dir.c
- fs/ext4/ext4.h 0 additions, 4 deletionsfs/ext4/ext4.h
- fs/ext4/namei.c 1 addition, 0 deletionsfs/ext4/namei.c
- fs/ext4/super.c 0 additions, 5 deletionsfs/ext4/super.c
- fs/f2fs/acl.c 1 addition, 1 deletionfs/f2fs/acl.c
- fs/f2fs/checkpoint.c 29 additions, 8 deletionsfs/f2fs/checkpoint.c
- fs/f2fs/compress.c 23 additions, 3 deletionsfs/f2fs/compress.c
- fs/f2fs/compress.h 0 additions, 0 deletionsfs/f2fs/compress.h
- fs/f2fs/data.c 119 additions, 92 deletionsfs/f2fs/data.c
- fs/f2fs/debug.c 6 additions, 5 deletionsfs/f2fs/debug.c
- fs/f2fs/dir.c 76 additions, 29 deletionsfs/f2fs/dir.c
- fs/f2fs/f2fs.h 75 additions, 106 deletionsfs/f2fs/f2fs.h
- fs/f2fs/file.c 381 additions, 41 deletionsfs/f2fs/file.c
- fs/f2fs/gc.c 2 additions, 2 deletionsfs/f2fs/gc.c
Loading
Please register or sign in to comment