linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] xfs: more new code for 6.5
@ 2023-07-05 15:51 Darrick J. Wong
  2023-07-05 21:20 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Darrick J. Wong @ 2023-07-05 15:51 UTC (permalink / raw)
  To: djwong, torvalds
  Cc: abaci, chandan.babu, chandanrlinux, colin.i.king, dchinner, hch,
	linux-fsdevel, linux-xfs, ruansy.fnst, wen.gang.wang, yang.lee

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(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] xfs: more new code for 6.5
  2023-07-05 15:51 [GIT PULL] xfs: more new code for 6.5 Darrick J. Wong
@ 2023-07-05 21:20 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2023-07-05 21:20 UTC (permalink / raw)
  To: Darrick J. Wong
  Cc: djwong, torvalds, abaci, chandan.babu, chandanrlinux,
	colin.i.king, dchinner, hch, linux-fsdevel, linux-xfs,
	ruansy.fnst, wen.gang.wang, yang.lee

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!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] xfs: more new code for 6.5
  2023-07-09 15:44 Darrick J. Wong
@ 2023-07-09 17:46 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2023-07-09 17:46 UTC (permalink / raw)
  To: Darrick J. Wong; +Cc: djwong, torvalds, dchinner, linux-fsdevel, linux-xfs

The pull request you sent on Sun, 9 Jul 2023 08:44:11 -0700:

> git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git tags/xfs-6.5-merge-6

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/76487845fd23bc2346244fbf7c1a6eb1ed845d28

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [GIT PULL] xfs: more new code for 6.5
@ 2023-07-09 15:44 Darrick J. Wong
  2023-07-09 17:46 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Darrick J. Wong @ 2023-07-09 15:44 UTC (permalink / raw)
  To: djwong, torvalds; +Cc: dchinner, linux-fsdevel, linux-xfs

Hi Linus,

Please pull this branch with one last change for xfs for 6.5-rc1.
Nothing exciting here, just getting rid of a gcc warning that I got
tired of seeing when I turn on gcov.

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 34acceaa8818a0ff4943ec5f2f8831cfa9d3fe7e:

xfs: Remove unneeded semicolon (2023-07-03 09:48:18 -0700)

are available in the Git repository at:

git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git tags/xfs-6.5-merge-6

for you to fetch changes up to ed04a91f718e6e1ab82d47a22b26e4b50c1666f6:

xfs: fix uninit warning in xfs_growfs_data (2023-07-07 20:13:41 -0700)

----------------------------------------------------------------
Minor cleanups for 6.5:

* Fix an uninitialized variable warning.

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

----------------------------------------------------------------
Darrick J. Wong (1):
xfs: fix uninit warning in xfs_growfs_data

fs/xfs/xfs_fsops.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-07-09 17:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-05 15:51 [GIT PULL] xfs: more new code for 6.5 Darrick J. Wong
2023-07-05 21:20 ` pr-tracker-bot
2023-07-09 15:44 Darrick J. Wong
2023-07-09 17:46 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).