summaryrefslogtreecommitdiffstats
path: root/include/asm-generic/pgtable.h
diff options
context:
space:
mode:
authorLuis R. Rodriguez <mcgrof@kernel.org>2018-08-17 18:46:32 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2018-08-17 19:20:29 -0400
commit1a9b4b3d75679fbe8c3bb8fb7e957ea693b6a89c (patch)
treefc1bc338462e660d33b13b4a47c399e0e4ca4f42 /include/asm-generic/pgtable.h
parenta3266bd49c721e2e0a71f352d83713fbd60caadb (diff)
mm: provide a fallback for PAGE_KERNEL_EXEC for architectures
Some architectures just don't have PAGE_KERNEL_EXEC. The mm/nommu.c and mm/vmalloc.c code have been using PAGE_KERNEL as a fallback for years. Move this fallback to asm-generic. Link: http://lkml.kernel.org/r/20180510185507.2439-3-mcgrof@kernel.org Signed-off-by: Luis R. Rodriguez <mcgrof@kernel.org> Suggested-by: Matthew Wilcox <willy@infradead.org> Reviewed-by: Andrew Morton <akpm@linux-foundation.org> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-generic/pgtable.h')
-rw-r--r--include/asm-generic/pgtable.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-generic/pgtable.h b/include/asm-generic/pgtable.h
index 62bbd6f23c35..88ebc6102c7c 100644
--- a/include/asm-generic/pgtable.h
+++ b/include/asm-generic/pgtable.h
@@ -1109,6 +1109,10 @@ static inline bool arch_has_pfn_modify_check(void)
1109# define PAGE_KERNEL_RO PAGE_KERNEL 1109# define PAGE_KERNEL_RO PAGE_KERNEL
1110#endif 1110#endif
1111 1111
1112#ifndef PAGE_KERNEL_EXEC
1113# define PAGE_KERNEL_EXEC PAGE_KERNEL
1114#endif
1115
1112#endif /* !__ASSEMBLY__ */ 1116#endif /* !__ASSEMBLY__ */
1113 1117
1114#ifndef io_remap_pfn_range 1118#ifndef io_remap_pfn_range