diff options
| author | Ard Biesheuvel <ardb@kernel.org> | 2026-05-29 18:01:52 +0300 |
|---|---|---|
| committer | Will Deacon <will@kernel.org> | 2026-06-02 18:29:15 +0300 |
| commit | 36ca7f4be8094d1441fc35e00dd581467badf298 (patch) | |
| tree | 61ecc82c7092b609f19b18baa33b2f55488db0a4 | |
| parent | 13d0fdc0901614f0d6c9066193bca6fe63a70c6e (diff) | |
| download | linux-36ca7f4be8094d1441fc35e00dd581467badf298.tar.xz | |
arm64: mm: Remove bogus stop condition from map_mem() loop
The memblock API guarantees that start is not greater than or equal to
end, so there is no need to test it. And if it were, it is doubtful that
breaking out of the loop would be a reasonable course of action here
(rather than attempting to map the remaining regions)
So let's drop this check.
Reviewed-by: Ryan Roberts <ryan.roberts@arm.com>
Reviewed-by: Kevin Brodsky <kevin.brodsky@arm.com>
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Will Deacon <will@kernel.org>
| -rw-r--r-- | arch/arm64/mm/mmu.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm64/mm/mmu.c b/arch/arm64/mm/mmu.c index 4c8959153ac4..96ab9e822bb1 100644 --- a/arch/arm64/mm/mmu.c +++ b/arch/arm64/mm/mmu.c @@ -1173,8 +1173,6 @@ static void __init map_mem(pgd_t *pgdp) /* map all the memory banks */ for_each_mem_range(i, &start, &end) { - if (start >= end) - break; /* * The linear map must allow allocation tags reading/writing * if MTE is present. Otherwise, it has the same attributes as |
