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: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <Z0SdunZ61-OMaH1o@google.com>
Date: Mon, 25 Nov 2024 15:54:34 +0000
From: Jaegeuk Kim <jaegeuk@...nel.org>
To: Linus Torvalds <torvalds@...ux-foundation.org>
Cc: Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
	Linux F2FS Dev Mailing List <linux-f2fs-devel@...ts.sourceforge.net>
Subject: [GIT PULL] f2fs for 6.13-rc1

Hi Linus,

Could you please consideri this pull request?

Thanks,

The following changes since commit eca631b8fe808748d7585059c4307005ca5c5820:

  Merge tag 'f2fs-6.12-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs (2024-10-14 11:19:19 -0700)

are available in the Git repository at:

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

for you to fetch changes up to bc8aeb04fd80cb8cfae3058445c84410fd0beb5e:

  f2fs: fix to drop all discards after creating snapshot on lvm device (2024-11-23 15:48:15 +0000)

----------------------------------------------------------------
f2fs-for-6.13-rc1

This series introduces a device aliasing feature where user can carve out
partitions but reclaim the space back by deleting aliased file in root dir.
In addition to that, there're numerous minor bug fixes in zoned device support,
checkpoint=disable, extent cache management, fiemap, and lazytime mount option.
The full list of noticeable changes can be found below.

Enhancement:
 - introduce device aliasing file
 - add stats in debugfs to show multiple devices
 - add a sysfs node to limit max read extent count per-inode
 - modify f2fs_is_checkpoint_ready logic to allow more data to be written with the CP disable
 - decrease spare area for pinned files for zoned devices

Bug fix:
 - Revert "f2fs: remove unreachable lazytime mount option parsing"
 - adjust unusable cap before checkpoint=disable mode
 - fix to drop all discards after creating snapshot on lvm device
 - fix to shrink read extent node in batches
 - fix changing cursegs if recovery fails on zoned device
 - fix to adjust appropriate length for fiemap
 - fix fiemap failure issue when page size is 16KB
 - fix to avoid forcing direct write to use buffered IO on inline_data inode
 - fix to map blocks correctly for direct write
 - fix to account dirty data in __get_secs_required()
 - fix null-ptr-deref in f2fs_submit_page_bio()
 - f2fs: compress: fix inconsistent update of i_blocks in release_compress_blocks and reserve_compress_blocks

----------------------------------------------------------------
Andrew Kreimer (1):
      f2fs: fix typos

Chao Yu (17):
      f2fs: fix to account dirty data in __get_secs_required()
      f2fs: fix to do sanity check on node blkaddr in truncate_node()
      f2fs: multidevice: add stats in debugfs
      f2fs: zone: introduce first_zoned_segno in f2fs_sb_info
      f2fs: fix to avoid potential deadlock in f2fs_record_stop_reason()
      f2fs: fix to parse temperature correctly in f2fs_get_segment_temp()
      f2fs: clean up opened code w/ {get,set}_nid()
      f2fs: fix to convert log type to segment data type correctly
      f2fs: fix to map blocks correctly for direct write
      f2fs: fix to avoid forcing direct write to use buffered IO on inline_data inode
      f2fs: fix to do cast in F2FS_{BLK_TO_BYTES, BTYES_TO_BLK} to avoid overflow
      f2fs: clean up w/ F2FS_{BLK_TO_BYTES,BTYES_TO_BLK}
      f2fs: fix to requery extent which cross boundary of inquiry
      f2fs: print message if fscorrupted was found in f2fs_new_node_page()
      f2fs: fix to shrink read extent node in batches
      f2fs: add a sysfs node to limit max read extent count per-inode
      f2fs: fix to drop all discards after creating snapshot on lvm device

Daeho Jeong (3):
      f2fs: decrease spare area for pinned files for zoned devices
      f2fs: introduce device aliasing file
      f2fs: adjust unusable cap before checkpoint=disable mode

Daniel Yang (1):
      f2fs: replace deprecated strcpy with strscpy

Jaegeuk Kim (1):
      Revert "f2fs: remove unreachable lazytime mount option parsing"

Long Li (1):
      f2fs: fix race in concurrent f2fs_stop_gc_thread

LongPing Wei (2):
      f2fs: fix the wrong f2fs_bug_on condition in f2fs_do_replace_block
      f2fs: clean up the unused variable additional_reserved_segments

Qi Han (3):
      f2fs: compress: fix inconsistent update of i_blocks in release_compress_blocks and reserve_compress_blocks
      f2fs: fix f2fs_bug_on when uninstalling filesystem call f2fs_evict_inode.
      f2fs: modify f2fs_is_checkpoint_ready logic to allow more data to be written with the CP disable

Sheng Yong (2):
      f2fs: fix changing cursegs if recovery fails on zoned device
      f2fs: clear SBI_POR_DOING before initing inmem curseg

Thorsten Blum (1):
      f2fs: Use struct_size() to improve f2fs_acl_clone()

Xiuhong Wang (1):
      f2fs: fix fiemap failure issue when page size is 16KB

Ye Bin (1):
      f2fs: fix null-ptr-deref in f2fs_submit_page_bio()

Yongpeng Yang (1):
      f2fs: check curseg->inited before write_sum_page in change_curseg

Zeng Heng (1):
      f2fs: Fix not used variable 'index'

Zhiguo Niu (3):
      f2fs: fix to avoid use GC_AT when setting gc_mode as GC_URGENT_LOW or GC_URGENT_MID
      f2fs: remove redundant atomic file check in defragment
      f2fs: fix to adjust appropriate length for fiemap

liuderong (1):
      f2fs: introduce f2fs_get_section_mtime

 Documentation/ABI/testing/sysfs-fs-f2fs |  13 ++-
 Documentation/filesystems/f2fs.rst      |  44 +++++++++
 fs/f2fs/acl.c                           |   5 +-
 fs/f2fs/checkpoint.c                    |   2 +-
 fs/f2fs/data.c                          | 114 ++++++++++------------
 fs/f2fs/debug.c                         | 111 +++++++++++++++++++++-
 fs/f2fs/extent_cache.c                  | 119 +++++++++++++++++------
 fs/f2fs/f2fs.h                          |  38 ++++++--
 fs/f2fs/file.c                          |  71 +++++++++++---
 fs/f2fs/gc.c                            |  19 ++--
 fs/f2fs/gc.h                            |   1 +
 fs/f2fs/inode.c                         |  23 ++++-
 fs/f2fs/node.c                          |  28 ++++--
 fs/f2fs/recovery.c                      |   9 +-
 fs/f2fs/segment.c                       | 161 +++++++++++++++++++++++---------
 fs/f2fs/segment.h                       |  72 ++++++++------
 fs/f2fs/super.c                         | 101 ++++++++++++++------
 fs/f2fs/sysfs.c                         |  16 +++-
 include/linux/f2fs_fs.h                 |   7 +-
 include/uapi/linux/f2fs.h               |   1 +
 20 files changed, 700 insertions(+), 255 deletions(-)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