summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorAnisse Astier <aastier@freebox.fr>2019-06-17 15:22:21 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-06-25 11:34:54 +0800
commitba867ef4081c6ad19b65d3c7b3ccf8387e4c1b36 (patch)
treec2523e6de6b372c4c695b3b56cf55dc845d9a505 /arch
parentea352712b0738205d8220ec2fc705b192a59a3ee (diff)
arm64: ssbd: explicitly depend on <linux/prctl.h>
commit adeaa21a4b6954e878f3f7d1c5659ed9c1fe567a upstream. 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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm64/kernel/ssbd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/kernel/ssbd.c b/arch/arm64/kernel/ssbd.c
index 885f13e58708..52cfc6148355 100644
--- a/arch/arm64/kernel/ssbd.c
+++ b/arch/arm64/kernel/ssbd.c
@@ -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>