tlbflush.h (fc8e1ead9314cf0e0f1922e661428b93d3a50d88) | tlbflush.h (187f1882b5b0748b3c4c22274663fdb372ac0452) |
---|---|
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 11 | 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 11 |
12#include <linux/bug.h> 13 |
|
12static inline void flush_tlb_mm(struct mm_struct *mm) 13{ 14 BUG(); 15} 16 17 18#endif /* __ASM_GENERIC_TLBFLUSH_H */ | 14static inline void flush_tlb_mm(struct mm_struct *mm) 15{ 16 BUG(); 17} 18 19 20#endif /* __ASM_GENERIC_TLBFLUSH_H */ |