mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-23 23:49:40 +07:00
powerpc/64s/radix: Fix CONFIG_SMP=n build
Signed-off-by: Nicholas Piggin <npiggin@gmail.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20200302010410.2957362-1-npiggin@gmail.com
This commit is contained in:
parent
47bf235f32
commit
993cfecc59
@ -26,6 +26,7 @@
|
||||
#include <asm/firmware.h>
|
||||
#include <asm/powernv.h>
|
||||
#include <asm/sections.h>
|
||||
#include <asm/smp.h>
|
||||
#include <asm/trace.h>
|
||||
#include <asm/uaccess.h>
|
||||
#include <asm/ultravisor.h>
|
||||
|
@ -587,6 +587,11 @@ void radix__local_flush_all_mm(struct mm_struct *mm)
|
||||
preempt_enable();
|
||||
}
|
||||
EXPORT_SYMBOL(radix__local_flush_all_mm);
|
||||
|
||||
static void __flush_all_mm(struct mm_struct *mm, bool fullmm)
|
||||
{
|
||||
radix__local_flush_all_mm(mm);
|
||||
}
|
||||
#endif /* CONFIG_SMP */
|
||||
|
||||
void radix__local_flush_tlb_page_psize(struct mm_struct *mm, unsigned long vmaddr,
|
||||
@ -777,7 +782,7 @@ void radix__flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr)
|
||||
EXPORT_SYMBOL(radix__flush_tlb_page);
|
||||
|
||||
#else /* CONFIG_SMP */
|
||||
#define radix__flush_all_mm radix__local_flush_all_mm
|
||||
static inline void exit_flush_lazy_tlbs(struct mm_struct *mm) { }
|
||||
#endif /* CONFIG_SMP */
|
||||
|
||||
static void do_tlbiel_kernel(void *info)
|
||||
|
Loading…
Reference in New Issue
Block a user