x86/mm: Include spinlock_t definition in pgtable.
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>
Tue, 2 Nov 2021 16:52:24 +0000 (17:52 +0100)
committerDave Hansen <dave.hansen@linux.intel.com>
Thu, 9 Dec 2021 18:58:48 +0000 (10:58 -0800)
This header file provides forward declartion for pgd_lock but does not
include the header defining its type. This works since the definition of
spinlock_t is usually included somehow via printk.

By trying to avoid recursive includes on PREEMPT_RT I avoided the loop
in printk and as a consequnce kernel/intel.c failed to compile due to
missing type definition.

Include the needed definition for spinlock_t.

Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com>
Link: https://lkml.kernel.org/r/20211102165224.wpz4zyhsvwccx5p3@linutronix.de
arch/x86/include/asm/pgtable.h

index 448cd01eb3ecb59ba3c56ca7419f4913c04e8c7f..a34430b7af4a3e379114e918cda1689f9a8838fd 100644 (file)
@@ -22,6 +22,7 @@
 #define pgprot_decrypted(prot) __pgprot(__sme_clr(pgprot_val(prot)))
 
 #ifndef __ASSEMBLY__
+#include <linux/spinlock.h>
 #include <asm/x86_init.h>
 #include <asm/pkru.h>
 #include <asm/fpu/api.h>