Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 1 | #include <linux/init.h> |
| 2 | |
| 3 | #include <linux/mm.h> |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 4 | #include <linux/spinlock.h> |
| 5 | #include <linux/smp.h> |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 6 | #include <linux/interrupt.h> |
Tejun Heo | 6dd01be | 2009-01-21 17:26:06 +0900 | [diff] [blame] | 7 | #include <linux/module.h> |
Shaohua Li | 9329672 | 2010-10-20 11:07:03 +0800 | [diff] [blame] | 8 | #include <linux/cpu.h> |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 9 | |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 10 | #include <asm/tlbflush.h> |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 11 | #include <asm/mmu_context.h> |
Jan Beulich | 350f8f5 | 2009-11-13 11:54:40 +0000 | [diff] [blame] | 12 | #include <asm/cache.h> |
Tejun Heo | 6dd01be | 2009-01-21 17:26:06 +0900 | [diff] [blame] | 13 | #include <asm/apic.h> |
Tejun Heo | bdbcdd4 | 2009-01-21 17:26:06 +0900 | [diff] [blame] | 14 | #include <asm/uv/uv.h> |
Alex Shi | 3df3212 | 2012-06-28 09:02:20 +0800 | [diff] [blame] | 15 | #include <linux/debugfs.h> |
Glauber Costa | 5af5573 | 2008-03-25 13:28:56 -0300 | [diff] [blame] | 16 | |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 17 | /* |
| 18 | * Smarter SMP flushing macros. |
| 19 | * c/o Linus Torvalds. |
| 20 | * |
| 21 | * These mean you can really definitely utterly forget about |
| 22 | * writing to user space from interrupts. (Its not allowed anyway). |
| 23 | * |
| 24 | * Optimizations Manfred Spraul <manfred@colorfullife.com> |
| 25 | * |
| 26 | * More scalable flush, from Andi Kleen |
| 27 | * |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 28 | * Implement flush IPI by CALL_FUNCTION_VECTOR, Alex Shi |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 29 | */ |
| 30 | |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 31 | struct flush_tlb_info { |
| 32 | struct mm_struct *flush_mm; |
| 33 | unsigned long flush_start; |
| 34 | unsigned long flush_end; |
| 35 | }; |
Shaohua Li | 9329672 | 2010-10-20 11:07:03 +0800 | [diff] [blame] | 36 | |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 37 | /* |
| 38 | * We cannot call mmdrop() because we are in interrupt context, |
| 39 | * instead update mm->cpu_vm_mask. |
| 40 | */ |
| 41 | void leave_mm(int cpu) |
| 42 | { |
Linus Torvalds | 02171b4 | 2012-05-23 11:06:59 -0700 | [diff] [blame] | 43 | struct mm_struct *active_mm = this_cpu_read(cpu_tlbstate.active_mm); |
Alex Shi | c6ae41e | 2012-05-11 15:35:27 +0800 | [diff] [blame] | 44 | if (this_cpu_read(cpu_tlbstate.state) == TLBSTATE_OK) |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 45 | BUG(); |
Suresh Siddha | a6fca40 | 2012-03-22 17:01:25 -0700 | [diff] [blame] | 46 | if (cpumask_test_cpu(cpu, mm_cpumask(active_mm))) { |
| 47 | cpumask_clear_cpu(cpu, mm_cpumask(active_mm)); |
| 48 | load_cr3(swapper_pg_dir); |
Dave Hansen | 7c7f154 | 2014-08-07 10:58:41 -0700 | [diff] [blame] | 49 | /* |
| 50 | * This gets called in the idle path where RCU |
| 51 | * functions differently. Tracing normally |
| 52 | * uses RCU, so we have to call the tracepoint |
| 53 | * specially here. |
| 54 | */ |
| 55 | trace_tlb_flush_rcuidle(TLB_FLUSH_ON_TASK_SWITCH, TLB_FLUSH_ALL); |
Suresh Siddha | a6fca40 | 2012-03-22 17:01:25 -0700 | [diff] [blame] | 56 | } |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 57 | } |
| 58 | EXPORT_SYMBOL_GPL(leave_mm); |
| 59 | |
| 60 | /* |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 61 | * The flush IPI assumes that a thread switch happens in this order: |
| 62 | * [cpu0: the cpu that switches] |
| 63 | * 1) switch_mm() either 1a) or 1b) |
| 64 | * 1a) thread switch to a different mm |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 65 | * 1a1) set cpu_tlbstate to TLBSTATE_OK |
| 66 | * Now the tlb flush NMI handler flush_tlb_func won't call leave_mm |
| 67 | * if cpu0 was in lazy tlb mode. |
| 68 | * 1a2) update cpu active_mm |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 69 | * Now cpu0 accepts tlb flushes for the new mm. |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 70 | * 1a3) cpu_set(cpu, new_mm->cpu_vm_mask); |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 71 | * Now the other cpus will send tlb flush ipis. |
| 72 | * 1a4) change cr3. |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 73 | * 1a5) cpu_clear(cpu, old_mm->cpu_vm_mask); |
| 74 | * Stop ipi delivery for the old mm. This is not synchronized with |
| 75 | * the other cpus, but flush_tlb_func ignore flush ipis for the wrong |
| 76 | * mm, and in the worst case we perform a superfluous tlb flush. |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 77 | * 1b) thread switch without mm change |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 78 | * cpu active_mm is correct, cpu0 already handles flush ipis. |
| 79 | * 1b1) set cpu_tlbstate to TLBSTATE_OK |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 80 | * 1b2) test_and_set the cpu bit in cpu_vm_mask. |
| 81 | * Atomically set the bit [other cpus will start sending flush ipis], |
| 82 | * and test the bit. |
| 83 | * 1b3) if the bit was 0: leave_mm was called, flush the tlb. |
| 84 | * 2) switch %%esp, ie current |
| 85 | * |
| 86 | * The interrupt must handle 2 special cases: |
| 87 | * - cr3 is changed before %%esp, ie. it cannot use current->{active_,}mm. |
| 88 | * - the cpu performs speculative tlb reads, i.e. even if the cpu only |
| 89 | * runs in kernel space, the cpu could load tlb entries for user space |
| 90 | * pages. |
| 91 | * |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 92 | * The good news is that cpu_tlbstate is local to each cpu, no |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 93 | * write/read ordering problems. |
| 94 | */ |
| 95 | |
| 96 | /* |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 97 | * TLB flush funcation: |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 98 | * 1) Flush the tlb entries if the cpu uses the mm that's being flushed. |
| 99 | * 2) Leave the mm if we are in the lazy tlb mode. |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 100 | */ |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 101 | static void flush_tlb_func(void *info) |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 102 | { |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 103 | struct flush_tlb_info *f = info; |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 104 | |
Tomoki Sekiyama | fd0f586 | 2012-09-26 11:11:28 +0900 | [diff] [blame] | 105 | inc_irq_stat(irq_tlb_count); |
| 106 | |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 107 | if (f->flush_mm != this_cpu_read(cpu_tlbstate.active_mm)) |
| 108 | return; |
Dave Hansen | a23421f | 2014-07-31 08:40:58 -0700 | [diff] [blame] | 109 | if (!f->flush_end) |
| 110 | f->flush_end = f->flush_start + PAGE_SIZE; |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 111 | |
Mel Gorman | ec65993 | 2014-01-21 14:33:16 -0800 | [diff] [blame] | 112 | count_vm_tlb_event(NR_TLB_REMOTE_FLUSH_RECEIVED); |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 113 | if (this_cpu_read(cpu_tlbstate.state) == TLBSTATE_OK) { |
Dave Hansen | d17d8f9 | 2014-07-31 08:40:59 -0700 | [diff] [blame] | 114 | if (f->flush_end == TLB_FLUSH_ALL) { |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 115 | local_flush_tlb(); |
Dave Hansen | d17d8f9 | 2014-07-31 08:40:59 -0700 | [diff] [blame] | 116 | trace_tlb_flush(TLB_REMOTE_SHOOTDOWN, TLB_FLUSH_ALL); |
| 117 | } else { |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 118 | unsigned long addr; |
Dave Hansen | d17d8f9 | 2014-07-31 08:40:59 -0700 | [diff] [blame] | 119 | unsigned long nr_pages = |
| 120 | f->flush_end - f->flush_start / PAGE_SIZE; |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 121 | addr = f->flush_start; |
| 122 | while (addr < f->flush_end) { |
| 123 | __flush_tlb_single(addr); |
| 124 | addr += PAGE_SIZE; |
Alex Shi | e7b52ff | 2012-06-28 09:02:17 +0800 | [diff] [blame] | 125 | } |
Dave Hansen | d17d8f9 | 2014-07-31 08:40:59 -0700 | [diff] [blame] | 126 | trace_tlb_flush(TLB_REMOTE_SHOOTDOWN, nr_pages); |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 127 | } |
| 128 | } else |
| 129 | leave_mm(smp_processor_id()); |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 130 | |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 131 | } |
| 132 | |
Rusty Russell | 4595f96 | 2009-01-10 21:58:09 -0800 | [diff] [blame] | 133 | void native_flush_tlb_others(const struct cpumask *cpumask, |
Alex Shi | e7b52ff | 2012-06-28 09:02:17 +0800 | [diff] [blame] | 134 | struct mm_struct *mm, unsigned long start, |
| 135 | unsigned long end) |
Rusty Russell | 4595f96 | 2009-01-10 21:58:09 -0800 | [diff] [blame] | 136 | { |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 137 | struct flush_tlb_info info; |
| 138 | info.flush_mm = mm; |
| 139 | info.flush_start = start; |
| 140 | info.flush_end = end; |
| 141 | |
Mel Gorman | ec65993 | 2014-01-21 14:33:16 -0800 | [diff] [blame] | 142 | count_vm_tlb_event(NR_TLB_REMOTE_FLUSH); |
Rusty Russell | 4595f96 | 2009-01-10 21:58:09 -0800 | [diff] [blame] | 143 | if (is_uv_system()) { |
Tejun Heo | bdbcdd4 | 2009-01-21 17:26:06 +0900 | [diff] [blame] | 144 | unsigned int cpu; |
Rusty Russell | 4595f96 | 2009-01-10 21:58:09 -0800 | [diff] [blame] | 145 | |
Xiao Guangrong | 25542c6 | 2011-03-15 09:57:37 +0800 | [diff] [blame] | 146 | cpu = smp_processor_id(); |
Alex Shi | e7b52ff | 2012-06-28 09:02:17 +0800 | [diff] [blame] | 147 | cpumask = uv_flush_tlb_others(cpumask, mm, start, end, cpu); |
Tejun Heo | bdbcdd4 | 2009-01-21 17:26:06 +0900 | [diff] [blame] | 148 | if (cpumask) |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 149 | smp_call_function_many(cpumask, flush_tlb_func, |
| 150 | &info, 1); |
Mike Travis | 0e21990 | 2009-01-10 21:58:10 -0800 | [diff] [blame] | 151 | return; |
Rusty Russell | 4595f96 | 2009-01-10 21:58:09 -0800 | [diff] [blame] | 152 | } |
Alex Shi | 52aec33 | 2012-06-28 09:02:23 +0800 | [diff] [blame] | 153 | smp_call_function_many(cpumask, flush_tlb_func, &info, 1); |
Rusty Russell | 4595f96 | 2009-01-10 21:58:09 -0800 | [diff] [blame] | 154 | } |
| 155 | |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 156 | void flush_tlb_current_task(void) |
| 157 | { |
| 158 | struct mm_struct *mm = current->mm; |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 159 | |
| 160 | preempt_disable(); |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 161 | |
Mel Gorman | ec65993 | 2014-01-21 14:33:16 -0800 | [diff] [blame] | 162 | count_vm_tlb_event(NR_TLB_LOCAL_FLUSH_ALL); |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 163 | local_flush_tlb(); |
Dave Hansen | d17d8f9 | 2014-07-31 08:40:59 -0700 | [diff] [blame] | 164 | trace_tlb_flush(TLB_LOCAL_SHOOTDOWN, TLB_FLUSH_ALL); |
Rusty Russell | 78f1c4d | 2009-09-24 09:34:51 -0600 | [diff] [blame] | 165 | if (cpumask_any_but(mm_cpumask(mm), smp_processor_id()) < nr_cpu_ids) |
Alex Shi | e7b52ff | 2012-06-28 09:02:17 +0800 | [diff] [blame] | 166 | flush_tlb_others(mm_cpumask(mm), mm, 0UL, TLB_FLUSH_ALL); |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 167 | preempt_enable(); |
| 168 | } |
| 169 | |
Dave Hansen | a510247 | 2014-07-31 08:41:03 -0700 | [diff] [blame] | 170 | /* |
| 171 | * See Documentation/x86/tlb.txt for details. We choose 33 |
| 172 | * because it is large enough to cover the vast majority (at |
| 173 | * least 95%) of allocations, and is small enough that we are |
| 174 | * confident it will not cause too much overhead. Each single |
| 175 | * flush is about 100 ns, so this caps the maximum overhead at |
| 176 | * _about_ 3,000 ns. |
| 177 | * |
| 178 | * This is in units of pages. |
| 179 | */ |
Jeremiah Mahler | 8642685 | 2014-08-09 00:38:33 -0700 | [diff] [blame] | 180 | static unsigned long tlb_single_page_flush_ceiling __read_mostly = 33; |
Dave Hansen | e9f4e0a | 2014-07-31 08:40:55 -0700 | [diff] [blame] | 181 | |
Alex Shi | 611ae8e | 2012-06-28 09:02:22 +0800 | [diff] [blame] | 182 | void flush_tlb_mm_range(struct mm_struct *mm, unsigned long start, |
| 183 | unsigned long end, unsigned long vmflag) |
| 184 | { |
| 185 | unsigned long addr; |
Dave Hansen | 9dfa6de | 2014-07-31 08:40:56 -0700 | [diff] [blame] | 186 | /* do a global flush by default */ |
| 187 | unsigned long base_pages_to_flush = TLB_FLUSH_ALL; |
Alex Shi | 611ae8e | 2012-06-28 09:02:22 +0800 | [diff] [blame] | 188 | |
| 189 | preempt_disable(); |
| 190 | if (current->active_mm != mm) |
Dave Hansen | 4995ab9 | 2014-07-31 08:40:54 -0700 | [diff] [blame] | 191 | goto out; |
Alex Shi | 611ae8e | 2012-06-28 09:02:22 +0800 | [diff] [blame] | 192 | |
| 193 | if (!current->mm) { |
| 194 | leave_mm(smp_processor_id()); |
Dave Hansen | 4995ab9 | 2014-07-31 08:40:54 -0700 | [diff] [blame] | 195 | goto out; |
Alex Shi | 611ae8e | 2012-06-28 09:02:22 +0800 | [diff] [blame] | 196 | } |
| 197 | |
Dave Hansen | 9dfa6de | 2014-07-31 08:40:56 -0700 | [diff] [blame] | 198 | if ((end != TLB_FLUSH_ALL) && !(vmflag & VM_HUGETLB)) |
| 199 | base_pages_to_flush = (end - start) >> PAGE_SHIFT; |
Alex Shi | 611ae8e | 2012-06-28 09:02:22 +0800 | [diff] [blame] | 200 | |
Dave Hansen | 9dfa6de | 2014-07-31 08:40:56 -0700 | [diff] [blame] | 201 | if (base_pages_to_flush > tlb_single_page_flush_ceiling) { |
| 202 | base_pages_to_flush = TLB_FLUSH_ALL; |
Mel Gorman | ec65993 | 2014-01-21 14:33:16 -0800 | [diff] [blame] | 203 | count_vm_tlb_event(NR_TLB_LOCAL_FLUSH_ALL); |
Alex Shi | 611ae8e | 2012-06-28 09:02:22 +0800 | [diff] [blame] | 204 | local_flush_tlb(); |
Dave Hansen | 9824cf9 | 2013-09-11 14:20:23 -0700 | [diff] [blame] | 205 | } else { |
Alex Shi | 611ae8e | 2012-06-28 09:02:22 +0800 | [diff] [blame] | 206 | /* flush range by one by one 'invlpg' */ |
Dave Hansen | 9824cf9 | 2013-09-11 14:20:23 -0700 | [diff] [blame] | 207 | for (addr = start; addr < end; addr += PAGE_SIZE) { |
Mel Gorman | ec65993 | 2014-01-21 14:33:16 -0800 | [diff] [blame] | 208 | count_vm_tlb_event(NR_TLB_LOCAL_FLUSH_ONE); |
Alex Shi | 611ae8e | 2012-06-28 09:02:22 +0800 | [diff] [blame] | 209 | __flush_tlb_single(addr); |
Dave Hansen | 9824cf9 | 2013-09-11 14:20:23 -0700 | [diff] [blame] | 210 | } |
Alex Shi | e7b52ff | 2012-06-28 09:02:17 +0800 | [diff] [blame] | 211 | } |
Dave Hansen | d17d8f9 | 2014-07-31 08:40:59 -0700 | [diff] [blame] | 212 | trace_tlb_flush(TLB_LOCAL_MM_SHOOTDOWN, base_pages_to_flush); |
Dave Hansen | 4995ab9 | 2014-07-31 08:40:54 -0700 | [diff] [blame] | 213 | out: |
Dave Hansen | 9dfa6de | 2014-07-31 08:40:56 -0700 | [diff] [blame] | 214 | if (base_pages_to_flush == TLB_FLUSH_ALL) { |
Dave Hansen | 4995ab9 | 2014-07-31 08:40:54 -0700 | [diff] [blame] | 215 | start = 0UL; |
| 216 | end = TLB_FLUSH_ALL; |
| 217 | } |
Alex Shi | e7b52ff | 2012-06-28 09:02:17 +0800 | [diff] [blame] | 218 | if (cpumask_any_but(mm_cpumask(mm), smp_processor_id()) < nr_cpu_ids) |
Dave Hansen | 4995ab9 | 2014-07-31 08:40:54 -0700 | [diff] [blame] | 219 | flush_tlb_others(mm_cpumask(mm), mm, start, end); |
Alex Shi | e7b52ff | 2012-06-28 09:02:17 +0800 | [diff] [blame] | 220 | preempt_enable(); |
| 221 | } |
| 222 | |
Alex Shi | e7b52ff | 2012-06-28 09:02:17 +0800 | [diff] [blame] | 223 | void flush_tlb_page(struct vm_area_struct *vma, unsigned long start) |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 224 | { |
| 225 | struct mm_struct *mm = vma->vm_mm; |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 226 | |
| 227 | preempt_disable(); |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 228 | |
| 229 | if (current->active_mm == mm) { |
| 230 | if (current->mm) |
Alex Shi | e7b52ff | 2012-06-28 09:02:17 +0800 | [diff] [blame] | 231 | __flush_tlb_one(start); |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 232 | else |
| 233 | leave_mm(smp_processor_id()); |
| 234 | } |
| 235 | |
Rusty Russell | 78f1c4d | 2009-09-24 09:34:51 -0600 | [diff] [blame] | 236 | if (cpumask_any_but(mm_cpumask(mm), smp_processor_id()) < nr_cpu_ids) |
Alex Shi | e7b52ff | 2012-06-28 09:02:17 +0800 | [diff] [blame] | 237 | flush_tlb_others(mm_cpumask(mm), mm, start, 0UL); |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 238 | |
| 239 | preempt_enable(); |
| 240 | } |
| 241 | |
| 242 | static void do_flush_tlb_all(void *info) |
| 243 | { |
Mel Gorman | ec65993 | 2014-01-21 14:33:16 -0800 | [diff] [blame] | 244 | count_vm_tlb_event(NR_TLB_REMOTE_FLUSH_RECEIVED); |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 245 | __flush_tlb_all(); |
Alex Shi | c6ae41e | 2012-05-11 15:35:27 +0800 | [diff] [blame] | 246 | if (this_cpu_read(cpu_tlbstate.state) == TLBSTATE_LAZY) |
Borislav Petkov | 3f8afb7 | 2010-07-21 14:47:05 +0200 | [diff] [blame] | 247 | leave_mm(smp_processor_id()); |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 248 | } |
| 249 | |
| 250 | void flush_tlb_all(void) |
| 251 | { |
Mel Gorman | ec65993 | 2014-01-21 14:33:16 -0800 | [diff] [blame] | 252 | count_vm_tlb_event(NR_TLB_REMOTE_FLUSH); |
Jens Axboe | 15c8b6c | 2008-05-09 09:39:44 +0200 | [diff] [blame] | 253 | on_each_cpu(do_flush_tlb_all, NULL, 1); |
Glauber Costa | c048fdf | 2008-03-03 14:12:54 -0300 | [diff] [blame] | 254 | } |
Alex Shi | 3df3212 | 2012-06-28 09:02:20 +0800 | [diff] [blame] | 255 | |
Alex Shi | effee4b | 2012-06-28 09:02:24 +0800 | [diff] [blame] | 256 | static void do_kernel_range_flush(void *info) |
| 257 | { |
| 258 | struct flush_tlb_info *f = info; |
| 259 | unsigned long addr; |
| 260 | |
| 261 | /* flush range by one by one 'invlpg' */ |
Dave Hansen | 6df4686 | 2013-09-11 14:20:24 -0700 | [diff] [blame] | 262 | for (addr = f->flush_start; addr < f->flush_end; addr += PAGE_SIZE) |
Alex Shi | effee4b | 2012-06-28 09:02:24 +0800 | [diff] [blame] | 263 | __flush_tlb_single(addr); |
| 264 | } |
| 265 | |
| 266 | void flush_tlb_kernel_range(unsigned long start, unsigned long end) |
| 267 | { |
Alex Shi | effee4b | 2012-06-28 09:02:24 +0800 | [diff] [blame] | 268 | |
| 269 | /* Balance as user space task's flush, a bit conservative */ |
Dave Hansen | e9f4e0a | 2014-07-31 08:40:55 -0700 | [diff] [blame] | 270 | if (end == TLB_FLUSH_ALL || |
| 271 | (end - start) > tlb_single_page_flush_ceiling * PAGE_SIZE) { |
Alex Shi | effee4b | 2012-06-28 09:02:24 +0800 | [diff] [blame] | 272 | on_each_cpu(do_flush_tlb_all, NULL, 1); |
Dave Hansen | e9f4e0a | 2014-07-31 08:40:55 -0700 | [diff] [blame] | 273 | } else { |
| 274 | struct flush_tlb_info info; |
Alex Shi | effee4b | 2012-06-28 09:02:24 +0800 | [diff] [blame] | 275 | info.flush_start = start; |
| 276 | info.flush_end = end; |
| 277 | on_each_cpu(do_kernel_range_flush, &info, 1); |
| 278 | } |
| 279 | } |
Dave Hansen | 2d040a1 | 2014-07-31 08:41:01 -0700 | [diff] [blame] | 280 | |
| 281 | static ssize_t tlbflush_read_file(struct file *file, char __user *user_buf, |
| 282 | size_t count, loff_t *ppos) |
| 283 | { |
| 284 | char buf[32]; |
| 285 | unsigned int len; |
| 286 | |
| 287 | len = sprintf(buf, "%ld\n", tlb_single_page_flush_ceiling); |
| 288 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); |
| 289 | } |
| 290 | |
| 291 | static ssize_t tlbflush_write_file(struct file *file, |
| 292 | const char __user *user_buf, size_t count, loff_t *ppos) |
| 293 | { |
| 294 | char buf[32]; |
| 295 | ssize_t len; |
| 296 | int ceiling; |
| 297 | |
| 298 | len = min(count, sizeof(buf) - 1); |
| 299 | if (copy_from_user(buf, user_buf, len)) |
| 300 | return -EFAULT; |
| 301 | |
| 302 | buf[len] = '\0'; |
| 303 | if (kstrtoint(buf, 0, &ceiling)) |
| 304 | return -EINVAL; |
| 305 | |
| 306 | if (ceiling < 0) |
| 307 | return -EINVAL; |
| 308 | |
| 309 | tlb_single_page_flush_ceiling = ceiling; |
| 310 | return count; |
| 311 | } |
| 312 | |
| 313 | static const struct file_operations fops_tlbflush = { |
| 314 | .read = tlbflush_read_file, |
| 315 | .write = tlbflush_write_file, |
| 316 | .llseek = default_llseek, |
| 317 | }; |
| 318 | |
| 319 | static int __init create_tlb_single_page_flush_ceiling(void) |
| 320 | { |
| 321 | debugfs_create_file("tlb_single_page_flush_ceiling", S_IRUSR | S_IWUSR, |
| 322 | arch_debugfs_dir, NULL, &fops_tlbflush); |
| 323 | return 0; |
| 324 | } |
| 325 | late_initcall(create_tlb_single_page_flush_ceiling); |