aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-parisc/tlbflush.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-parisc/tlbflush.h')
-rw-r--r--include/asm-parisc/tlbflush.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/include/asm-parisc/tlbflush.h b/include/asm-parisc/tlbflush.h
index eb27b78930e8..efbb2d8625b1 100644
--- a/include/asm-parisc/tlbflush.h
+++ b/include/asm-parisc/tlbflush.h
@@ -64,29 +64,26 @@ static inline void flush_tlb_range(struct vm_area_struct *vma,
64{ 64{
65 unsigned long npages; 65 unsigned long npages;
66 66
67
68 npages = ((end - (start & PAGE_MASK)) + (PAGE_SIZE - 1)) >> PAGE_SHIFT; 67 npages = ((end - (start & PAGE_MASK)) + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
69 if (npages >= 512) /* XXX arbitrary, should be tuned */ 68 if (npages >= 512) /* 2MB of space: arbitrary, should be tuned */
70 flush_tlb_all(); 69 flush_tlb_all();
71 else { 70 else {
72 71
73 mtsp(vma->vm_mm->context,1); 72 mtsp(vma->vm_mm->context,1);
73 purge_tlb_start();
74 if (split_tlb) { 74 if (split_tlb) {
75 purge_tlb_start();
76 while (npages--) { 75 while (npages--) {
77 pdtlb(start); 76 pdtlb(start);
78 pitlb(start); 77 pitlb(start);
79 start += PAGE_SIZE; 78 start += PAGE_SIZE;
80 } 79 }
81 purge_tlb_end();
82 } else { 80 } else {
83 purge_tlb_start();
84 while (npages--) { 81 while (npages--) {
85 pdtlb(start); 82 pdtlb(start);
86 start += PAGE_SIZE; 83 start += PAGE_SIZE;
87 } 84 }
88 purge_tlb_end();
89 } 85 }
86 purge_tlb_end();
90 } 87 }
91} 88}
92 89