diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-x86_64/mmu_context.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'include/asm-x86_64/mmu_context.h')
-rw-r--r-- | include/asm-x86_64/mmu_context.h | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/include/asm-x86_64/mmu_context.h b/include/asm-x86_64/mmu_context.h new file mode 100644 index 000000000000..b630d52bdfb1 --- /dev/null +++ b/include/asm-x86_64/mmu_context.h | |||
@@ -0,0 +1,79 @@ | |||
1 | #ifndef __X86_64_MMU_CONTEXT_H | ||
2 | #define __X86_64_MMU_CONTEXT_H | ||
3 | |||
4 | #include <linux/config.h> | ||
5 | #include <asm/desc.h> | ||
6 | #include <asm/atomic.h> | ||
7 | #include <asm/pgalloc.h> | ||
8 | #include <asm/pda.h> | ||
9 | #include <asm/pgtable.h> | ||
10 | #include <asm/tlbflush.h> | ||
11 | |||
12 | /* | ||
13 | * possibly do the LDT unload here? | ||
14 | */ | ||
15 | int init_new_context(struct task_struct *tsk, struct mm_struct *mm); | ||
16 | void destroy_context(struct mm_struct *mm); | ||
17 | |||
18 | #ifdef CONFIG_SMP | ||
19 | |||
20 | static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk) | ||
21 | { | ||
22 | if (read_pda(mmu_state) == TLBSTATE_OK) | ||
23 | write_pda(mmu_state, TLBSTATE_LAZY); | ||
24 | } | ||
25 | #else | ||
26 | static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk) | ||
27 | { | ||
28 | } | ||
29 | #endif | ||
30 | |||
31 | static inline void load_cr3(pgd_t *pgd) | ||
32 | { | ||
33 | asm volatile("movq %0,%%cr3" :: "r" (__pa(pgd)) : "memory"); | ||
34 | } | ||
35 | |||
36 | static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, | ||
37 | struct task_struct *tsk) | ||
38 | { | ||
39 | unsigned cpu = smp_processor_id(); | ||
40 | if (likely(prev != next)) { | ||
41 | /* stop flush ipis for the previous mm */ | ||
42 | clear_bit(cpu, &prev->cpu_vm_mask); | ||
43 | #ifdef CONFIG_SMP | ||
44 | write_pda(mmu_state, TLBSTATE_OK); | ||
45 | write_pda(active_mm, next); | ||
46 | #endif | ||
47 | set_bit(cpu, &next->cpu_vm_mask); | ||
48 | load_cr3(next->pgd); | ||
49 | |||
50 | if (unlikely(next->context.ldt != prev->context.ldt)) | ||
51 | load_LDT_nolock(&next->context, cpu); | ||
52 | } | ||
53 | #ifdef CONFIG_SMP | ||
54 | else { | ||
55 | write_pda(mmu_state, TLBSTATE_OK); | ||
56 | if (read_pda(active_mm) != next) | ||
57 | out_of_line_bug(); | ||
58 | if(!test_and_set_bit(cpu, &next->cpu_vm_mask)) { | ||
59 | /* We were in lazy tlb mode and leave_mm disabled | ||
60 | * tlb flush IPI delivery. We must reload CR3 | ||
61 | * to make sure to use no freed page tables. | ||
62 | */ | ||
63 | load_cr3(next->pgd); | ||
64 | load_LDT_nolock(&next->context, cpu); | ||
65 | } | ||
66 | } | ||
67 | #endif | ||
68 | } | ||
69 | |||
70 | #define deactivate_mm(tsk,mm) do { \ | ||
71 | load_gs_index(0); \ | ||
72 | asm volatile("movl %0,%%fs"::"r"(0)); \ | ||
73 | } while(0) | ||
74 | |||
75 | #define activate_mm(prev, next) \ | ||
76 | switch_mm((prev),(next),NULL) | ||
77 | |||
78 | |||
79 | #endif | ||