All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kasan, mm: fix build issue with asmlinkage
@ 2020-11-26 15:00 ` Valdis Klētnieks
  0 siblings, 0 replies; 6+ messages in thread
From: Valdis Klētnieks @ 2020-11-26 15:00 UTC (permalink / raw)
  To: Russell King - ARM Linux admin, Andrey Ryabinin
  Cc: kasan-dev, linux-arm-kernel, linux-kernel

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

    kasan: shadow declarations only for software modes

introduces a build failure when it removed an include for linux/pgtable.h
It actually only needs linux/linkage.h

Test builds on both x86_64 and arm build cleanly

Fixes:   2df573d2ca4c ("kasan: shadow declarations only for software modes")
Signed-off-by: Valdis Kletnieks <valdis.kletnieks@vt.edu>

---
diff --git a/include/linux/kasan.h b/include/linux/kasan.h
index 83860aa4e89c..5e0655fb2a6f 100644
--- a/include/linux/kasan.h
+++ b/include/linux/kasan.h
@@ -12,6 +12,7 @@ struct task_struct;
 
 #ifdef CONFIG_KASAN
 
+#include <linux/linkage.h>
 #include <asm/kasan.h>
 
 /* kasan_data struct is used in KUnit tests for KASAN expected failures */



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

end of thread, other threads:[~2020-11-30 15:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-26 15:00 [PATCH] kasan, mm: fix build issue with asmlinkage Valdis Klētnieks
2020-11-26 15:00 ` Valdis Klētnieks
2020-11-30  9:46 ` Marco Elver
2020-11-30  9:46   ` Marco Elver
2020-11-30 15:21   ` Andrey Konovalov
2020-11-30 15:21     ` Andrey Konovalov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.