This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / include / asm-i386 / mach-xen / asm / tlbflush.h
1 #ifndef _I386_TLBFLUSH_H
2 #define _I386_TLBFLUSH_H
3
4 #include <linux/config.h>
5 #include <linux/mm.h>
6 #include <asm/processor.h>
7
8 #define __flush_tlb() xen_tlb_flush()
9 #define __flush_tlb_global() xen_tlb_flush()
10 #define __flush_tlb_all() xen_tlb_flush()
11
12 extern unsigned long pgkern_mask;
13
14 #define cpu_has_invlpg  (boot_cpu_data.x86 > 3)
15
16 #define __flush_tlb_single(addr) xen_invlpg(addr)
17
18 #define __flush_tlb_one(addr) __flush_tlb_single(addr)
19
20 /*
21  * TLB flushing:
22  *
23  *  - flush_tlb() flushes the current mm struct TLBs
24  *  - flush_tlb_all() flushes all processes TLBs
25  *  - flush_tlb_mm(mm) flushes the specified mm context TLB's
26  *  - flush_tlb_page(vma, vmaddr) flushes one page
27  *  - flush_tlb_range(vma, start, end) flushes a range of pages
28  *  - flush_tlb_kernel_range(start, end) flushes a range of kernel pages
29  *  - flush_tlb_pgtables(mm, start, end) flushes a range of page tables
30  *
31  * ..but the i386 has somewhat limited tlb flushing capabilities,
32  * and page-granular flushes are available only on i486 and up.
33  */
34
35 #ifndef CONFIG_SMP
36
37 #define flush_tlb() __flush_tlb()
38 #define flush_tlb_all() __flush_tlb_all()
39 #define local_flush_tlb() __flush_tlb()
40
41 static inline void flush_tlb_mm(struct mm_struct *mm)
42 {
43         if (mm == current->active_mm)
44                 __flush_tlb();
45 }
46
47 static inline void flush_tlb_page(struct vm_area_struct *vma,
48         unsigned long addr)
49 {
50         if (vma->vm_mm == current->active_mm)
51                 __flush_tlb_one(addr);
52 }
53
54 static inline void flush_tlb_range(struct vm_area_struct *vma,
55         unsigned long start, unsigned long end)
56 {
57         if (vma->vm_mm == current->active_mm)
58                 __flush_tlb();
59 }
60
61 #else
62
63 #include <asm/smp.h>
64
65 #define local_flush_tlb() \
66         __flush_tlb()
67
68 extern void flush_tlb_all(void);
69 extern void flush_tlb_current_task(void);
70 extern void flush_tlb_mm(struct mm_struct *);
71 extern void flush_tlb_page(struct vm_area_struct *, unsigned long);
72
73 #define flush_tlb()     flush_tlb_current_task()
74
75 static inline void flush_tlb_range(struct vm_area_struct * vma, unsigned long start, unsigned long end)
76 {
77         flush_tlb_mm(vma->vm_mm);
78 }
79
80 #define TLBSTATE_OK     1
81 #define TLBSTATE_LAZY   2
82
83 struct tlb_state
84 {
85         struct mm_struct *active_mm;
86         int state;
87         char __cacheline_padding[L1_CACHE_BYTES-8];
88 };
89 DECLARE_PER_CPU(struct tlb_state, cpu_tlbstate);
90
91
92 #endif
93
94 #define flush_tlb_kernel_range(start, end) flush_tlb_all()
95
96 static inline void flush_tlb_pgtables(struct mm_struct *mm,
97                                       unsigned long start, unsigned long end)
98 {
99         /* i386 does not keep any page table caches in TLB */
100 }
101
102 #endif /* _I386_TLBFLUSH_H */