diff options
author | Aneesh Kumar K.V <[email protected]> | 2019-04-17 18:29:13 +0530 |
---|---|---|
committer | Michael Ellerman <[email protected]> | 2019-04-21 23:12:39 +1000 |
commit | a35a3c6f60657812366fca86a9ce71df1b8f7aff (patch) | |
tree | 65add16dc7417ce679c2a79c9dba00f0c2b5b341 /arch/powerpc/mm/hash_utils_64.c | |
parent | ef629cc5bf0543eb57d6e344ba776880ac35fd00 (diff) |
powerpc/mm/hash64: Add a variable to track the end of IO mapping
This makes it easy to update the region mapping in the later patch
Signed-off-by: Aneesh Kumar K.V <[email protected]>
Signed-off-by: Michael Ellerman <[email protected]>
Diffstat (limited to 'arch/powerpc/mm/hash_utils_64.c')
-rw-r--r-- | arch/powerpc/mm/hash_utils_64.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/mm/hash_utils_64.c b/arch/powerpc/mm/hash_utils_64.c index 6a2d315495a3..f6ffe8545717 100644 --- a/arch/powerpc/mm/hash_utils_64.c +++ b/arch/powerpc/mm/hash_utils_64.c @@ -1013,6 +1013,7 @@ void __init hash__early_init_mmu(void) __vmalloc_start = H_VMALLOC_START; __vmalloc_end = H_VMALLOC_END; __kernel_io_start = H_KERN_IO_START; + __kernel_io_end = H_KERN_IO_END; vmemmap = (struct page *)H_VMEMMAP_BASE; ioremap_bot = IOREMAP_BASE; |