* [PATCH] KAsan: support including header from PBL
@ 2023-09-11 12:15 Ahmad Fatoum
2023-09-12 9:28 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Ahmad Fatoum @ 2023-09-11 12:15 UTC (permalink / raw)
To: barebox; +Cc: Ahmad Fatoum
It can be sometimes useful to add manual poisoning with KASAN to track
down errant accesses. This is complicated a bit, because some files are
build for both PBL and barebox proper. To make such debugging easier,
let's allow <linux/kasan.h> to be included from PBL code.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
include/linux/kasan.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/kasan.h b/include/linux/kasan.h
index 7c184cd0e234..54fb993f38ba 100644
--- a/include/linux/kasan.h
+++ b/include/linux/kasan.h
@@ -42,7 +42,7 @@
#define KASAN_ALLOCA_LEFT 0xCA
#define KASAN_ALLOCA_RIGHT 0xCB
-#ifdef CONFIG_KASAN
+#if defined(CONFIG_KASAN) && !defined(__PBL__)
extern unsigned long kasan_shadow_start;
extern unsigned long kasan_shadow_base;
--
2.39.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] KAsan: support including header from PBL
2023-09-11 12:15 [PATCH] KAsan: support including header from PBL Ahmad Fatoum
@ 2023-09-12 9:28 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2023-09-12 9:28 UTC (permalink / raw)
To: Ahmad Fatoum; +Cc: barebox
On Mon, Sep 11, 2023 at 02:15:24PM +0200, Ahmad Fatoum wrote:
> It can be sometimes useful to add manual poisoning with KASAN to track
> down errant accesses. This is complicated a bit, because some files are
> build for both PBL and barebox proper. To make such debugging easier,
> let's allow <linux/kasan.h> to be included from PBL code.
>
> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> ---
> include/linux/kasan.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Applied, thanks
Sascha
>
> diff --git a/include/linux/kasan.h b/include/linux/kasan.h
> index 7c184cd0e234..54fb993f38ba 100644
> --- a/include/linux/kasan.h
> +++ b/include/linux/kasan.h
> @@ -42,7 +42,7 @@
> #define KASAN_ALLOCA_LEFT 0xCA
> #define KASAN_ALLOCA_RIGHT 0xCB
>
> -#ifdef CONFIG_KASAN
> +#if defined(CONFIG_KASAN) && !defined(__PBL__)
>
> extern unsigned long kasan_shadow_start;
> extern unsigned long kasan_shadow_base;
> --
> 2.39.2
>
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-09-12 9:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-11 12:15 [PATCH] KAsan: support including header from PBL Ahmad Fatoum
2023-09-12 9:28 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox