arm64: mm: ensure that the zero page is visible to the page table walker
authorWill Deacon <will.deacon@arm.com>
Thu, 10 Dec 2015 16:05:36 +0000 (16:05 +0000)
committerWill Deacon <will.deacon@arm.com>
Fri, 11 Dec 2015 17:33:22 +0000 (17:33 +0000)
In paging_init, we allocate the zero page, memset it to zero and then
point TTBR0 to it in order to avoid speculative fetches through the
identity mapping.

In order to guarantee that the freshly zeroed page is indeed visible to
the page table walker, we need to execute a dsb instruction prior to
writing the TTBR.

Cc: <stable@vger.kernel.org> # v3.14+, for older kernels need to drop the 'ishst'
Signed-off-by: Will Deacon <will.deacon@arm.com>
arch/arm64/mm/mmu.c

index c04def90f3e437f32e111e102b22ae224dcbec12..c5bd5bca8e3d48d9ef1be617be15cd84a485f853 100644 (file)
@@ -464,6 +464,9 @@ void __init paging_init(void)
 
        empty_zero_page = virt_to_page(zero_page);
 
+       /* Ensure the zero page is visible to the page table walker */
+       dsb(ishst);
+
        /*
         * TTBR0 is only used for the identity mapping at this stage. Make it
         * point to zero page to avoid speculatively fetching new entries.
This page took 0.047557 seconds and 5 git commands to generate.