mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-22 13:37:49 +07:00
471e475c69
In commit17312f258c
("powerpc/mm: Move book3s32 specifics in subdirectory mm/book3s64"), ppc_mmu_32.c was moved and renamed. This patch fixes Makefiles to disable KASAN instrumentation on the new name and location. Fixes:f072015c7b
("powerpc: disable KASAN instrumentation on early/critical files.") Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
10 lines
181 B
Makefile
10 lines
181 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
KASAN_SANITIZE_mmu.o := n
|
|
|
|
ifdef CONFIG_KASAN
|
|
CFLAGS_mmu.o += -DDISABLE_BRANCH_PROFILING
|
|
endif
|
|
|
|
obj-y += mmu.o hash_low.o mmu_context.o tlb.o
|