public inbox for linux-btrfs@vger.kernel.org
 help / color / mirror / Atom feed
From: David Sterba <dsterba@suse.cz>
To: Qu Wenruo <quwenruo.btrfs@gmx.com>
Cc: Gladyshev Ilya <foxido@foxido.dev>, Chris Mason <clm@fb.com>,
	David Sterba <dsterba@suse.com>,
	linux-btrfs@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] btrfs: make ASSERT no-op in release builds
Date: Fri, 31 Oct 2025 02:08:22 +0100	[thread overview]
Message-ID: <20251031010822.GD13846@suse.cz> (raw)
In-Reply-To: <6409438c-43b7-484c-bf8c-be5f3849ef2f@gmx.com>

On Fri, Oct 31, 2025 at 07:35:29AM +1030, Qu Wenruo wrote:
> 在 2025/10/31 04:53, Gladyshev Ilya 写道:
> > The current definition of `ASSERT(cond)` as `(void)(cond)` is redundant,
> > because all checks are without side effects and don't affect code logic.
> > 
> > However, some checks has READ_ONCE in them or other 'compiler-unfriendly'
> > behaviour. For example, ASSERT(list_empty) in btrfs_add_dealloc_inode
> > was compiled to redundant mov because of this.
> > 
> > This patch replaces ASSERT with BUILD_BUG_ON_INVALID for
> > !CONFIG_BTRFS_ASSERT builds.
> > 
> > Signed-off-by: Gladyshev Ilya <foxido@foxido.dev>
> > 
> > ---
> > .o size reductions are not that big, for example on defconfig + btrfs
> > fs/btrfs/*.o size went from 3280528 to 3277936, so compiler was pretty
> > efficient on his own
> > ---
> >   fs/btrfs/messages.h | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/fs/btrfs/messages.h b/fs/btrfs/messages.h
> > index 4416c165644f..f80fe40a2c2b 100644
> > --- a/fs/btrfs/messages.h
> > +++ b/fs/btrfs/messages.h
> > @@ -168,7 +168,7 @@ do {										\
> >   #endif
> >   
> >   #else
> > -#define ASSERT(cond, args...)			(void)(cond)
> > +#define ASSERT(cond, args...)			BUILD_BUG_ON_INVALID(cond)
> 
> And I do not think it's a good idea to use BUILD_BUG_ON_INVALID() here, 
> most ASSERT()s are checking runtime conditions, I understand you want to 
> avoid real code generation, but in that case there are more 
> straightforward solutions, like "do {} while (0)" as no-op.

It's supposed to be no-op but also compile checked, so the do/while(0)
will not do that. What BUILD_BUG_ON_INVALID is basically a sizeof(cond)
so it's the right thing but the naming is confusing, we can possibly
open code it.

  reply	other threads:[~2025-10-31  1:08 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-30 18:23 [PATCH] btrfs: make ASSERT no-op in release builds Gladyshev Ilya
2025-10-30 21:05 ` Qu Wenruo
2025-10-31  1:08   ` David Sterba [this message]
2025-10-31 12:18 ` kernel test robot
2025-10-31 20:37   ` Nathan Chancellor

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=20251031010822.GD13846@suse.cz \
    --to=dsterba@suse.cz \
    --cc=clm@fb.com \
    --cc=dsterba@suse.com \
    --cc=foxido@foxido.dev \
    --cc=linux-btrfs@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=quwenruo.btrfs@gmx.com \
    /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