arm64: Add support for ARCH_SUPPORTS_DEBUG_PAGEALLOC
authorLaura Abbott <labbott@fedoraproject.org>
Sat, 6 Feb 2016 00:24:47 +0000 (16:24 -0800)
committerAlex Shi <alex.shi@linaro.org>
Mon, 14 Nov 2016 06:42:23 +0000 (14:42 +0800)
commit7d13203b6442d6851b967f3d8a9889b08ddd6e00
tree0c5e9c254d62c3ade65e2480bf777a505c6e4d12
parente1e5e10153f6e6ecbe3e132c87ac55fbd8e892bf
arm64: Add support for ARCH_SUPPORTS_DEBUG_PAGEALLOC

ARCH_SUPPORTS_DEBUG_PAGEALLOC provides a hook to map and unmap
pages for debugging purposes. This requires memory be mapped
with PAGE_SIZE mappings since breaking down larger mappings
at runtime will lead to TLB conflicts. Check if debug_pagealloc
is enabled at runtime and if so, map everyting with PAGE_SIZE
pages. Implement the functions to actually map/unmap the
pages at runtime.

Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Mark Rutland <mark.rutland@arm.com>
Tested-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Laura Abbott <labbott@fedoraproject.org>
[catalin.marinas@arm.com: static annotation block_mappings_allowed() and #ifdef]
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
(cherry picked from commit 83863f25e4b8214e994ef8b5647aad614d74b45d)
Signed-off-by: Alex Shi <alex.shi@linaro.org>
arch/arm64/Kconfig
arch/arm64/mm/mmu.c
arch/arm64/mm/pageattr.c