[PATCH] efs: add entry for EFS filesystem to MAINTAINERS as Orphan
[linux-2.6/kvm.git] / include / asm-x86_64 / tlbflush.h
blobd16d5b60f419b4680d20bd14bb7b93bba8f74308
1 #ifndef _X8664_TLBFLUSH_H
2 #define _X8664_TLBFLUSH_H
4 #include <linux/mm.h>
5 #include <asm/processor.h>
7 #define __flush_tlb() \
8 do { \
9 unsigned long tmpreg; \
11 __asm__ __volatile__( \
12 "movq %%cr3, %0; # flush TLB \n" \
13 "movq %0, %%cr3; \n" \
14 : "=r" (tmpreg) \
15 :: "memory"); \
16 } while (0)
19 * Global pages have to be flushed a bit differently. Not a real
20 * performance problem because this does not happen often.
22 #define __flush_tlb_global() \
23 do { \
24 unsigned long tmpreg, cr4, cr4_orig; \
26 __asm__ __volatile__( \
27 "movq %%cr4, %2; # turn off PGE \n" \
28 "movq %2, %1; \n" \
29 "andq %3, %1; \n" \
30 "movq %1, %%cr4; \n" \
31 "movq %%cr3, %0; # flush TLB \n" \
32 "movq %0, %%cr3; \n" \
33 "movq %2, %%cr4; # turn PGE back on \n" \
34 : "=&r" (tmpreg), "=&r" (cr4), "=&r" (cr4_orig) \
35 : "i" (~X86_CR4_PGE) \
36 : "memory"); \
37 } while (0)
39 extern unsigned long pgkern_mask;
41 #define __flush_tlb_all() __flush_tlb_global()
43 #define __flush_tlb_one(addr) \
44 __asm__ __volatile__("invlpg %0": :"m" (*(char *) addr))
48 * TLB flushing:
50 * - flush_tlb() flushes the current mm struct TLBs
51 * - flush_tlb_all() flushes all processes TLBs
52 * - flush_tlb_mm(mm) flushes the specified mm context TLB's
53 * - flush_tlb_page(vma, vmaddr) flushes one page
54 * - flush_tlb_range(vma, start, end) flushes a range of pages
55 * - flush_tlb_kernel_range(start, end) flushes a range of kernel pages
56 * - flush_tlb_pgtables(mm, start, end) flushes a range of page tables
58 * x86-64 can only flush individual pages or full VMs. For a range flush
59 * we always do the full VM. Might be worth trying if for a small
60 * range a few INVLPGs in a row are a win.
63 #ifndef CONFIG_SMP
65 #define flush_tlb() __flush_tlb()
66 #define flush_tlb_all() __flush_tlb_all()
67 #define local_flush_tlb() __flush_tlb()
69 static inline void flush_tlb_mm(struct mm_struct *mm)
71 if (mm == current->active_mm)
72 __flush_tlb();
75 static inline void flush_tlb_page(struct vm_area_struct *vma,
76 unsigned long addr)
78 if (vma->vm_mm == current->active_mm)
79 __flush_tlb_one(addr);
82 static inline void flush_tlb_range(struct vm_area_struct *vma,
83 unsigned long start, unsigned long end)
85 if (vma->vm_mm == current->active_mm)
86 __flush_tlb();
89 #else
91 #include <asm/smp.h>
93 #define local_flush_tlb() \
94 __flush_tlb()
96 extern void flush_tlb_all(void);
97 extern void flush_tlb_current_task(void);
98 extern void flush_tlb_mm(struct mm_struct *);
99 extern void flush_tlb_page(struct vm_area_struct *, unsigned long);
101 #define flush_tlb() flush_tlb_current_task()
103 static inline void flush_tlb_range(struct vm_area_struct * vma, unsigned long start, unsigned long end)
105 flush_tlb_mm(vma->vm_mm);
108 #define TLBSTATE_OK 1
109 #define TLBSTATE_LAZY 2
111 /* Roughly an IPI every 20MB with 4k pages for freeing page table
112 ranges. Cost is about 42k of memory for each CPU. */
113 #define ARCH_FREE_PTE_NR 5350
115 #endif
117 #define flush_tlb_kernel_range(start, end) flush_tlb_all()
119 static inline void flush_tlb_pgtables(struct mm_struct *mm,
120 unsigned long start, unsigned long end)
122 /* x86_64 does not keep any page table caches in a software TLB.
123 The CPUs do in their hardware TLBs, but they are handled
124 by the normal TLB flushing algorithms. */
127 #endif /* _X8664_TLBFLUSH_H */