]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 31 Jan 2016 19:25:54 +0000 (11:25 -0800)
commit 32d6397805d00573ce1fa55f408ce2bca15b0ad3 upstream.

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.

Signed-off-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/arm64/mm/mmu.c

index 9211b8527f2580aeb561b8c7cc3cdc75f728571f..9317974c9b8e906208c1fd8719b849bc9490895f 100644 (file)
@@ -451,6 +451,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.