linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* linux-next 20201126 - build error on arm allmodconfig
@ 2020-11-26 13:25 Valdis Klētnieks
  2020-11-26 14:14 ` Russell King - ARM Linux admin
  0 siblings, 1 reply; 5+ messages in thread
From: Valdis Klētnieks @ 2020-11-26 13:25 UTC (permalink / raw)
  To: Andrey Ryabinin; +Cc: kasan-dev, linux-arm-kernel, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1258 bytes --]

Seems something is giving it indigestion regarding asmlinkage...

  CC      arch/arm/mm/kasan_init.o
In file included from ./include/linux/kasan.h:15,
                 from arch/arm/mm/kasan_init.c:11:
./arch/arm/include/asm/kasan.h:26:11: error: expected ';' before 'void'
 asmlinkage void kasan_early_init(void);
           ^~~~~
           ;
make[2]: *** [scripts/Makefile.build:283: arch/arm/mm/kasan_init.o] Error 1
make[1]: *** [scripts/Makefile.build:500: arch/arm/mm] Error 2
make: *** [Makefile:1803: arch/arm] Error 2

Git bisect points at:

commit 2df573d2ca4c1ce6ea33cb7849222f771e759211
Author: Andrey Konovalov <andreyknvl@google.com>
Date:   Tue Nov 24 16:45:08 2020 +1100

    kasan: shadow declarations only for software modes

Looks like it's this chunk:

diff --git a/include/linux/kasan.h b/include/linux/kasan.h
index 59538e795df4..26f2ab92e7ca 100644
--- a/include/linux/kasan.h
+++ b/include/linux/kasan.h
@@ -11,7 +11,6 @@ struct task_struct;

 #ifdef CONFIG_KASAN

-#include <linux/pgtable.h>
 #include <asm/kasan.h>

Testing shows putting that #include back in makes it compile correctly,
but it's not obvious why putting that back makes 'asmlinkage' recognized.

"You are in a twisty little maze of #includes, all different"... :)

[-- Attachment #2: Type: application/pgp-signature, Size: 832 bytes --]

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

* Re: linux-next 20201126 - build error on arm allmodconfig
  2020-11-26 13:25 linux-next 20201126 - build error on arm allmodconfig Valdis Klētnieks
@ 2020-11-26 14:14 ` Russell King - ARM Linux admin
  2020-11-26 14:18   ` Valdis Klētnieks
  2020-11-26 14:22   ` Valdis Klētnieks
  0 siblings, 2 replies; 5+ messages in thread
From: Russell King - ARM Linux admin @ 2020-11-26 14:14 UTC (permalink / raw)
  To: Valdis Klētnieks
  Cc: Andrey Ryabinin, linux-arm-kernel, kasan-dev, linux-kernel

On Thu, Nov 26, 2020 at 08:25:02AM -0500, Valdis Klētnieks wrote:
> Seems something is giving it indigestion regarding asmlinkage...
> 
>   CC      arch/arm/mm/kasan_init.o
> In file included from ./include/linux/kasan.h:15,
>                  from arch/arm/mm/kasan_init.c:11:
> ./arch/arm/include/asm/kasan.h:26:11: error: expected ';' before 'void'
>  asmlinkage void kasan_early_init(void);
>            ^~~~~
>            ;
> make[2]: *** [scripts/Makefile.build:283: arch/arm/mm/kasan_init.o] Error 1
> make[1]: *** [scripts/Makefile.build:500: arch/arm/mm] Error 2
> make: *** [Makefile:1803: arch/arm] Error 2
> 
> Git bisect points at:
> 
> commit 2df573d2ca4c1ce6ea33cb7849222f771e759211
> Author: Andrey Konovalov <andreyknvl@google.com>
> Date:   Tue Nov 24 16:45:08 2020 +1100
> 
>     kasan: shadow declarations only for software modes
> 
> Looks like it's this chunk:
> 
> diff --git a/include/linux/kasan.h b/include/linux/kasan.h
> index 59538e795df4..26f2ab92e7ca 100644
> --- a/include/linux/kasan.h
> +++ b/include/linux/kasan.h
> @@ -11,7 +11,6 @@ struct task_struct;
> 
>  #ifdef CONFIG_KASAN
> 
> -#include <linux/pgtable.h>
>  #include <asm/kasan.h>
> 
> Testing shows putting that #include back in makes it compile correctly,
> but it's not obvious why putting that back makes 'asmlinkage' recognized.
> 
> "You are in a twisty little maze of #includes, all different"... :)

