diff options
author | Christophe Leroy <christophe.leroy@csgroup.eu> | 2020-10-22 08:29:35 +0200 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2020-12-09 06:46:55 +0100 |
commit | f265512582a047e09390b1b41384f365d7dc806f (patch) | |
tree | 6d38c7f8d429a457d44d4361ecc4ce0d7104084e /arch/powerpc/mm/book3s32/Makefile | |
parent | powerpc/32s: Inline _tlbie() on non SMP (diff) | |
download | linux-f265512582a047e09390b1b41384f365d7dc806f.tar.xz linux-f265512582a047e09390b1b41384f365d7dc806f.zip |
powerpc/32s: Move _tlbie() and _tlbia() in a new file
_tlbie() and _tlbia() are used only on 603 cores while the
other functions are used only on cores having a hash table.
Move them into a new file named nohash_low.S
Add mmu_hash_lock var is used by both, it needs to go
in a common file.
Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/9a265b1b17a64153463d361280cb4b43eb1266a4.1603348103.git.christophe.leroy@csgroup.eu
Diffstat (limited to 'arch/powerpc/mm/book3s32/Makefile')
-rw-r--r-- | arch/powerpc/mm/book3s32/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/mm/book3s32/Makefile b/arch/powerpc/mm/book3s32/Makefile index 1732eaa740a9..3f972db17761 100644 --- a/arch/powerpc/mm/book3s32/Makefile +++ b/arch/powerpc/mm/book3s32/Makefile @@ -6,4 +6,4 @@ ifdef CONFIG_KASAN CFLAGS_mmu.o += -DDISABLE_BRANCH_PROFILING endif -obj-y += mmu.o hash_low.o mmu_context.o tlb.o +obj-y += mmu.o hash_low.o mmu_context.o tlb.o nohash_low.o |