aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2016-01-28 12:18:28 +0000
committerWill Deacon <will.deacon@arm.com>2016-02-03 19:22:02 +0000
commit3e275c64a973ba1554ef87f76c9f0f5b5221ab14 (patch)
treebe8f3b5c054b2813930f045e3a9e81176f413f7e /arch
parentarm64: futex.h: Add missing PAN toggling (diff)
downloadlinux-dev-3e275c64a973ba1554ef87f76c9f0f5b5221ab14.tar.xz
linux-dev-3e275c64a973ba1554ef87f76c9f0f5b5221ab14.zip
arm64: asm: Explicitly include linux/personality.h in asm/page.h
asm/page.h uses READ_IMPLIES_EXEC from linux/personality.h but does not explicitly include it causing build failures in -next where whatever was causing it to be implicitly included has changed to remove that inclusion. Add an explicit inclusion to fix this. Signed-off-by: Mark Brown <broonie@kernel.org> [will: moved #include inside #ifndef __ASSEMBLY__ block] Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm64/include/asm/page.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/include/asm/page.h b/arch/arm64/include/asm/page.h
index 9b2f5a9d019d..ae615b9d9a55 100644
--- a/arch/arm64/include/asm/page.h
+++ b/arch/arm64/include/asm/page.h
@@ -39,6 +39,7 @@
#ifndef __ASSEMBLY__
+#include <linux/personality.h> /* for READ_IMPLIES_EXEC */
#include <asm/pgtable-types.h>
extern void __cpu_clear_user_page(void *p, unsigned long user);