lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <ZvInHczHWvWeXEoF@google.com>
Date: Tue, 24 Sep 2024 02:42:37 +0000
From: Jaegeuk Kim <jaegeuk@...nel.org>
To: Linus Torvalds <torvalds@...ux-foundation.org>
Cc: Linux F2FS Dev Mailing List <linux-f2fs-devel@...ts.sourceforge.net>,
	Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: [GIT PULL] f2fs for 6.12-rc1

Hi Linus,

Could you please consider this pull reuqest?

Thanks,

The following changes since commit c813111d19e65b6336a6352eae9c1ff5c40f722f:

  Merge tag 'slab-fixes-for-6.11-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab (2024-08-05 09:23:00 -0700)

are available in the Git repository at:

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

for you to fetch changes up to ae87b9c2dc9800e6ab52febd09341140599ff8e3:

  f2fs: allow F2FS_IPU_NOCACHE for pinned file (2024-09-23 15:42:13 +0000)

----------------------------------------------------------------
f2fs-6.12-rc1

In this series, the main changes include 1) converting major IO paths to use
folio, and 2) adding various knobs to control GC more flexibly for Zoned
devices. In addition, there are several patches to address corner cases of
atomic file operations and better support for file pinning on zoned device.

Enhancement:
 - add knobs to tune foreground/background GCs for Zoned devices
 - convert IO paths to use folio
 - reduce expensive checkpoint trigger frequency
 - allow F2FS_IPU_NOCACHE for pinned file
 - forcibly migrate to secure space for zoned device file pinning
 - get rid of buffer_head use
 - add write priority option based on zone UFS
 - get rid of online repair on corrupted directory

Bug fix:
 - fix to don't panic system for no free segment fault injection
 - fix to don't set SB_RDONLY in f2fs_handle_critical_error()
 - avoid unused block when dio write in LFS mode
 - compress: don't redirty sparse cluster during {,de}compress
 - check discard support for conventional zones
 - atomic: prevent atomic file from being dirtied before commit
 - atomic: fix to check atomic_file in f2fs ioctl interfaces
 - atomic: fix to forbid dio in atomic_file
 - atomic: fix to truncate pagecache before on-disk metadata truncation
 - atomic: create COW inode from parent dentry
 - atomic: fix to avoid racing w/ GC
 - atomic: require FMODE_WRITE for atomic write ioctls
 - fix to wait page writeback before setting gcing flag
 - fix to avoid racing in between read and OPU dio write, dio completion
 - fix several potential integer overflows in file offsets and dir_block_index
 - fix to avoid use-after-free in f2fs_stop_gc_thread()

As usual, there are several code clean-ups and refactorings.

----------------------------------------------------------------
Chao Yu (32):
      f2fs: clean up data_blkaddr() and get_dnode_addr()
      f2fs: atomic: fix to avoid racing w/ GC
      f2fs: reduce expensive checkpoint trigger frequency
      f2fs: fix to wait dio completion
      f2fs: fix to avoid racing in between read and OPU dio write
      f2fs: get rid of buffer_head use
      f2fs: fix to wait page writeback before setting gcing flag
      f2fs: atomic: fix to truncate pagecache before on-disk metadata truncation
      f2fs: fix to avoid use-after-free in f2fs_stop_gc_thread()
      f2fs: atomic: fix to forbid dio in atomic_file
      f2fs: convert f2fs_compress_ctx_add_page() to use folio
      f2fs: convert f2fs_vm_page_mkwrite() to use folio
      f2fs: convert f2fs_clear_page_cache_dirty_tag() to use folio
      f2fs: convert f2fs_write_inline_data() to use folio
      f2fs: convert f2fs_write_single_data_page() to use folio
      f2fs: convert f2fs_do_write_meta_page() to use folio
      f2fs: convert __f2fs_write_meta_page() to use folio
      f2fs: convert f2fs_read_multi_pages() to use folio
      f2fs: convert f2fs_handle_page_eio() to use folio
      f2fs: convert f2fs_submit_page_read() to use folio
      f2fs: convert f2fs_write_begin() to use folio
      f2fs: convert f2fs_write_end() to use folio
      f2fs: convert f2fs_set_compressed_page() to use folio
      f2fs: convert f2fs_do_write_data_page() to use folio
      f2fs: convert f2fs_write_data_page() to use folio
      f2fs: convert __write_node_page() to use folio
      f2fs: convert read_node_page() to use folio
      f2fs: get rid of page->index
      f2fs: get rid of online repaire on corrupted directory
      f2fs: fix to check atomic_file in f2fs ioctl interfaces
      f2fs: fix to don't set SB_RDONLY in f2fs_handle_critical_error()
      f2fs: fix to don't panic system for no free segment fault injection

