mbox series

[GIT,PULL,02/16] xfs: refactorings for atomic file content exchanges

Message ID 171322715380.141687.16917611087971237386.stg-ugh@frogsfrogsfrogs (mailing list archive)
State New
Headers show
Series None | expand

Pull-request

https://git.kernel.org/pub/scm/linux/kernel/git/djwong/xfs-linux.git tags/file-exchange-refactorings-6.10_2024-04-15

Message

Darrick J. Wong April 16, 2024, 12:27 a.m. UTC
Hi Chandan,

Please pull this branch with changes for xfs for 6.10-rc1.

As usual, I did a test-merge with the main upstream branch as of a few
minutes ago, and didn't see any conflicts.  Please let me know if you
encounter any problems.

--D

The following changes since commit 5302a5c8beb21d01b7b8d92cc73b6871bc27d7bf:

xfs: only clear log incompat flags at clean unmount (2024-04-15 14:54:06 -0700)

are available in the Git repository at:

https://git.kernel.org/pub/scm/linux/kernel/git/djwong/xfs-linux.git tags/file-exchange-refactorings-6.10_2024-04-15

for you to fetch changes up to 15f78aa3eb07645e7bef15a53b4ae1c757907d2c:

xfs: constify xfs_bmap_is_written_extent (2024-04-15 14:54:12 -0700)

----------------------------------------------------------------
xfs: refactorings for atomic file content exchanges [v30.3 02/16]

This series applies various cleanups and refactorings to file IO
handling code ahead of the main series to implement atomic file content
exchanges.

This has been running on the djcloud for months with no problems.  Enjoy!

Signed-off-by: Darrick J. Wong <djwong@kernel.org>

----------------------------------------------------------------
Darrick J. Wong (7):
xfs: move inode lease breaking functions to xfs_inode.c
xfs: move xfs_iops.c declarations out of xfs_inode.h
xfs: declare xfs_file.c symbols in xfs_file.h
xfs: create a new helper to return a file's allocation unit
xfs: hoist multi-fsb allocation unit detection to a helper
xfs: refactor non-power-of-two alignment checks
xfs: constify xfs_bmap_is_written_extent

fs/xfs/libxfs/xfs_bmap.h |  2 +-
fs/xfs/xfs_bmap_util.c   |  4 +--
fs/xfs/xfs_file.c        | 88 ++++--------------------------------------------
fs/xfs/xfs_file.h        | 15 +++++++++
fs/xfs/xfs_inode.c       | 75 +++++++++++++++++++++++++++++++++++++++++
fs/xfs/xfs_inode.h       | 16 +++++----
fs/xfs/xfs_ioctl.c       |  1 +
fs/xfs/xfs_iops.c        |  1 +
fs/xfs/xfs_iops.h        |  7 ++--
fs/xfs/xfs_linux.h       |  5 +++
10 files changed, 121 insertions(+), 93 deletions(-)
create mode 100644 fs/xfs/xfs_file.h