linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: fix unmet dependency on BITREVERSE for HAVE_ARCH_BITREVERSE
@ 2021-10-29 20:31 Julian Braha
  2021-10-29 22:05 ` Arnd Bergmann
  0 siblings, 1 reply; 3+ messages in thread
From: Julian Braha @ 2021-10-29 20:31 UTC (permalink / raw)
  To: linux, arnd, linus.walleij, geert+renesas, mark.rutland, akpm
  Cc: linux-arm-kernel, linux-kernel, fazilyildiran

When ARM is enabled, and BITREVERSE is disabled,
Kbuild gives the following warning:

WARNING: unmet direct dependencies detected for HAVE_ARCH_BITREVERSE
  Depends on [n]: BITREVERSE [=n]
  Selected by [y]:
  - ARM [=y] && (CPU_32v7M [=n] || CPU_32v7 [=y]) && !CPU_32v6 [=n]

This is because ARM selects HAVE_ARCH_BITREVERSE
without selecting BITREVERSE, despite
HAVE_ARCH_BITREVERSE depending on BITREVERSE.

This unmet dependency bug was found by Kismet,
a static analysis tool for Kconfig. Please advise if this
is not the appropriate solution.

Signed-off-by: Julian Braha <julianbraha@gmail.com>
---
 arch/arm/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index f0f9e8bec83a..bf029623603e 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -67,6 +67,7 @@ config ARM
 	select GENERIC_SMP_IDLE_THREAD
 	select HARDIRQS_SW_RESEND
 	select HAVE_ARCH_AUDITSYSCALL if AEABI && !OABI_COMPAT
+	select BITREVERSE if (CPU_32v7M || CPU_32v7) && !CPU_32v6
 	select HAVE_ARCH_BITREVERSE if (CPU_32v7M || CPU_32v7) && !CPU_32v6
 	select HAVE_ARCH_JUMP_LABEL if !XIP_KERNEL && !CPU_ENDIAN_BE32 && MMU
 	select HAVE_ARCH_KGDB if !CPU_ENDIAN_BE32 && MMU
-- 
2.30.2


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] ARM: fix unmet dependency on BITREVERSE for HAVE_ARCH_BITREVERSE
  2021-10-29 20:31 [PATCH] ARM: fix unmet dependency on BITREVERSE for HAVE_ARCH_BITREVERSE Julian Braha
@ 2021-10-29 22:05 ` Arnd Bergmann
  2021-10-29 22:21   ` Russell King (Oracle)
  0 siblings, 1 reply; 3+ messages in thread
From: Arnd Bergmann @ 2021-10-29 22:05 UTC (permalink / raw)
  To: Julian Braha
  Cc: Russell King - ARM Linux, Arnd Bergmann, Linus Walleij,
	Geert Uytterhoeven, Mark Rutland, Andrew Morton, Linux ARM,
	Linux Kernel Mailing List, fazilyildiran

On Fri, Oct 29, 2021 at 10:31 PM Julian Braha <julianbraha@gmail.com> wrote:
>
> When ARM is enabled, and BITREVERSE is disabled,
> Kbuild gives the following warning:
>
> WARNING: unmet direct dependencies detected for HAVE_ARCH_BITREVERSE
>   Depends on [n]: BITREVERSE [=n]
>   Selected by [y]:
>   - ARM [=y] && (CPU_32v7M [=n] || CPU_32v7 [=y]) && !CPU_32v6 [=n]
>
> This is because ARM selects HAVE_ARCH_BITREVERSE
> without selecting BITREVERSE, despite
> HAVE_ARCH_BITREVERSE depending on BITREVERSE.
>
> This unmet dependency bug was found by Kismet,
> a static analysis tool for Kconfig. Please advise if this
> is not the appropriate solution.
>
> Signed-off-by: Julian Braha <julianbraha@gmail.com>

This works, but I think it would be better handled differently:

The other 'select BITREVERSE' instances are for drivers that use
bitrever(), not those that provide it.

We can probably just remove the dependency. Alternatively we could
change arch/arm/ to

     select HAVE_ARCH_BITREVERSE if BITREVERSE && ((CPU_32v7M ||
CPU_32v7) && !CPU_32v6)

Regardless of what we do here, note that

a) the 'select' lines in CONFIG_ARM are sorted alphabetically, and
   should be kept that way

b) the same probably exists on arch/mips and arch/arm64, whatever we
   do here should be the same as on the other architectures.

        Arnd

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ARM: fix unmet dependency on BITREVERSE for HAVE_ARCH_BITREVERSE
  2021-10-29 22:05 ` Arnd Bergmann
@ 2021-10-29 22:21   ` Russell King (Oracle)
  0 siblings, 0 replies; 3+ messages in thread
From: Russell King (Oracle) @ 2021-10-29 22:21 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Julian Braha, Linus Walleij, Geert Uytterhoeven, Mark Rutland,
	Andrew Morton, Linux ARM, Linux Kernel Mailing List,
	fazilyildiran

On Sat, Oct 30, 2021 at 12:05:28AM +0200, Arnd Bergmann wrote:
> On Fri, Oct 29, 2021 at 10:31 PM Julian Braha <julianbraha@gmail.com> wrote:
> >
> > When ARM is enabled, and BITREVERSE is disabled,
> > Kbuild gives the following warning:
> >
> > WARNING: unmet direct dependencies detected for HAVE_ARCH_BITREVERSE
> >   Depends on [n]: BITREVERSE [=n]
> >   Selected by [y]:
> >   - ARM [=y] && (CPU_32v7M [=n] || CPU_32v7 [=y]) && !CPU_32v6 [=n]
> >
> > This is because ARM selects HAVE_ARCH_BITREVERSE
> > without selecting BITREVERSE, despite
> > HAVE_ARCH_BITREVERSE depending on BITREVERSE.
> >
> > This unmet dependency bug was found by Kismet,
> > a static analysis tool for Kconfig. Please advise if this
> > is not the appropriate solution.
> >
> > Signed-off-by: Julian Braha <julianbraha@gmail.com>
> 
> This works, but I think it would be better handled differently:
> 
> The other 'select BITREVERSE' instances are for drivers that use
> bitrever(), not those that provide it.
> 
> We can probably just remove the dependency. Alternatively we could
> change arch/arm/ to
> 
>      select HAVE_ARCH_BITREVERSE if BITREVERSE && ((CPU_32v7M ||
> CPU_32v7) && !CPU_32v6)
> 
> Regardless of what we do here, note that
> 
> a) the 'select' lines in CONFIG_ARM are sorted alphabetically, and
>    should be kept that way
> 
> b) the same probably exists on arch/mips and arch/arm64, whatever we
>    do here should be the same as on the other architectures.

I think HAVE_ARCH_BITREVERSE shouldn't depend on BITREVERSE.
BITREVERSE is set when something wants the bitreverse support.
HAVE_ARCH_BITREVERSE means that the architecture has support for
the bitreverse instructions and the generic code should not be
compiled.

I don't see any reason for HAVE_ARCH_BITREVERSE to depend on
BITREVERSE.

-- 
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-10-29 22:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-29 20:31 [PATCH] ARM: fix unmet dependency on BITREVERSE for HAVE_ARCH_BITREVERSE Julian Braha
2021-10-29 22:05 ` Arnd Bergmann
2021-10-29 22:21   ` Russell King (Oracle)

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).