From: Christoph Hellwig <hch@infradead.org>
To: "Darrick J. Wong" <djwong@kernel.org>
Cc: cem@kernel.org, aalbersh@kernel.org, linux-xfs@vger.kernel.org
Subject: Re: [PATCH 03/37] libxfs: port IS_ENABLED from the kernel
Date: Mon, 21 Oct 2024 22:58:13 -0700 [thread overview]
Message-ID: <Zxc-9YHJSDFYvPy1@infradead.org> (raw)
In-Reply-To: <172954783517.34558.6960888274382502007.stgit@frogsfrogsfrogs>
Looks good:
Reviewed-by: Christoph Hellwig <hch@lst.de>
next prev parent reply other threads:[~2024-10-22 5:58 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
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 [this message]
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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Zxc-9YHJSDFYvPy1@infradead.org \
--to=hch@infradead.org \
--cc=aalbersh@kernel.org \
--cc=cem@kernel.org \
--cc=djwong@kernel.org \
--cc=linux-xfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox