Skip to content

Commit

Permalink
arm64: mm: ensure that the zero page is visible to the page table walker
Browse files Browse the repository at this point in the history
commit 32d6397 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 <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
wildea01 authored and gregkh committed Jan 29, 2016
1 parent c87aa8c commit c05b439
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions arch/arm64/mm/mmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,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.
Expand Down

0 comments on commit c05b439

Please sign in to comment.