RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / asm-generic / tlbflush.h
blobc7af037024c787bb1c02c95ee6b7f2a2200cc1d7
1 #ifndef __ASM_GENERIC_TLBFLUSH_H
2 #define __ASM_GENERIC_TLBFLUSH_H
3 /*
4 * This is a dummy tlbflush implementation that can be used on all
5 * nommu architectures.
6 * If you have an MMU, you need to write your own functions.
7 */
8 #ifdef CONFIG_MMU
9 #error need to implement an architecture specific asm/tlbflush.h
10 #endif
12 static inline void flush_tlb_mm(struct mm_struct *mm)
14 BUG();
18 #endif /* __ASM_GENERIC_TLBFLUSH_H */