GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / asm-generic / mmu_context.h
bloba7eec910ba6c6b26b84985ad8bfe82a2574a5005
1 #ifndef __ASM_GENERIC_MMU_CONTEXT_H
2 #define __ASM_GENERIC_MMU_CONTEXT_H
4 /*
5 * Generic hooks for NOMMU architectures, which do not need to do
6 * anything special here.
7 */
9 #include <asm-generic/mm_hooks.h>
11 struct task_struct;
12 struct mm_struct;
14 static inline void enter_lazy_tlb(struct mm_struct *mm,
15 struct task_struct *tsk)
19 static inline int init_new_context(struct task_struct *tsk,
20 struct mm_struct *mm)
22 return 0;
25 static inline void destroy_context(struct mm_struct *mm)
29 static inline void deactivate_mm(struct task_struct *task,
30 struct mm_struct *mm)
34 static inline void switch_mm(struct mm_struct *prev,
35 struct mm_struct *next,
36 struct task_struct *tsk)
40 static inline void activate_mm(struct mm_struct *prev_mm,
41 struct mm_struct *next_mm)
45 #endif /* __ASM_GENERIC_MMU_CONTEXT_H */