mbox series

[f2fs-dev,GIT,PULL] f2fs update for 6.4

Message ID ZEgdmJWhJX9NJ0fG@google.com (mailing list archive)
State Mainlined
Commit 5c7ecada25d2086aee607ff7deb69e77faa4aa92
Headers show
Series [f2fs-dev,GIT,PULL] f2fs update for 6.4 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git tags/f2fs-for-6.4-rc1

Message

Jaegeuk Kim April 25, 2023, 6:36 p.m. UTC
Hi Linus,

Could you please consider this pull request?

Thanks,

The following changes since commit ffe78bbd512166e0ef1cc4858010b128c510ed7d:

  Merge tag 'xtensa-20230327' of https://github.com/jcmvbkbc/linux-xtensa (2023-03-29 10:24:07 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git tags/f2fs-for-6.4-rc1

for you to fetch changes up to 8375be2b6414577487486a92995bdc97a7934033:

  f2fs: remove unnessary comment in __may_age_extent_tree (2023-04-24 11:03:10 -0700)

----------------------------------------------------------------
f2fs update for 6.4-rc1

In this round, we've mainly modified to support non-power-of-two zone size,
which is not required for f2fs by design. In order to avoid arch dependency,
we refactored the messy rb_entry structure shared across different extent_cache.
In addition to the improvement, we've also fixed several subtle bugs and
error cases.

Enhancement:
- support non-power-of-two zone size for zoned device
- remove sharing the rb_entry structure in extent cache
- refactor f2fs_gc to call checkpoint in urgent condition
- support iopoll

Bug fix:
- fix potential corruption when moving a directory
- fix to avoid use-after-free for cached IPU bio
- fix the folio private usage
- avoid kernel warnings or panics in the cp_error case
- fix to recover quota data correctly
- fix some bugs in atomic operations
- fix system crash due to lack of free space in LFS
- fix null pointer panic in tracepoint in __replace_atomic_write_block
- fix iostat lock protection
- fix scheduling while atomic in decompression path
- preserve direct write semantics when buffering is forced
- fix to call f2fs_wait_on_page_writeback() in f2fs_write_raw_pages()

----------------------------------------------------------------
Chao Yu (10):
      f2fs: use f2fs_hw_is_readonly() instead of bdev_read_only()
      f2fs: remove unneeded in-memory i_crtime copy
      f2fs: fix to avoid use-after-free for cached IPU bio
      f2fs: fix to drop all dirty pages during umount() if cp_error is set
      f2fs: fix to keep consistent i_gc_rwsem lock order
      f2fs: fix to check readonly condition correctly
      f2fs: fix to recover quota data correctly
      f2fs: fix to check return value of f2fs_do_truncate_blocks()
      f2fs: fix to check return value of inc_valid_block_count()
      f2fs: remove folio_detach_private() in .invalidate_folio and .release_folio

Daeho Jeong (3):
      f2fs: fix passing relative address when discard zones
      f2fs: use cow inode data when updating atomic write
      f2fs: allocate node blocks for atomic write block replacement

Hans Holmberg (1):
      f2fs: preserve direct write semantics when buffering is forced

Jaegeuk Kim (10):
      f2fs: factor out victim_entry usage from general rb_tree use
      f2fs: factor out discard_cmd usage from general rb_tree use
      f2fs: remove entire rb_entry sharing
      f2fs: apply zone capacity to all zone type
      f2fs: fix scheduling while atomic in decompression path
      f2fs: fix null pointer panic in tracepoint in __replace_atomic_write_block
      f2fs: fix potential corruption when moving a directory
      f2fs: refactor f2fs_gc to call checkpoint in urgent condition
      f2fs: relax sanity check if checkpoint is corrupted
      f2fs: remove power-of-two limitation of zoned device

Li Zetao (1):
      f2fs: make f2fs_sync_inode_meta() static

Qi Han (1):
      f2fs: remove unnessary comment in __may_age_extent_tree

Qilin Tan (1):
      f2fs: fix iostat lock protection

Wang Han (1):
      docs: f2fs: Correct instruction to disable checkpoint

Weizhao Ouyang (1):
      f2fs: use common implementation of file type

