1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ASM_GENERIC_TLBFLUSH_H
3 #define __ASM_GENERIC_TLBFLUSH_H
5 * This is a dummy tlbflush implementation that can be used on all
7 * If you have an MMU, you need to write your own functions.
10 #error need to implement an architecture specific asm/tlbflush.h
13 #include <linux/bug.h>
15 static inline void flush_tlb_mm(struct mm_struct *mm)
21 #endif /* __ASM_GENERIC_TLBFLUSH_H */