[PATCH treewide v3 2/4] bitfield: Add non-constant field_{prep,get}() helpers
David Laight
david.laight.linux at gmail.com
Sat Feb 15 03:46:14 AEDT 2025
On Fri, 14 Feb 2025 07:34:02 -0800
Jakub Kicinski <kuba at 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
More information about the Linux-aspeed
mailing list