]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
arm64: mm: Define arch_get_mmap_end, arch_get_mmap_base
authorSteve Capper <steve.capper@arm.com>
Thu, 6 Dec 2018 22:50:38 +0000 (22:50 +0000)
committerWill Deacon <will.deacon@arm.com>
Mon, 10 Dec 2018 18:42:17 +0000 (18:42 +0000)
Now that we have DEFAULT_MAP_WINDOW defined, we can arch_get_mmap_end
and arch_get_mmap_base helpers to allow for high addresses in mmap.

Signed-off-by: Steve Capper <steve.capper@arm.com>
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
arch/arm64/include/asm/processor.h

index 102bab4344b7fc41677c14cd27ff16ad3cbe6dfb..759927faf7f6829d960700f69ee3738ba9f000f9 100644 (file)
 #define STACK_TOP              STACK_TOP_MAX
 #endif /* CONFIG_COMPAT */
 
+#define arch_get_mmap_end(addr) ((addr > DEFAULT_MAP_WINDOW) ? TASK_SIZE :\
+                               DEFAULT_MAP_WINDOW)
+
+#define arch_get_mmap_base(addr, base) ((addr > DEFAULT_MAP_WINDOW) ? \
+                                       base + TASK_SIZE - DEFAULT_MAP_WINDOW :\
+                                       base)
+
 extern phys_addr_t arm64_dma_phys_limit;
 #define ARCH_LOW_ADDRESS_LIMIT (arm64_dma_phys_limit - 1)