The real answer is for asm/kasan.h to include linux/linkage.h

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

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

* Re: linux-next 20201126 - build error on arm allmodconfig
  2020-11-26 14:14 ` Russell King - ARM Linux admin
@ 2020-11-26 14:18   ` Valdis Klētnieks
  2020-11-26 14:22   ` Valdis Klētnieks
  1 sibling, 0 replies; 5+ messages in thread
From: Valdis Klētnieks @ 2020-11-26 14:18 UTC (permalink / raw)
  To: Russell King - ARM Linux admin
  Cc: Andrey Ryabinin, linux-arm-kernel, kasan-dev, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 169 bytes --]

On Thu, 26 Nov 2020 14:14:29 +0000, Russell King - ARM Linux admin said:

> The real answer is for asm/kasan.h to include linux/linkage.h

OK... I'll cook up the patch.

[-- Attachment #2: Type: application/pgp-signature, Size: 832 bytes --]

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

* Re: linux-next 20201126 - build error on arm allmodconfig
  2020-11-26 14:14 ` Russell King - ARM Linux admin
  2020-11-26 14:18   ` Valdis Klētnieks
@ 2020-11-26 14:22   ` Valdis Klētnieks
  2020-11-26 14:32     ` Russell King - ARM Linux admin
  1 sibling, 1 reply; 5+ messages in thread
From: Valdis Klētnieks @ 2020-11-26 14:22 UTC (permalink / raw)
  To: Russell King - ARM Linux admin
  Cc: Andrey Ryabinin, linux-arm-kernel, kasan-dev, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 316 bytes --]

On Thu, 26 Nov 2020 14:14:29 +0000, Russell King - ARM Linux admin said:

> The real answer is for asm/kasan.h to include linux/linkage.h

Looking deeper, there's  7 different arch/../asm/kasan.h - are we better off
patching all 7, or having include/linux/kasan.h include it just before
the include of asm/kasan.h?


[-- Attachment #2: Type: application/pgp-signature, Size: 832 bytes --]

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

* Re: linux-next 20201126 - build error on arm allmodconfig
  2020-11-26 14:22   ` Valdis Klētnieks
@ 2020-11-26 14:32     ` Russell King - ARM Linux admin
  0 siblings, 0 replies; 5+ messages in thread
From: Russell King - ARM Linux admin @ 2020-11-26 14:32 UTC (permalink / raw)
  To: Valdis Klētnieks
  Cc: Andrey Ryabinin, kasan-dev, linux-arm-kernel, linux-kernel

On Thu, Nov 26, 2020 at 09:22:53AM -0500, Valdis Klētnieks wrote:
> On Thu, 26 Nov 2020 14:14:29 +0000, Russell King - ARM Linux admin said:
> 
> > The real answer is for asm/kasan.h to include linux/linkage.h
> 
> Looking deeper, there's  7 different arch/../asm/kasan.h - are we better off
> patching all 7, or having include/linux/kasan.h include it just before
> the include of asm/kasan.h?

I wouldn't like to say definitively - it depends on what the policy
now is. However, linux/linage.h is way cheaper than linux/pgtable.h
so it probably makes sense for linux/kasan.h to include it given the
number of asm/kasan.h headers needing it.

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

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

end of thread, other threads:[~2020-11-26 14:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-26 13:25 linux-next 20201126 - build error on arm allmodconfig Valdis Klētnieks
2020-11-26 14:14 ` Russell King - ARM Linux admin
2020-11-26 14:18   ` Valdis Klētnieks
2020-11-26 14:22   ` Valdis Klētnieks
2020-11-26 14:32     ` Russell King - ARM Linux admin

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