diff options
author | Mark Brown <broonie@kernel.org> | 2016-01-28 15:18:28 +0300 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2016-02-03 22:22:02 +0300 |
commit | 3e275c64a973ba1554ef87f76c9f0f5b5221ab14 (patch) | |
tree | be8f3b5c054b2813930f045e3a9e81176f413f7e /arch/arm64/include/asm/page.h | |
parent | 811d61e384e24759372bb3f01772f3744b0a8327 (diff) | |
download | linux-3e275c64a973ba1554ef87f76c9f0f5b5221ab14.tar.xz |
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/arm64/include/asm/page.h')
-rw-r--r-- | arch/arm64/include/asm/page.h | 1 |
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); |