From: David Laight <david.laight.linux@gmail.com>
To: Jakub Kicinski <kuba@kernel.org>
Cc: Giovanni Cabiddu <giovanni.cabiddu@intel.com>,
Alexandre Belloni <alexandre.belloni@bootlin.com>,
Crt Mori <cmo@melexis.com>,
Geert Uytterhoeven <geert+renesas@glider.be>,
linux-iio@vger.kernel.org,
Michael Turquette <mturquette@baylibre.com>,
Rasmus Villemoes <linux@rasmusvillemoes.dk>,
Jaroslav Kysela <perex@perex.cz>,
Claudiu Beznea <claudiu.beznea@tuxon.dev>,
Shan-Chun Hung <schung@nuvoton.com>,
linux-clk@vger.kernel.org, linux-aspeed@lists.ozlabs.org,
Lars-Peter Clausen <lars@metafoo.de>,
Herbert Xu <herbert@gondor.apana.org.au>,
Bartosz Golaszewski <brgl@bgdev.pl>,
Takashi Iwai <tiwai@suse.com>,
qat-linux@intel.com, Joel Stanley <joel@jms.id.au>,
Andrew Jeffery <andrew@codeconstruct.com.au>,
Linus Walleij <linus.walleij@linaro.org>,
Jacky Huang <ychuang3@nuvoton.com>,
Yury Norov <yury.norov@gmail.com>,
linux-sound@vger.kernel.org, linux-gpio@vger.kernel.org,
Jonathan Cameron <Jonathan.Cameron@huawei.com>,
Alex Elder <elder@ieee.org>,
Vincent Mailhol <mailhol.vincent@wanadoo.fr>,
linux-arm-kernel@lists.infradead.org,
Stephen Boyd <sboyd@kernel.org>,
linux-kernel@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
linux-crypto@vger.kernel.org,
Johannes Berg <johannes@sipsolutions.net>,
David Miller <davem@davemloft.net>,
Jonathan Cameron <jic23@kernel.org>
Subject: Re: [PATCH treewide v3 2/4] bitfield: Add non-constant field_{prep,get}() helpers
Date: Fri, 14 Feb 2025 16:46:14 +0000 [thread overview]
Message-ID: <20250214164614.29bbc620@pumpkin> (raw)
In-Reply-To: <20250214073402.0129e259@kernel.org>
On Fri, 14 Feb 2025 07:34:02 -0800
Jakub Kicinski <kuba@kernel.org> wrote:
> On Fri, 14 Feb 2025 14:55:51 +0100 Geert Uytterhoeven wrote:
> > The existing FIELD_{GET,PREP}() macros are limited to compile-time
> > constants. However, it is very common to prepare or extract bitfield
> > elements where the bitfield mask is not a compile-time constant.
> >
> > To avoid this limitation, the AT91 clock driver and several other
> > drivers already have their own non-const field_{prep,get}() macros.
> > Make them available for general use by consolidating them in
> > <linux/bitfield.h>, and improve them slightly:
> > 1. Avoid evaluating macro parameters more than once,
> > 2. Replace "ffs() - 1" by "__ffs()",
> > 3. Support 64-bit use on 32-bit architectures.
> >
> > This is deliberately not merged into the existing FIELD_{GET,PREP}()
> > macros, as people expressed the desire to keep stricter variants for
> > increased safety, or for performance critical paths.
>
> I really really think that people should just use the static inline
> helpers if the field is not constant. And we should do something like
> below so that people can actually find them.
Especially since you really don't want to be calling ffs() on variables.
Much better to have saved the low bit and field width/mask.
David
next prev parent reply other threads:[~2025-02-14 16:49 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-14 13:55 [PATCH v3 0/4] Non-const bitfield helpers Geert Uytterhoeven
2025-02-14 13:55 ` [PATCH v3 1/4] bitfield: Drop underscores from macro parameters Geert Uytterhoeven
2025-02-14 13:55 ` [PATCH treewide v3 2/4] bitfield: Add non-constant field_{prep,get}() helpers Geert Uytterhoeven
2025-02-14 14:05 ` Crt Mori
2025-02-14 15:34 ` Jakub Kicinski
2025-02-14 16:46 ` David Laight [this message]
2025-10-17 10:55 ` Geert Uytterhoeven
2025-10-17 10:55 ` Geert Uytterhoeven
2025-10-17 15:19 ` Jakub Kicinski
2025-10-17 16:00 ` Geert Uytterhoeven
2025-10-17 17:39 ` Jakub Kicinski
2025-02-14 13:55 ` [PATCH v3 3/4] clk: renesas: Use bitfield helpers Geert Uytterhoeven
2025-02-14 13:55 ` [PATCH v3 4/4] soc: " Geert Uytterhoeven
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=20250214164614.29bbc620@pumpkin \
--to=david.laight.linux@gmail.com \
--cc=Jonathan.Cameron@huawei.com \
--cc=alexandre.belloni@bootlin.com \
--cc=andrew@codeconstruct.com.au \
--cc=brgl@bgdev.pl \
--cc=claudiu.beznea@tuxon.dev \
--cc=cmo@melexis.com \
--cc=davem@davemloft.net \
--cc=elder@ieee.org \
--cc=geert+renesas@glider.be \
--cc=giovanni.cabiddu@intel.com \
--cc=herbert@gondor.apana.org.au \
--cc=jic23@kernel.org \
--cc=joel@jms.id.au \
--cc=johannes@sipsolutions.net \
--cc=kuba@kernel.org \
--cc=lars@metafoo.de \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-aspeed@lists.ozlabs.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=linux@rasmusvillemoes.dk \
--cc=mailhol.vincent@wanadoo.fr \
--cc=mturquette@baylibre.com \
--cc=perex@perex.cz \
--cc=qat-linux@intel.com \
--cc=sboyd@kernel.org \
--cc=schung@nuvoton.com \
--cc=tiwai@suse.com \
--cc=ychuang3@nuvoton.com \
--cc=yury.norov@gmail.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;
as well as URLs for NNTP newsgroup(s).