blob: 403fa804e4f495e9b81ca9d2401a5ae6cdbe9374 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
Justin P. Mattock79add622011-04-04 14:15:29 -07006 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Copyright (C) 1997, 1998, 1999, 2000 Ralf Baechle ralf@gnu.org
8 * Carsten Langgaard, carstenl@mips.com
9 * Copyright (C) 2002 MIPS Technologies, Inc. All rights reserved.
10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/init.h>
12#include <linux/sched.h>
Ralf Baechle631330f2009-06-19 14:05:26 +010013#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/mm.h>
David Daneyfd062c82009-05-27 17:47:44 -070015#include <linux/hugetlb.h>
Sanjay Lalf2e36562012-11-21 18:34:10 -080016#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <asm/cpu.h>
Ralf Baechle69f24d12013-09-17 10:25:47 +020019#include <asm/cpu-type.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/bootinfo.h>
21#include <asm/mmu_context.h>
22#include <asm/pgtable.h>
Markos Chandrasc01905e2013-11-14 16:12:22 +000023#include <asm/tlb.h>
Ralf Baechle3d18c982011-11-28 16:11:28 +000024#include <asm/tlbmisc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26extern void build_tlb_refill_handler(void);
27
Fuxin Zhang2a21c732007-06-06 14:52:43 +080028/*
Huacai Chenc579d312014-03-21 18:44:00 +080029 * LOONGSON2/3 has a 4 entry itlb which is a subset of dtlb,
30 * unfortunately, itlb is not totally transparent to software.
Fuxin Zhang2a21c732007-06-06 14:52:43 +080031 */
Ralf Baechle14bd8c02013-09-25 18:21:26 +020032static inline void flush_itlb(void)
33{
34 switch (current_cpu_type()) {
35 case CPU_LOONGSON2:
Huacai Chenc579d312014-03-21 18:44:00 +080036 case CPU_LOONGSON3:
Ralf Baechle14bd8c02013-09-25 18:21:26 +020037 write_c0_diag(4);
38 break;
39 default:
40 break;
41 }
42}
Fuxin Zhang2a21c732007-06-06 14:52:43 +080043
Ralf Baechle14bd8c02013-09-25 18:21:26 +020044static inline void flush_itlb_vm(struct vm_area_struct *vma)
45{
46 if (vma->vm_flags & VM_EXEC)
47 flush_itlb();
48}
Fuxin Zhang2a21c732007-06-06 14:52:43 +080049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050void local_flush_tlb_all(void)
51{
52 unsigned long flags;
53 unsigned long old_ctx;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +000054 int entry, ftlbhighset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Ralf Baechleb6336482014-05-23 16:29:44 +020056 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 /* Save old context and create impossible VPN2 value */
58 old_ctx = read_c0_entryhi();
59 write_c0_entrylo0(0);
60 write_c0_entrylo1(0);
61
62 entry = read_c0_wired();
63
64 /* Blast 'em all away. */
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +000065 if (cpu_has_tlbinv) {
66 if (current_cpu_data.tlbsizevtlb) {
67 write_c0_index(0);
68 mtc0_tlbw_hazard();
69 tlbinvf(); /* invalidate VTLB */
70 }
71 ftlbhighset = current_cpu_data.tlbsizevtlb +
72 current_cpu_data.tlbsizeftlbsets;
73 for (entry = current_cpu_data.tlbsizevtlb;
74 entry < ftlbhighset;
75 entry++) {
76 write_c0_index(entry);
77 mtc0_tlbw_hazard();
78 tlbinvf(); /* invalidate one FTLB set */
79 }
Leonid Yegoshin601cfa72013-11-14 16:12:30 +000080 } else {
81 while (entry < current_cpu_data.tlbsize) {
82 /* Make sure all entries differ. */
83 write_c0_entryhi(UNIQUE_ENTRYHI(entry));
84 write_c0_index(entry);
85 mtc0_tlbw_hazard();
86 tlb_write_indexed();
87 entry++;
88 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 }
90 tlbw_use_hazard();
91 write_c0_entryhi(old_ctx);
Ralf Baechle14bd8c02013-09-25 18:21:26 +020092 flush_itlb();
Ralf Baechleb6336482014-05-23 16:29:44 +020093 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
Sanjay Lalf2e36562012-11-21 18:34:10 -080095EXPORT_SYMBOL(local_flush_tlb_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Thiemo Seufer172546b2005-04-02 10:21:56 +000097/* All entries common to a mm share an asid. To effectively flush
98 these entries, we just bump the asid. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099void local_flush_tlb_mm(struct mm_struct *mm)
100{
Thiemo Seufer172546b2005-04-02 10:21:56 +0000101 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Thiemo Seufer172546b2005-04-02 10:21:56 +0000103 preempt_disable();
104
105 cpu = smp_processor_id();
106
107 if (cpu_context(cpu, mm) != 0) {
108 drop_mmu_context(mm, cpu);
109 }
110
111 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
114void local_flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
115 unsigned long end)
116{
117 struct mm_struct *mm = vma->vm_mm;
118 int cpu = smp_processor_id();
119
120 if (cpu_context(cpu, mm) != 0) {
Greg Ungerera5e696e2009-05-20 16:12:32 +1000121 unsigned long size, flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Ralf Baechleb6336482014-05-23 16:29:44 +0200123 local_irq_save(flags);
David Daneyac53c4f2012-12-03 12:44:26 -0800124 start = round_down(start, PAGE_SIZE << 1);
125 end = round_up(end, PAGE_SIZE << 1);
126 size = (end - start) >> (PAGE_SHIFT + 1);
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000127 if (size <= (current_cpu_data.tlbsizeftlbsets ?
128 current_cpu_data.tlbsize / 8 :
129 current_cpu_data.tlbsize / 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 int oldpid = read_c0_entryhi();
131 int newpid = cpu_asid(cpu, mm);
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 while (start < end) {
134 int idx;
135
136 write_c0_entryhi(start | newpid);
David Daneyac53c4f2012-12-03 12:44:26 -0800137 start += (PAGE_SIZE << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 mtc0_tlbw_hazard();
139 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200140 tlb_probe_hazard();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 idx = read_c0_index();
142 write_c0_entrylo0(0);
143 write_c0_entrylo1(0);
144 if (idx < 0)
145 continue;
146 /* Make sure all entries differ. */
Thiemo Seufer172546b2005-04-02 10:21:56 +0000147 write_c0_entryhi(UNIQUE_ENTRYHI(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 mtc0_tlbw_hazard();
149 tlb_write_indexed();
150 }
151 tlbw_use_hazard();
152 write_c0_entryhi(oldpid);
153 } else {
154 drop_mmu_context(mm, cpu);
155 }
Ralf Baechle14bd8c02013-09-25 18:21:26 +0200156 flush_itlb();
Ralf Baechleb6336482014-05-23 16:29:44 +0200157 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159}
160
161void local_flush_tlb_kernel_range(unsigned long start, unsigned long end)
162{
Greg Ungerera5e696e2009-05-20 16:12:32 +1000163 unsigned long size, flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Ralf Baechleb6336482014-05-23 16:29:44 +0200165 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
167 size = (size + 1) >> 1;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000168 if (size <= (current_cpu_data.tlbsizeftlbsets ?
169 current_cpu_data.tlbsize / 8 :
170 current_cpu_data.tlbsize / 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 int pid = read_c0_entryhi();
172
173 start &= (PAGE_MASK << 1);
174 end += ((PAGE_SIZE << 1) - 1);
175 end &= (PAGE_MASK << 1);
176
177 while (start < end) {
178 int idx;
179
180 write_c0_entryhi(start);
181 start += (PAGE_SIZE << 1);
182 mtc0_tlbw_hazard();
183 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200184 tlb_probe_hazard();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 idx = read_c0_index();
186 write_c0_entrylo0(0);
187 write_c0_entrylo1(0);
188 if (idx < 0)
189 continue;
190 /* Make sure all entries differ. */
Thiemo Seufer172546b2005-04-02 10:21:56 +0000191 write_c0_entryhi(UNIQUE_ENTRYHI(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 mtc0_tlbw_hazard();
193 tlb_write_indexed();
194 }
195 tlbw_use_hazard();
196 write_c0_entryhi(pid);
197 } else {
198 local_flush_tlb_all();
199 }
Ralf Baechle14bd8c02013-09-25 18:21:26 +0200200 flush_itlb();
Ralf Baechleb6336482014-05-23 16:29:44 +0200201 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
204void local_flush_tlb_page(struct vm_area_struct *vma, unsigned long page)
205{
206 int cpu = smp_processor_id();
207
208 if (cpu_context(cpu, vma->vm_mm) != 0) {
209 unsigned long flags;
210 int oldpid, newpid, idx;
211
212 newpid = cpu_asid(cpu, vma->vm_mm);
213 page &= (PAGE_MASK << 1);
Ralf Baechleb6336482014-05-23 16:29:44 +0200214 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 oldpid = read_c0_entryhi();
216 write_c0_entryhi(page | newpid);
217 mtc0_tlbw_hazard();
218 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200219 tlb_probe_hazard();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 idx = read_c0_index();
221 write_c0_entrylo0(0);
222 write_c0_entrylo1(0);
223 if (idx < 0)
224 goto finish;
225 /* Make sure all entries differ. */
Thiemo Seufer172546b2005-04-02 10:21:56 +0000226 write_c0_entryhi(UNIQUE_ENTRYHI(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 mtc0_tlbw_hazard();
228 tlb_write_indexed();
229 tlbw_use_hazard();
230
231 finish:
232 write_c0_entryhi(oldpid);
Ralf Baechle14bd8c02013-09-25 18:21:26 +0200233 flush_itlb_vm(vma);
Ralf Baechleb6336482014-05-23 16:29:44 +0200234 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236}
237
238/*
239 * This one is only used for pages with the global bit set so we don't care
240 * much about the ASID.
241 */
242void local_flush_tlb_one(unsigned long page)
243{
244 unsigned long flags;
245 int oldpid, idx;
246
Ralf Baechleb6336482014-05-23 16:29:44 +0200247 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 oldpid = read_c0_entryhi();
Thiemo Seufer172546b2005-04-02 10:21:56 +0000249 page &= (PAGE_MASK << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 write_c0_entryhi(page);
251 mtc0_tlbw_hazard();
252 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200253 tlb_probe_hazard();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 idx = read_c0_index();
255 write_c0_entrylo0(0);
256 write_c0_entrylo1(0);
257 if (idx >= 0) {
258 /* Make sure all entries differ. */
Thiemo Seufer172546b2005-04-02 10:21:56 +0000259 write_c0_entryhi(UNIQUE_ENTRYHI(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 mtc0_tlbw_hazard();
261 tlb_write_indexed();
262 tlbw_use_hazard();
263 }
264 write_c0_entryhi(oldpid);
Ralf Baechle14bd8c02013-09-25 18:21:26 +0200265 flush_itlb();
Ralf Baechleb6336482014-05-23 16:29:44 +0200266 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269/*
270 * We will need multiple versions of update_mmu_cache(), one that just
271 * updates the TLB with the new pte(s), and another which also checks
272 * for the R4k "end of page" hardware bug and does the needy.
273 */
274void __update_tlb(struct vm_area_struct * vma, unsigned long address, pte_t pte)
275{
276 unsigned long flags;
277 pgd_t *pgdp;
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000278 pud_t *pudp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 pmd_t *pmdp;
280 pte_t *ptep;
281 int idx, pid;
282
283 /*
284 * Handle debugger faulting in for debugee.
285 */
286 if (current->active_mm != vma->vm_mm)
287 return;
288
Ralf Baechleb6336482014-05-23 16:29:44 +0200289 local_irq_save(flags);
Thiemo Seufer172546b2005-04-02 10:21:56 +0000290
David Daney48c4ac92013-05-13 13:56:44 -0700291 pid = read_c0_entryhi() & ASID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 address &= (PAGE_MASK << 1);
293 write_c0_entryhi(address | pid);
294 pgdp = pgd_offset(vma->vm_mm, address);
295 mtc0_tlbw_hazard();
296 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200297 tlb_probe_hazard();
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000298 pudp = pud_offset(pgdp, address);
299 pmdp = pmd_offset(pudp, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 idx = read_c0_index();
David Daneyaa1762f2012-10-17 00:48:10 +0200301#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -0700302 /* this could be a huge page */
303 if (pmd_huge(*pmdp)) {
304 unsigned long lo;
305 write_c0_pagemask(PM_HUGE_MASK);
306 ptep = (pte_t *)pmdp;
David Daney6dd93442010-02-10 15:12:47 -0800307 lo = pte_to_entrylo(pte_val(*ptep));
David Daneyfd062c82009-05-27 17:47:44 -0700308 write_c0_entrylo0(lo);
309 write_c0_entrylo1(lo + (HPAGE_SIZE >> 7));
310
311 mtc0_tlbw_hazard();
312 if (idx < 0)
313 tlb_write_random();
314 else
315 tlb_write_indexed();
Ralf Baechlefb944c92012-10-17 01:01:21 +0200316 tlbw_use_hazard();
David Daneyfd062c82009-05-27 17:47:44 -0700317 write_c0_pagemask(PM_DEFAULT_MASK);
318 } else
319#endif
320 {
321 ptep = pte_offset_map(pmdp, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Chris Dearman962f4802007-09-19 00:46:32 +0100323#if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32)
David Daneyfd062c82009-05-27 17:47:44 -0700324 write_c0_entrylo0(ptep->pte_high);
325 ptep++;
326 write_c0_entrylo1(ptep->pte_high);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327#else
David Daney6dd93442010-02-10 15:12:47 -0800328 write_c0_entrylo0(pte_to_entrylo(pte_val(*ptep++)));
329 write_c0_entrylo1(pte_to_entrylo(pte_val(*ptep)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330#endif
David Daneyfd062c82009-05-27 17:47:44 -0700331 mtc0_tlbw_hazard();
332 if (idx < 0)
333 tlb_write_random();
334 else
335 tlb_write_indexed();
336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 tlbw_use_hazard();
Ralf Baechle14bd8c02013-09-25 18:21:26 +0200338 flush_itlb_vm(vma);
Ralf Baechleb6336482014-05-23 16:29:44 +0200339 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Manuel Lauss694b8c32011-08-02 19:51:08 +0200342void add_wired_entry(unsigned long entrylo0, unsigned long entrylo1,
343 unsigned long entryhi, unsigned long pagemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
345 unsigned long flags;
346 unsigned long wired;
347 unsigned long old_pagemask;
348 unsigned long old_ctx;
349
Ralf Baechleb6336482014-05-23 16:29:44 +0200350 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 /* Save old context and create impossible VPN2 value */
352 old_ctx = read_c0_entryhi();
353 old_pagemask = read_c0_pagemask();
354 wired = read_c0_wired();
355 write_c0_wired(wired + 1);
356 write_c0_index(wired);
Ralf Baechle432bef22006-09-08 04:16:21 +0200357 tlbw_use_hazard(); /* What is the hazard here? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 write_c0_pagemask(pagemask);
359 write_c0_entryhi(entryhi);
360 write_c0_entrylo0(entrylo0);
361 write_c0_entrylo1(entrylo1);
362 mtc0_tlbw_hazard();
363 tlb_write_indexed();
364 tlbw_use_hazard();
365
366 write_c0_entryhi(old_ctx);
Ralf Baechle432bef22006-09-08 04:16:21 +0200367 tlbw_use_hazard(); /* What is the hazard here? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 write_c0_pagemask(old_pagemask);
369 local_flush_tlb_all();
Ralf Baechleb6336482014-05-23 16:29:44 +0200370 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
Ralf Baechle970d0322012-10-18 13:54:15 +0200373#ifdef CONFIG_TRANSPARENT_HUGEPAGE
374
375int __init has_transparent_hugepage(void)
376{
377 unsigned int mask;
378 unsigned long flags;
379
Ralf Baechleb6336482014-05-23 16:29:44 +0200380 local_irq_save(flags);
Ralf Baechle970d0322012-10-18 13:54:15 +0200381 write_c0_pagemask(PM_HUGE_MASK);
382 back_to_back_c0_hazard();
383 mask = read_c0_pagemask();
384 write_c0_pagemask(PM_DEFAULT_MASK);
385
Ralf Baechleb6336482014-05-23 16:29:44 +0200386 local_irq_restore(flags);
Ralf Baechle970d0322012-10-18 13:54:15 +0200387
388 return mask == PM_HUGE_MASK;
389}
390
391#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
392
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000393static int ntlb;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100394static int __init set_ntlb(char *str)
395{
396 get_option(&str, &ntlb);
397 return 1;
398}
399
400__setup("ntlb=", set_ntlb);
401
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000402void tlb_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 /*
405 * You should never change this register:
406 * - On R4600 1.7 the tlbp never hits for pages smaller than
407 * the value in the c0_pagemask register.
408 * - The entire mm handling assumes the c0_pagemask register to
Thiemo Seufera7c29962008-02-29 00:43:47 +0000409 * be set to fixed-size pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 write_c0_pagemask(PM_DEFAULT_MASK);
412 write_c0_wired(0);
Ralf Baechlecde15b52009-01-06 23:07:20 +0000413 if (current_cpu_type() == CPU_R10000 ||
414 current_cpu_type() == CPU_R12000 ||
415 current_cpu_type() == CPU_R14000)
416 write_c0_framemask(0);
David Daney6dd93442010-02-10 15:12:47 -0800417
Steven J. Hill05857c62012-09-13 16:51:46 -0500418 if (cpu_has_rixi) {
David Daney6dd93442010-02-10 15:12:47 -0800419 /*
420 * Enable the no read, no exec bits, and enable large virtual
421 * address.
422 */
423 u32 pg = PG_RIE | PG_XIE;
424#ifdef CONFIG_64BIT
425 pg |= PG_ELPA;
426#endif
427 write_c0_pagegrain(pg);
428 }
429
Ralf Baechle70342282013-01-22 12:59:30 +0100430 /* From this point on the ARC firmware is dead. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 local_flush_tlb_all();
432
Thiemo Seuferc6281ed2006-03-14 14:35:27 +0000433 /* Did I tell you that ARC SUCKS? */
434
Ralf Baechle41c594a2006-04-05 09:45:45 +0100435 if (ntlb) {
436 if (ntlb > 1 && ntlb <= current_cpu_data.tlbsize) {
437 int wired = current_cpu_data.tlbsize - ntlb;
438 write_c0_wired(wired);
439 write_c0_index(wired-1);
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100440 printk("Restricting TLB to %d entries\n", ntlb);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100441 } else
442 printk("Ignoring invalid argument ntlb=%d\n", ntlb);
443 }
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 build_tlb_refill_handler();
446}