mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH master 1/2] KASan: test_kasan: silence warning with newer GCC
@ 2022-12-12 16:39 Ahmad Fatoum
  2022-12-12 16:39 ` [PATCH master 2/2] KASan: fix handling of devices with MMIO above SDRAM memory region Ahmad Fatoum
  2022-12-13  8:37 ` [PATCH master 1/2] KASan: test_kasan: silence warning with newer GCC Sascha Hauer
  0 siblings, 2 replies; 3+ messages in thread
From: Ahmad Fatoum @ 2022-12-12 16:39 UTC (permalink / raw)
  To: barebox; +Cc: Ahmad Fatoum

Newer GCC will rightly complain about this being an out-of-bounds
access. This is intended as the kasan command is meant to cause
out-of-bounds accesses to test proper operation of KASan.

Thus silence the warning for this specific instance.

Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
 lib/kasan/test_kasan.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/kasan/test_kasan.c b/lib/kasan/test_kasan.c
index d0ea91547711..14511cdb80bd 100644
--- a/lib/kasan/test_kasan.c
+++ b/lib/kasan/test_kasan.c
@@ -290,6 +290,8 @@ static noinline void kasan_alloca_oob_left(void)
 	char alloca_array[i];
 	char *p = alloca_array - 1;
 
+	OPTIMIZER_HIDE_VAR(p);
+
 	pr_info("out-of-bounds to left on alloca\n");
 	*(volatile char *)p;
 }
-- 
2.30.2




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

end of thread, other threads:[~2022-12-13  8:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-12 16:39 [PATCH master 1/2] KASan: test_kasan: silence warning with newer GCC Ahmad Fatoum
2022-12-12 16:39 ` [PATCH master 2/2] KASan: fix handling of devices with MMIO above SDRAM memory region Ahmad Fatoum
2022-12-13  8:37 ` [PATCH master 1/2] KASan: test_kasan: silence warning with newer GCC Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox