This source file includes following definitions.
- enter_lazy_tlb
1
2 #ifndef __SPARC_MMU_CONTEXT_H
3 #define __SPARC_MMU_CONTEXT_H
4
5 #ifndef __ASSEMBLY__
6
7 #include <asm-generic/mm_hooks.h>
8
9 static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk)
10 {
11 }
12
13
14
15
16 int init_new_context(struct task_struct *tsk, struct mm_struct *mm);
17
18
19
20
21
22
23 void destroy_context(struct mm_struct *mm);
24
25
26 void switch_mm(struct mm_struct *old_mm, struct mm_struct *mm,
27 struct task_struct *tsk);
28
29 #define deactivate_mm(tsk,mm) do { } while (0)
30
31
32 #define activate_mm(active_mm, mm) switch_mm((active_mm), (mm), NULL)
33
34 #endif
35
36 #endif