Christophe JAILLET (1):
      f2fs: Use sysfs_emit_at() to simplify code

Daeho Jeong (9):
      f2fs: prevent atomic file from being dirtied before commit
      f2fs: make BG GC more aggressive for zoned devices
      f2fs: introduce migration_window_granularity
      f2fs: add reserved_segments sysfs node
      f2fs: increase BG GC migration window granularity when boosted for zoned devices
      f2fs: do FG_GC when GC boosting is required for zoned devices
      f2fs: create gc_no_zoned_gc_percent and gc_boost_zoned_gc_percent
      f2fs: add valid block ratio not to do excessive GC for one time GC
      f2fs: forcibly migrate to secure space for zoned device file pinning

Daejun Park (1):
      f2fs: avoid unused block when dio write in LFS mode

Jaegeuk Kim (1):
      f2fs: allow F2FS_IPU_NOCACHE for pinned file

Jann Horn (1):
      f2fs: Require FMODE_WRITE for atomic write ioctls

Julian Sun (2):
      f2fs: fix macro definition on_f2fs_build_free_nids
      f2fs: fix macro definition stat_inc_cp_count

Liao Yuanhong (1):
      f2fs: add write priority option based on zone UFS

Nikita Zhandarovich (3):
      f2fs: prevent possible int overflow in dir_block_index()
      f2fs: fix several potential integer overflows in file offsets
      f2fs: avoid potential int overflow in sanity_check_area_boundary()

Shin'ichiro Kawasaki (1):
      f2fs: check discard support for conventional zones

Wenjie Cheng (1):
      Revert "f2fs: use flush command instead of FUA for zoned device"

Yeongjin Gil (2):
      f2fs: Create COW inode from parent dentry for atomic write
      f2fs: compress: don't redirty sparse cluster during {,de}compress

Zhiguo Niu (2):
      f2fs: fix to use per-inode maxbytes and cleanup
      f2fs: clean up val{>>,<<}F2FS_BLKSIZE_BITS

Zijie Wang (1):
      f2fs: use f2fs_get_node_page when write inline data

liuderong (1):
      f2fs: remove unused parameters

liujinbao1 (1):
      f2fs: sysfs: support atgc_enabled

 Documentation/ABI/testing/sysfs-fs-f2fs |  56 +++++++++
 fs/f2fs/checkpoint.c                    |  17 +--
 fs/f2fs/compress.c                      |  63 ++++++----
 fs/f2fs/data.c                          | 195 +++++++++++++++++--------------
 fs/f2fs/debug.c                         |   2 +-
 fs/f2fs/dir.c                           |   8 +-
 fs/f2fs/extent_cache.c                  |   4 +-
 fs/f2fs/f2fs.h                          | 148 +++++++++++++++---------
 fs/f2fs/file.c                          | 199 +++++++++++++++++++++-----------
 fs/f2fs/gc.c                            | 113 +++++++++++++-----
 fs/f2fs/gc.h                            |  29 +++++
 fs/f2fs/inline.c                        |  31 +++--
 fs/f2fs/inode.c                         |   9 +-
 fs/f2fs/namei.c                         |  68 -----------
 fs/f2fs/node.c                          |  46 ++++----
 fs/f2fs/segment.c                       |  72 +++++++++---
 fs/f2fs/segment.h                       |   5 +-
 fs/f2fs/super.c                         | 119 +++++++++++--------
 fs/f2fs/sysfs.c                         |  82 +++++++++----
 fs/f2fs/verity.c                        |   5 +-
 fs/f2fs/xattr.c                         |  14 ++-
 include/linux/f2fs_fs.h                 |   4 +-
 include/trace/events/f2fs.h             |   3 +-
 23 files changed, 815 insertions(+), 477 deletions(-)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