]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
arm64: ssbd: explicitly depend on <linux/prctl.h>
authorAnisse Astier <aastier@freebox.fr>
Mon, 17 Jun 2019 13:22:21 +0000 (15:22 +0200)
committerWill Deacon <will.deacon@arm.com>
Mon, 17 Jun 2019 17:38:10 +0000 (18:38 +0100)
Fix ssbd.c which depends implicitly on asm/ptrace.h including
linux/prctl.h (through for example linux/compat.h, then linux/time.h,
linux/seqlock.h, linux/spinlock.h and linux/irqflags.h), and uses
PR_SPEC* defines.

This is an issue since we'll soon be removing the include from
asm/ptrace.h.

Fixes: 9cdc0108baa8 ("arm64: ssbd: Add prctl interface for per-thread mitigation")
Cc: stable@vger.kernel.org
Signed-off-by: Anisse Astier <aastier@freebox.fr>
Signed-off-by: Will Deacon <will.deacon@arm.com>
arch/arm64/kernel/ssbd.c

index 885f13e587088fbd2448353d511cb83bdd09bcb1..52cfc6148355f8d129fd307010a1aabecf515631 100644 (file)
@@ -5,6 +5,7 @@
 
 #include <linux/compat.h>
 #include <linux/errno.h>
+#include <linux/prctl.h>
 #include <linux/sched.h>
 #include <linux/sched/task_stack.h>
 #include <linux/thread_info.h>