mbox series

[GIT,PULL,2/5] xfs: refactor btrees to support records in inode root

Message ID 173499428759.2382820.11756798556084282447.stg-ugh@frogsfrogsfrogs (mailing list archive)
State New
Headers show
Series [GIT,PULL,1/5] xfs: bug fixes for 6.13 | expand

Pull-request

https://git.kernel.org/pub/scm/linux/kernel/git/djwong/xfs-linux.git tags/btree-ifork-records_2024-12-23

Message

Darrick J. Wong Dec. 23, 2024, 11:18 p.m. UTC
Hi Carlos,

Please pull this branch with changes for xfs.

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 1aacd3fac248902ea1f7607f2d12b93929a4833b:

xfs: release the dquot buf outside of qli_lock (2024-12-23 13:06:01 -0800)

are available in the Git repository at:

https://git.kernel.org/pub/scm/linux/kernel/git/djwong/xfs-linux.git tags/btree-ifork-records_2024-12-23

for you to fetch changes up to 2f63b20b7a26c9a7c76ea5a6565ca38cd9e31282:

xfs: support storing records in the inode core root (2024-12-23 13:06:03 -0800)

----------------------------------------------------------------
xfs: refactor btrees to support records in inode root [v6.2 02/14]

Amend the btree code to support storing btree rcords in the inode root,
because the current bmbt code does not support this.

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 (8):
xfs: tidy up xfs_iroot_realloc
xfs: refactor the inode fork memory allocation functions
xfs: make xfs_iroot_realloc take the new numrecs instead of deltas
xfs: make xfs_iroot_realloc a bmap btree function
xfs: tidy up xfs_bmap_broot_realloc a bit
xfs: hoist the node iroot update code out of xfs_btree_new_iroot
xfs: hoist the node iroot update code out of xfs_btree_kill_iroot
xfs: support storing records in the inode core root

fs/xfs/libxfs/xfs_bmap.c          |   7 +-
fs/xfs/libxfs/xfs_bmap_btree.c    | 111 +++++++++++++
fs/xfs/libxfs/xfs_bmap_btree.h    |   3 +
fs/xfs/libxfs/xfs_btree.c         | 333 ++++++++++++++++++++++++++++----------
fs/xfs/libxfs/xfs_btree.h         |  18 ++-
fs/xfs/libxfs/xfs_btree_staging.c |   9 +-
fs/xfs/libxfs/xfs_inode_fork.c    | 170 ++++++-------------
fs/xfs/libxfs/xfs_inode_fork.h    |   6 +-
8 files changed, 445 insertions(+), 212 deletions(-)