arm64: mm: allow sections for unaligned bases
authorMark Rutland <mark.rutland@arm.com>
Mon, 23 Nov 2015 13:26:20 +0000 (13:26 +0000)
committerWill Deacon <will.deacon@arm.com>
Tue, 1 Dec 2015 09:47:03 +0000 (09:47 +0000)
Callees of __create_mapping may decide to create section mappings if
sufficient low bits of the physical and virtual addresses they were
passed are zero. While __create_mapping rounds the virtual base address
down, it does not similarly round the physical base address down, and
hence non-zero bits in the physical address can prevent use of a section
mapping, even where a whole next-level table would be used instead.

Round down the physical base address in __create_mapping to enable all
callees to always create section mappings when such a mapping is
possible.

Cc: Laura Abbott <labbott@fedoraproject.org>
Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Reviewed-by: Steve Capper <steve.capper@linaro.org>
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
arch/arm64/mm/mmu.c

index 6e4b4351ce9e69919d3b653c72eb8b0b87501a01..bb42ac116a255a37c385c3da7d976420e42926b3 100644 (file)
@@ -258,6 +258,7 @@ static void  __create_mapping(struct mm_struct *mm, pgd_t *pgd,
        if (WARN_ON((phys ^ virt) & ~PAGE_MASK))
                return;
 
+       phys &= PAGE_MASK;
        addr = virt & PAGE_MASK;
        length = PAGE_ALIGN(size + (virt & ~PAGE_MASK));
 
This page took 0.0264 seconds and 5 git commands to generate.