Wu Bo (2):
      f2fs: support iopoll method
      f2fs: allocate trace path buffer from names_cache

Yangtao Li (16):
      f2fs: export compress_percent and compress_watermark entries
      f2fs: convert to use bitmap API
      f2fs: handle dqget error in f2fs_transfer_project_quota()
      f2fs: convert to MAX_SBI_FLAG instead of 32 in stat_show()
      f2fs: fix to handle filemap_fdatawrite() error in f2fs_ioc_decompress_file/f2fs_ioc_compress_file
      f2fs: remove else in f2fs_write_cache_pages()
      f2fs: compress: fix to call f2fs_wait_on_page_writeback() in f2fs_write_raw_pages()
      f2fs: convert is_extension_exist() to return bool type
      f2fs: add compression feature check for all compress mount opt
      f2fs: remove struct victim_selection default_v_ops
      f2fs: set default compress option only when sb_has_compression
      f2fs: convert to use sysfs_emit
      f2fs: merge lz4hc_compress_pages() to lz4_compress_pages()
      f2fs: remove batched_trim_sections node description
      f2fs: remove bulk remove_proc_entry() and unnecessary kobject_del()
      f2fs: add has_enough_free_secs()

Yohan Joung (2):
      f2fs: fix align check for npo2
      f2fs: add radix_tree_preload_end in error case

Yonggil Song (3):
      f2fs: fix uninitialized skipped_gc_rwsem
      f2fs: Fix discard bug on zoned block devices with 2MiB zone size
      f2fs: Fix system crash due to lack of free space in LFS

 Documentation/ABI/testing/sysfs-fs-f2fs |  23 +-
 Documentation/filesystems/f2fs.rst      |   2 +-
 fs/f2fs/checkpoint.c                    |  52 ++---
 fs/f2fs/compress.c                      |  47 ++--
 fs/f2fs/data.c                          |  71 +++---
 fs/f2fs/debug.c                         |  37 +--
 fs/f2fs/dir.c                           |  47 +---
 fs/f2fs/extent_cache.c                  | 264 +++++++--------------
 fs/f2fs/f2fs.h                          | 252 ++++++++++-----------
 fs/f2fs/file.c                          |  76 +++++--
 fs/f2fs/gc.c                            | 205 ++++++++++-------
 fs/f2fs/gc.h                            |  16 +-
 fs/f2fs/inline.c                        |   2 +-
 fs/f2fs/inode.c                         |   5 +-
 fs/f2fs/namei.c                         |  28 ++-
 fs/f2fs/node.h                          |  20 +-
 fs/f2fs/recovery.c                      |  17 +-
 fs/f2fs/segment.c                       | 390 +++++++++++++++++---------------
 fs/f2fs/segment.h                       |  57 +++--
 fs/f2fs/super.c                         | 111 +++++++--
 fs/f2fs/sysfs.c                         |  50 ++--
 include/linux/f2fs_fs.h                 |  24 +-
 22 files changed, 899 insertions(+), 897 deletions(-)

Comments

pr-tracker-bot@kernel.org April 26, 2023, 5:06 p.m. UTC | #1
The pull request you sent on Tue, 25 Apr 2023 11:36:08 -0700:

> git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git tags/f2fs-for-6.4-rc1

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/5c7ecada25d2086aee607ff7deb69e77faa4aa92

Thank you!
patchwork-bot+f2fs@kernel.org April 26, 2023, 11:07 p.m. UTC | #2
Hello:

This pull request was applied to jaegeuk/f2fs.git (dev)
by Linus Torvalds <torvalds@linux-foundation.org>:

On Tue, 25 Apr 2023 11:36:08 -0700 you wrote:
> Hi Linus,
> 
> Could you please consider this pull request?
> 
> Thanks,
> 
> The following changes since commit ffe78bbd512166e0ef1cc4858010b128c510ed7d:
> 
> [...]

Here is the summary with links:
  - [f2fs-dev,GIT,PULL] f2fs update for 6.4
    https://git.kernel.org/jaegeuk/f2fs/c/5c7ecada25d2

You are awesome, thank you!