blob: dc2669289faf69f53501d3d6a69992329766aef4 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Arnd Bergmann5c01b462009-05-13 22:56:36 +00002#ifndef __ASM_GENERIC_TLBFLUSH_H
3#define __ASM_GENERIC_TLBFLUSH_H
4/*
5 * This is a dummy tlbflush implementation that can be used on all
6 * nommu architectures.
7 * If you have an MMU, you need to write your own functions.
8 */
9#ifdef CONFIG_MMU
10#error need to implement an architecture specific asm/tlbflush.h
11#endif
12
Paul Gortmaker187f1882011-11-23 20:12:59 -050013#include <linux/bug.h>
14
Arnd Bergmann5c01b462009-05-13 22:56:36 +000015static inline void flush_tlb_mm(struct mm_struct *mm)
16{
17 BUG();
18}
19
20
21#endif /* __ASM_GENERIC_TLBFLUSH_H */