arm64: Avoid cache flushing in flush_dcache_page()
authorCatalin Marinas <catalin.marinas@arm.com>
Wed, 1 May 2013 11:23:05 +0000 (12:23 +0100)
committerMark Brown <broonie@linaro.org>
Wed, 14 May 2014 11:17:43 +0000 (12:17 +0100)
commit84ddb8b066d3750c9971b9eed826e8d1dd4f9c53
tree21f9e39a009d490b3ba9a657fb73b4fa29886df0
parent66effa189f8ded4d968dd9c310137c50244477ad
arm64: Avoid cache flushing in flush_dcache_page()

commit b5b6c9e9149d8a7c3f1d7b9d0c046c6184e1dd17 upstream.

The flush_dcache_page() function is called when the kernel modified a
page cache page. Since the D-cache on AArch64 does not have aliases
this function can simply mark the page as dirty for later flushing via
set_pte_at()/__sync_icache_dcache() if the page is executable (to ensure
the I-D cache coherency).

Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Reported-by: Will Deacon <will.deacon@arm.com>
Acked-by: Will Deacon <will.deacon@arm.com>
Cc: Mark Brown <broonie@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
(cherry picked from commit 1e616427f20943c9966296dfff9e7a2b825846aa)
Signed-off-by: Mark Brown <broonie@linaro.org>
arch/arm64/mm/flush.c