diff options
author | Will Deacon <will.deacon@arm.com> | 2015-12-10 19:05:36 +0300 |
---|---|---|
committer | Luis Henriques <luis.henriques@canonical.com> | 2016-02-02 20:38:37 +0300 |
commit | d1afef76e102be87955151c93bd51fd04c1c0c01 (patch) | |
tree | 563f4c89018266724aa5694a8a1ab2485c14b602 | |
parent | 3089ebbd4a4dda533e7031edc5227529c58bd7ea (diff) | |
download | linux-d1afef76e102be87955151c93bd51fd04c1c0c01.tar.xz |
arm64: mm: ensure that the zero page is visible to the page table walker
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: Luis Henriques <luis.henriques@canonical.com>
-rw-r--r-- | arch/arm64/mm/mmu.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm64/mm/mmu.c b/arch/arm64/mm/mmu.c index c43f1dd19489..703e5692dc3a 100644 --- a/arch/arm64/mm/mmu.c +++ b/arch/arm64/mm/mmu.c @@ -351,6 +351,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. |