diff options
author | Christophe Leroy | 2017-08-02 15:51:09 +0200 |
---|---|---|
committer | Michael Ellerman | 2017-08-15 14:55:58 +0200 |
commit | 4cfac2f9c7f116af8516d0b3d0e7383189eca376 (patch) | |
tree | 1d695768b3d1f2bd3a37e389dbb9057d694c3cd3 /arch/powerpc/mm/pgtable_32.c | |
parent | powerpc/mm: declare some local functions static (diff) | |
download | kernel-qcow2-linux-4cfac2f9c7f116af8516d0b3d0e7383189eca376.tar.gz kernel-qcow2-linux-4cfac2f9c7f116af8516d0b3d0e7383189eca376.tar.xz kernel-qcow2-linux-4cfac2f9c7f116af8516d0b3d0e7383189eca376.zip |
powerpc/mm: Simplify __set_fixmap()
__set_fixmap() uses __fix_to_virt() then does the boundary checks
by it self. Instead, we can use fix_to_virt() which does the
verification at build time. For this, we need to use it inline
so that GCC can see the real value of idx at buildtime.
In the meantime, we remove the 'fixmaps' variable.
This variable is set but has never been used from the beginning
(commit 2c419bdeca1d9 ("[POWERPC] Port fixmap from x86 and use
for kmap_atomic"))
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/mm/pgtable_32.c')
-rw-r--r-- | arch/powerpc/mm/pgtable_32.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/powerpc/mm/pgtable_32.c b/arch/powerpc/mm/pgtable_32.c index 57f89cd88568..65eda1997c3f 100644 --- a/arch/powerpc/mm/pgtable_32.c +++ b/arch/powerpc/mm/pgtable_32.c @@ -408,18 +408,3 @@ void __kernel_map_pages(struct page *page, int numpages, int enable) change_page_attr(page, numpages, enable ? PAGE_KERNEL : __pgprot(0)); } #endif /* CONFIG_DEBUG_PAGEALLOC */ - -static int fixmaps; - -void __set_fixmap (enum fixed_addresses idx, phys_addr_t phys, pgprot_t flags) -{ - unsigned long address = __fix_to_virt(idx); - - if (idx >= __end_of_fixed_addresses) { - BUG(); - return; - } - - map_kernel_page(address, phys, pgprot_val(flags)); - fixmaps++; -} |