From: Carlos Maiolino <cem@kernel.org>
To: Christoph Hellwig <hch@lst.de>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH] xfs: split an assert in xfs_trans_log_buf
Date: Tue, 18 Aug 2026 11:23:13 +0200 [thread overview]
Message-ID: <aoQkXOxqitR7KdcK@andromeda.toxiclabs.cc> (raw)
In-Reply-To: <20260720093612.2186703-1-hch@lst.de>
On Mon, Jul 20, 2026 at 11:36:12AM +0200, Christoph Hellwig wrote:
> Split the "irst <= last && last < BBTOB(bp->b_length)" assert into two to
> make it clear which condition fired.
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
> fs/xfs/xfs_trans_buf.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/fs/xfs/xfs_trans_buf.c b/fs/xfs/xfs_trans_buf.c
> index 1e025848811a..a5d25b703dfc 100644
> --- a/fs/xfs/xfs_trans_buf.c
> +++ b/fs/xfs/xfs_trans_buf.c
> @@ -521,7 +521,8 @@ xfs_trans_log_buf(
> {
> struct xfs_buf_log_item *bip = bp->b_log_item;
>
> - ASSERT(first <= last && last < BBTOB(bp->b_length));
> + ASSERT(first <= last);
> + ASSERT(last < BBTOB(bp->b_length));
> ASSERT(!(bip->bli_flags & XFS_BLI_ORDERED));
>
> xfs_trans_dirty_buf(tp, bp);
Ops, I think this fell through the cracks. Looks good though...
Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com>
> --
> 2.53.0
>
next prev parent reply other threads:[~2026-08-18 9:23 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-20 9:36 [PATCH] xfs: split an assert in xfs_trans_log_buf Christoph Hellwig
2026-08-18 9:23 ` Carlos Maiolino [this message]
2026-08-21 7:35 ` Carlos Maiolino
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=aoQkXOxqitR7KdcK@andromeda.toxiclabs.cc \
--to=cem@kernel.org \
--cc=hch@lst.de \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.