diff options
author | Mark Rutland <mark.rutland@arm.com> | 2023-04-06 18:27:58 +0300 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2023-04-11 20:55:28 +0300 |
commit | b97547761b02cc95e0e6be827dc9ca9da8142761 (patch) | |
tree | efc00269ee2243872d1683a58f2b31e104635ecd /arch/arm64/include/asm/fixmap.h | |
parent | 32f5b6995f790ac8fc048d3afd6b83c82074aedf (diff) | |
download | linux-b97547761b02cc95e0e6be827dc9ca9da8142761.tar.xz |
arm64: mm: move fixmap code to its own file
Over time, arm64's mm/mmu.c has become increasingly large and painful to
navigate. Move the fixmap code to its own file where it can be understood in
isolation.
There should be no functional change as a result of this patch.
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Cc: Anshuman Khandual <anshuman.khandual@arm.com>
Cc: Ard Biesheuvel <ardb@kernel.org>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Ryan Roberts <ryan.roberts@arm.com>
Cc: Will Deacon <will@kernel.org>
Reviewed-by: Ryan Roberts <ryan.roberts@arm.com>
Link: https://lore.kernel.org/r/20230406152759.4164229-3-mark.rutland@arm.com
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'arch/arm64/include/asm/fixmap.h')
-rw-r--r-- | arch/arm64/include/asm/fixmap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/include/asm/fixmap.h b/arch/arm64/include/asm/fixmap.h index 508238f73ba8..42e21c6bc0dd 100644 --- a/arch/arm64/include/asm/fixmap.h +++ b/arch/arm64/include/asm/fixmap.h @@ -103,6 +103,7 @@ enum fixed_addresses { #define FIXMAP_PAGE_IO __pgprot(PROT_DEVICE_nGnRE) void __init early_fixmap_init(void); +void __init fixmap_copy(pgd_t *pgdir); #define __early_set_fixmap __set_fixmap |