public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCHBOMB] xfsprogs: catch us up to 6.12-rc4
@ 2024-10-21 21:56 Darrick J. Wong
  2024-10-21 21:58 ` [PATCHSET] libxfs: new code for 6.12 Darrick J. Wong
  2024-10-22  5:59 ` [PATCHBOMB] xfsprogs: catch us up to 6.12-rc4 Christoph Hellwig
  0 siblings, 2 replies; 44+ messages in thread
From: Darrick J. Wong @ 2024-10-21 21:56 UTC (permalink / raw)
  To: Andrey Albershteyn; +Cc: xfs

Hi Andrey,

Here's the libxfs sync to catch xfsprogs up to 6.12-rc4.  I have a bunch
of tool changes as well, but I'll hold off on sending those until dave &
hch have a chance to look at last week's kernel patchbomb.

The only unreviewed patches are these:

[PATCHSET] libxfs: new code for 6.12
  [PATCH 01/37] libxfs: require -std=gnu11 for compilation by default
  [PATCH 03/37] libxfs: port IS_ENABLED from the kernel

The first patch brings our C usage in line with the kernel; and the
second one is needed for a bug fix that got merged between rc2 and 3.

--D

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

end of thread, other threads:[~2024-10-22 17:46 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-21 21:56 [PATCHBOMB] xfsprogs: catch us up to 6.12-rc4 Darrick J. Wong
2024-10-21 21:58 ` [PATCHSET] libxfs: new code for 6.12 Darrick J. Wong
2024-10-21 21:59   ` [PATCH 01/37] libxfs: require -std=gnu11 for compilation by default Darrick J. Wong
2024-10-22  5:56     ` Christoph Hellwig
2024-10-21 21:59   ` [PATCH 02/37] libxfs: compile with a C++ compiler Darrick J. Wong
2024-10-22  5:57     ` Christoph Hellwig
2024-10-22 17:46       ` Darrick J. Wong
2024-10-21 21:59   ` [PATCH 03/37] libxfs: port IS_ENABLED from the kernel Darrick J. Wong
2024-10-22  5:58     ` Christoph Hellwig
2024-10-21 21:59   ` [PATCH 04/37] libfrog: add xarray emulation Darrick J. Wong
2024-10-21 22:00   ` [PATCH 05/37] xfs: introduce new file range commit ioctls Darrick J. Wong
2024-10-21 22:00   ` [PATCH 06/37] xfs: pass the icreate args object to xfs_dialloc Darrick J. Wong
2024-10-21 22:00   ` [PATCH 07/37] xfs: remove xfs_validate_rtextents Darrick J. Wong
2024-10-21 22:01   ` [PATCH 08/37] xfs: factor out a xfs_validate_rt_geometry helper Darrick J. Wong
2024-10-21 22:01   ` [PATCH 09/37] xfs: remove the limit argument to xfs_rtfind_back Darrick J. Wong
2024-10-21 22:01   ` [PATCH 10/37] xfs: assert a valid limit in xfs_rtfind_forw Darrick J. Wong
2024-10-21 22:01   ` [PATCH 11/37] xfs: add bounds checking to xfs_rt{bitmap,summary}_read_buf Darrick J. Wong
2024-10-21 22:02   ` [PATCH 12/37] xfs: factor out rtbitmap/summary initialization helpers Darrick J. Wong
2024-10-21 22:02   ` [PATCH 13/37] xfs: push transaction join out of xfs_rtbitmap_lock and xfs_rtgroup_lock Darrick J. Wong
2024-10-21 22:02   ` [PATCH 14/37] xfs: ensure rtx mask/shift are correct after growfs Darrick J. Wong
2024-10-21 22:02   ` [PATCH 15/37] xfs: remove xfs_rtb_to_rtxrem Darrick J. Wong
2024-10-21 22:03   ` [PATCH 16/37] xfs: simplify xfs_rtalloc_query_range Darrick J. Wong
2024-10-21 22:03   ` [PATCH 17/37] xfs: clean up the ISVALID macro in xfs_bmap_adjacent Darrick J. Wong
2024-10-21 22:03   ` [PATCH 18/37] xfs: remove xfs_{rtbitmap,rtsummary}_wordcount Darrick J. Wong
2024-10-21 22:03   ` [PATCH 19/37] xfs: replace m_rsumsize with m_rsumblocks Darrick J. Wong
2024-10-21 22:04   ` [PATCH 20/37] xfs: fix a sloppy memory handling bug in xfs_iroot_realloc Darrick J. Wong
2024-10-21 22:04   ` [PATCH 21/37] xfs: replace shouty XFS_BM{BT,DR} macros Darrick J. Wong
2024-10-21 22:04   ` [PATCH 22/37] xfs: standardize the btree maxrecs function parameters Darrick J. Wong
2024-10-21 22:04   ` [PATCH 23/37] xfs: use kvmalloc for xattr buffers Darrick J. Wong
2024-10-21 22:05   ` [PATCH 24/37] xfs: remove unnecessary check Darrick J. Wong
2024-10-21 22:05   ` [PATCH 25/37] xfs: use kfree_rcu_mightsleep to free the perag structures Darrick J. Wong
2024-10-21 22:05   ` [PATCH 26/37] xfs: move the tagged perag lookup helpers to xfs_icache.c Darrick J. Wong
2024-10-21 22:05   ` [PATCH 27/37] xfs: convert perag lookup to xarray Darrick J. Wong
2024-10-21 22:06   ` [PATCH 28/37] xfs: ensure st_blocks never goes to zero during COW writes Darrick J. Wong
2024-10-21 22:06   ` [PATCH 29/37] xfs: enable block size larger than page size support Darrick J. Wong
2024-10-21 22:06   ` [PATCH 30/37] xfs: merge xfs_attr_leaf_try_add into xfs_attr_leaf_addname Darrick J. Wong
2024-10-21 22:07   ` [PATCH 31/37] xfs: return bool from xfs_attr3_leaf_add Darrick J. Wong
2024-10-21 22:07   ` [PATCH 32/37] xfs: distinguish extra split from real ENOSPC from xfs_attr3_leaf_split Darrick J. Wong
2024-10-21 22:07   ` [PATCH 33/37] xfs: distinguish extra split from real ENOSPC from xfs_attr_node_try_addname Darrick J. Wong
2024-10-21 22:07   ` [PATCH 34/37] xfs: fold xfs_bmap_alloc_userdata into xfs_bmapi_allocate Darrick J. Wong
2024-10-21 22:08   ` [PATCH 35/37] xfs: don't ifdef around the exact minlen allocations Darrick J. Wong
2024-10-21 22:08   ` [PATCH 36/37] xfs: call xfs_bmap_exact_minlen_extent_alloc from xfs_bmap_btalloc Darrick J. Wong
2024-10-21 22:08   ` [PATCH 37/37] xfs: support lowmode allocations in xfs_bmap_exact_minlen_extent_alloc Darrick J. Wong
2024-10-22  5:59 ` [PATCHBOMB] xfsprogs: catch us up to 6.12-rc4 Christoph Hellwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox