Message ID | 168857207832.2801401.3108975452748877163.stg-ugh@frogsfrogsfrogs (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [GIT,PULL] xfs: more new code for 6.5 | expand |
The pull request you sent on Wed, 5 Jul 2023 08:51:17 -0700:
> git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git tags/xfs-6.5-merge-5
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/bb8e7e9f0bc47d01bea310808ab8c27f6484d850
Thank you!
Hi Linus, Please pull this branch with changes for xfs for 6.5-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. We're well into the bugfixing weeds now... --D The following changes since commit c3b880acadc95d6e019eae5d669e072afda24f1b: xfs: fix ag count overflow during growfs (2023-06-13 08:49:20 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git tags/xfs-6.5-merge-5 for you to fetch changes up to 34acceaa8818a0ff4943ec5f2f8831cfa9d3fe7e: xfs: Remove unneeded semicolon (2023-07-03 09:48:18 -0700) ---------------------------------------------------------------- More new code for 6.5: * Fix some ordering problems with log items during log recovery. * Don't deadlock the system by trying to flush busy freed extents while holding on to busy freed extents. * Improve validation of log geometry parameters when reading the primary superblock. * Validate the length field in the AGF header. * Fix recordset filtering bugs when re-calling GETFSMAP to return more results when the resultset didn't previously fit in the caller's buffer. * Fix integer overflows in GETFSMAP when working with rt volumes larger than 2^32 fsblocks. * Fix GETFSMAP reporting the undefined space beyond the last rtextent. * Fix filtering bugs in GETFSMAP's log device backend if the log ever becomes longer than 2^32 fsblocks. * Improve validation of file offsets in the GETFSMAP range parameters. * Fix an off by one bug in the pmem media failure notification computation. * Validate the length field in the AGI header too. Signed-off-by: Darrick J. Wong <djwong@kernel.org> ---------------------------------------------------------------- Colin Ian King (1): xfs: remove redundant initializations of pointers drop_leaf and save_leaf Darrick J. Wong (8): xfs: fix interval filtering in multi-step fsmap queries xfs: fix integer overflows in the fsmap rtbitmap and logdev backends xfs: fix getfsmap reporting past the last rt extent xfs: clean up the rtbitmap fsmap backend xfs: fix logdev fsmap query result filtering xfs: validate fsmap offsets specified in the query keys xfs: fix xfs_btree_query_range callers to initialize btree rec fully xfs: AGI length should be bounds checked Dave Chinner (8): xfs: don't reverse order of items in bulk AIL insertion xfs: use deferred frees for btree block freeing xfs: pass alloc flags through to xfs_extent_busy_flush() xfs: allow extent free intents to be retried xfs: don't block in busy flushing when freeing extents xfs: journal geometry is not properly bounds checked xfs: AGF length has never been bounds checked xfs: fix bounds check in xfs_defer_agfl_block() Shiyang Ruan (1): xfs: fix the calculation for "end" and "length" Yang Li (1): xfs: Remove unneeded semicolon fs/xfs/libxfs/xfs_ag.c | 2 +- fs/xfs/libxfs/xfs_alloc.c | 291 ++++++++++++++++++++++++------------- fs/xfs/libxfs/xfs_alloc.h | 24 +-- fs/xfs/libxfs/xfs_attr_leaf.c | 2 - fs/xfs/libxfs/xfs_bmap.c | 8 +- fs/xfs/libxfs/xfs_bmap_btree.c | 3 +- fs/xfs/libxfs/xfs_ialloc.c | 32 ++-- fs/xfs/libxfs/xfs_ialloc_btree.c | 3 +- fs/xfs/libxfs/xfs_refcount.c | 22 +-- fs/xfs/libxfs/xfs_refcount_btree.c | 8 +- fs/xfs/libxfs/xfs_rmap.c | 10 +- fs/xfs/libxfs/xfs_sb.c | 56 ++++++- fs/xfs/xfs_extent_busy.c | 36 ++++- fs/xfs/xfs_extent_busy.h | 6 +- fs/xfs/xfs_extfree_item.c | 75 +++++++++- fs/xfs/xfs_fsmap.c | 261 +++++++++++++++++---------------- fs/xfs/xfs_log.c | 47 ++---- fs/xfs/xfs_notify_failure.c | 9 +- fs/xfs/xfs_reflink.c | 3 +- fs/xfs/xfs_trace.h | 25 ++++ fs/xfs/xfs_trans_ail.c | 2 +- 21 files changed, 590 insertions(+), 335 deletions(-)