mbox series

[GIT,PULL] xfs: bug fixes for 6.12-rc4

Message ID olhbmfxlvn7kdlc4vpxaa3phy3vq7nqgczudqjj2fr444h7cfp@xvy3zxck33v4 (mailing list archive)
State New
Headers show
Series [GIT,PULL] xfs: bug fixes for 6.12-rc4 | expand

Pull-request

git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git tags/xfs-6.12-fixes-4

Message

Carlos Maiolino Oct. 18, 2024, 10:01 a.m. UTC
Hi Linus, could you please pull the patches below for 6.12-rc4?

I sent the patches to for-next earlier this week, and I haven't done any rebase
on these patches (in contrast with my previous PR).

I just did a test merge against your TOT and I didn't see any conflicts.
Hopefully I got everything correct this time.

Thanks!
Carlos

The following changes since commit 77bfe1b11ea0c0c4b0ce19b742cd1aa82f60e45d:

  xfs: fix a typo (2024-10-09 10:05:26 +0200)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git tags/xfs-6.12-fixes-4

for you to fetch changes up to f6f91d290c8b9da6e671bd15f306ad2d0e635a04:

  xfs: punch delalloc extents from the COW fork for COW writes (2024-10-15 11:37:42 +0200)

----------------------------------------------------------------
XFS Bug fixes for 6.12-rc4

* Fix integer overflow in xrep_bmap
* Fix stale dealloc punching for COW IO

Signed-off-by: Carlos Maiolino <cem@kernel.org>

----------------------------------------------------------------
Christoph Hellwig (10):
      iomap: factor out a iomap_last_written_block helper
      iomap: remove iomap_file_buffered_write_punch_delalloc
      iomap: move locking out of iomap_write_delalloc_release
      xfs: factor out a xfs_file_write_zero_eof helper
      xfs: take XFS_MMAPLOCK_EXCL xfs_file_write_zero_eof
      xfs: IOMAP_ZERO and IOMAP_UNSHARE already hold invalidate_lock
      xfs: support the COW fork in xfs_bmap_punch_delalloc_range
      xfs: share more code in xfs_buffered_write_iomap_begin
      xfs: set IOMAP_F_SHARED for all COW fork allocations
      xfs: punch delalloc extents from the COW fork for COW writes

Darrick J. Wong (1):
      xfs: fix integer overflow in xrep_bmap

 Documentation/filesystems/iomap/operations.rst |   2 +-
 fs/iomap/buffered-io.c                         | 111 ++++++-------------
 fs/xfs/scrub/bmap_repair.c                     |   2 +-
 fs/xfs/xfs_aops.c                              |   4 +-
 fs/xfs/xfs_bmap_util.c                         |  10 +-
 fs/xfs/xfs_bmap_util.h                         |   2 +-
 fs/xfs/xfs_file.c                              | 146 +++++++++++++++----------
 fs/xfs/xfs_iomap.c                             |  67 ++++++++----
 include/linux/iomap.h                          |  20 +++-
 9 files changed, 199 insertions(+), 165 deletions(-)