]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/x86/mm/fault_32.c
28ea3d3ec8f860b56074777394d8d14fe1c0fbab
[karo-tx-linux.git] / arch / x86 / mm / fault_32.c
1 /*
2  *  Copyright (C) 1995  Linus Torvalds
3  */
4
5 #include <linux/signal.h>
6 #include <linux/sched.h>
7 #include <linux/kernel.h>
8 #include <linux/errno.h>
9 #include <linux/string.h>
10 #include <linux/types.h>
11 #include <linux/ptrace.h>
12 #include <linux/mman.h>
13 #include <linux/mm.h>
14 #include <linux/smp.h>
15 #include <linux/interrupt.h>
16 #include <linux/init.h>
17 #include <linux/tty.h>
18 #include <linux/vt_kern.h>              /* For unblank_screen() */
19 #include <linux/highmem.h>
20 #include <linux/bootmem.h>              /* for max_low_pfn */
21 #include <linux/vmalloc.h>
22 #include <linux/module.h>
23 #include <linux/kprobes.h>
24 #include <linux/uaccess.h>
25 #include <linux/kdebug.h>
26
27 #include <asm/system.h>
28 #include <asm/desc.h>
29 #include <asm/segment.h>
30
31 /*
32  * Page fault error code bits
33  *      bit 0 == 0 means no page found, 1 means protection fault
34  *      bit 1 == 0 means read, 1 means write
35  *      bit 2 == 0 means kernel, 1 means user-mode
36  *      bit 3 == 1 means use of reserved bit detected
37  *      bit 4 == 1 means fault was an instruction fetch
38  */
39 #define PF_PROT         (1<<0)
40 #define PF_WRITE        (1<<1)
41 #define PF_USER         (1<<2)
42 #define PF_RSVD         (1<<3)
43 #define PF_INSTR        (1<<4)
44
45 static inline int notify_page_fault(struct pt_regs *regs)
46 {
47 #ifdef CONFIG_KPROBES
48         int ret = 0;
49
50         /* kprobe_running() needs smp_processor_id() */
51         if (!user_mode_vm(regs)) {
52                 preempt_disable();
53                 if (kprobe_running() && kprobe_fault_handler(regs, 14))
54                         ret = 1;
55                 preempt_enable();
56         }
57
58         return ret;
59 #else
60         return 0;
61 #endif
62 }
63
64 /*
65  * X86_32
66  * Sometimes AMD Athlon/Opteron CPUs report invalid exceptions on prefetch.
67  * Check that here and ignore it.
68  *
69  * X86_64
70  * Sometimes the CPU reports invalid exceptions on prefetch.
71  * Check that here and ignore it.
72  *
73  * Opcode checker based on code by Richard Brunner
74  */
75 static int is_prefetch(struct pt_regs *regs, unsigned long addr,
76                        unsigned long error_code)
77 {
78         unsigned char *instr;
79         int scan_more = 1;
80         int prefetch = 0;
81         unsigned char *max_instr;
82
83 #ifdef CONFIG_X86_32
84         if (unlikely(boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
85                      boot_cpu_data.x86 >= 6)) {
86                 /* Catch an obscure case of prefetch inside an NX page. */
87                 if (nx_enabled && (error_code & PF_INSTR))
88                         return 0;
89         } else {
90                 return 0;
91         }
92 #else
93         /* If it was a exec fault ignore */
94         if (error_code & PF_INSTR)
95                 return 0;
96 #endif
97
98         instr = (unsigned char *)convert_ip_to_linear(current, regs);
99         max_instr = instr + 15;
100
101         if (user_mode(regs) && instr >= (unsigned char *)TASK_SIZE)
102                 return 0;
103
104         while (scan_more && instr < max_instr) {
105                 unsigned char opcode;
106                 unsigned char instr_hi;
107                 unsigned char instr_lo;
108
109                 if (probe_kernel_address(instr, opcode))
110                         break;
111
112                 instr_hi = opcode & 0xf0;
113                 instr_lo = opcode & 0x0f;
114                 instr++;
115
116                 switch (instr_hi) {
117                 case 0x20:
118                 case 0x30:
119                         /*
120                          * Values 0x26,0x2E,0x36,0x3E are valid x86 prefixes.
121                          * In X86_64 long mode, the CPU will signal invalid
122                          * opcode if some of these prefixes are present so
123                          * X86_64 will never get here anyway
124                          */
125                         scan_more = ((instr_lo & 7) == 0x6);
126                         break;
127 #ifdef CONFIG_X86_64
128                 case 0x40:
129                         /*
130                          * In AMD64 long mode 0x40..0x4F are valid REX prefixes
131                          * Need to figure out under what instruction mode the
132                          * instruction was issued. Could check the LDT for lm,
133                          * but for now it's good enough to assume that long
134                          * mode only uses well known segments or kernel.
135                          */
136                         scan_more = (!user_mode(regs)) || (regs->cs == __USER_CS);
137                         break;
138 #endif
139                 case 0x60:
140                         /* 0x64 thru 0x67 are valid prefixes in all modes. */
141                         scan_more = (instr_lo & 0xC) == 0x4;
142                         break;
143                 case 0xF0:
144                         /* 0xF0, 0xF2, 0xF3 are valid prefixes in all modes. */
145                         scan_more = !instr_lo || (instr_lo>>1) == 1;
146                         break;
147                 case 0x00:
148                         /* Prefetch instruction is 0x0F0D or 0x0F18 */
149                         scan_more = 0;
150
151                         if (probe_kernel_address(instr, opcode))
152                                 break;
153                         prefetch = (instr_lo == 0xF) &&
154                                 (opcode == 0x0D || opcode == 0x18);
155                         break;
156                 default:
157                         scan_more = 0;
158                         break;
159                 }
160         }
161         return prefetch;
162 }
163
164 static void force_sig_info_fault(int si_signo, int si_code,
165         unsigned long address, struct task_struct *tsk)
166 {
167         siginfo_t info;
168
169         info.si_signo = si_signo;
170         info.si_errno = 0;
171         info.si_code = si_code;
172         info.si_addr = (void __user *)address;
173         force_sig_info(si_signo, &info, tsk);
174 }
175
176 void dump_pagetable(unsigned long address)
177 {
178         __typeof__(pte_val(__pte(0))) page;
179
180         page = read_cr3();
181         page = ((__typeof__(page) *) __va(page))[address >> PGDIR_SHIFT];
182 #ifdef CONFIG_X86_PAE
183         printk("*pdpt = %016Lx ", page);
184         if ((page >> PAGE_SHIFT) < max_low_pfn
185             && page & _PAGE_PRESENT) {
186                 page &= PAGE_MASK;
187                 page = ((__typeof__(page) *) __va(page))[(address >> PMD_SHIFT)
188                                                          & (PTRS_PER_PMD - 1)];
189                 printk(KERN_CONT "*pde = %016Lx ", page);
190                 page &= ~_PAGE_NX;
191         }
192 #else
193         printk("*pde = %08lx ", page);
194 #endif
195
196         /*
197          * We must not directly access the pte in the highpte
198          * case if the page table is located in highmem.
199          * And let's rather not kmap-atomic the pte, just in case
200          * it's allocated already.
201          */
202         if ((page >> PAGE_SHIFT) < max_low_pfn
203             && (page & _PAGE_PRESENT)
204             && !(page & _PAGE_PSE)) {
205                 page &= PAGE_MASK;
206                 page = ((__typeof__(page) *) __va(page))[(address >> PAGE_SHIFT)
207                                                          & (PTRS_PER_PTE - 1)];
208                 printk("*pte = %0*Lx ", sizeof(page)*2, (u64)page);
209         }
210
211         printk("\n");
212 }
213
214 static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address)
215 {
216         unsigned index = pgd_index(address);
217         pgd_t *pgd_k;
218         pud_t *pud, *pud_k;
219         pmd_t *pmd, *pmd_k;
220
221         pgd += index;
222         pgd_k = init_mm.pgd + index;
223
224         if (!pgd_present(*pgd_k))
225                 return NULL;
226
227         /*
228          * set_pgd(pgd, *pgd_k); here would be useless on PAE
229          * and redundant with the set_pmd() on non-PAE. As would
230          * set_pud.
231          */
232
233         pud = pud_offset(pgd, address);
234         pud_k = pud_offset(pgd_k, address);
235         if (!pud_present(*pud_k))
236                 return NULL;
237
238         pmd = pmd_offset(pud, address);
239         pmd_k = pmd_offset(pud_k, address);
240         if (!pmd_present(*pmd_k))
241                 return NULL;
242         if (!pmd_present(*pmd)) {
243                 set_pmd(pmd, *pmd_k);
244                 arch_flush_lazy_mmu_mode();
245         } else
246                 BUG_ON(pmd_page(*pmd) != pmd_page(*pmd_k));
247         return pmd_k;
248 }
249
250 #ifdef CONFIG_X86_64
251 static const char errata93_warning[] =
252 KERN_ERR "******* Your BIOS seems to not contain a fix for K8 errata #93\n"
253 KERN_ERR "******* Working around it, but it may cause SEGVs or burn power.\n"
254 KERN_ERR "******* Please consider a BIOS update.\n"
255 KERN_ERR "******* Disabling USB legacy in the BIOS may also help.\n";
256 #endif
257
258 /* Workaround for K8 erratum #93 & buggy BIOS.
259    BIOS SMM functions are required to use a specific workaround
260    to avoid corruption of the 64bit RIP register on C stepping K8.
261    A lot of BIOS that didn't get tested properly miss this.
262    The OS sees this as a page fault with the upper 32bits of RIP cleared.
263    Try to work around it here.
264    Note we only handle faults in kernel here.
265    Does nothing for X86_32
266  */
267 static int is_errata93(struct pt_regs *regs, unsigned long address)
268 {
269 #ifdef CONFIG_X86_64
270         static int warned;
271         if (address != regs->ip)
272                 return 0;
273         if ((address >> 32) != 0)
274                 return 0;
275         address |= 0xffffffffUL << 32;
276         if ((address >= (u64)_stext && address <= (u64)_etext) ||
277             (address >= MODULES_VADDR && address <= MODULES_END)) {
278                 if (!warned) {
279                         printk(errata93_warning);
280                         warned = 1;
281                 }
282                 regs->ip = address;
283                 return 1;
284         }
285 #endif
286         return 0;
287 }
288
289 /*
290  * Work around K8 erratum #100 K8 in compat mode occasionally jumps to illegal
291  * addresses >4GB.  We catch this in the page fault handler because these
292  * addresses are not reachable. Just detect this case and return.  Any code
293  * segment in LDT is compatibility mode.
294  */
295 static int is_errata100(struct pt_regs *regs, unsigned long address)
296 {
297 #ifdef CONFIG_X86_64
298         if ((regs->cs == __USER32_CS || (regs->cs & (1<<2))) &&
299             (address >> 32))
300                 return 1;
301 #endif
302         return 0;
303 }
304
305 void do_invalid_op(struct pt_regs *, unsigned long);
306
307 static int is_f00f_bug(struct pt_regs *regs, unsigned long address)
308 {
309 #ifdef CONFIG_X86_F00F_BUG
310         unsigned long nr;
311         /*
312          * Pentium F0 0F C7 C8 bug workaround.
313          */
314         if (boot_cpu_data.f00f_bug) {
315                 nr = (address - idt_descr.address) >> 3;
316
317                 if (nr == 6) {
318                         do_invalid_op(regs, 0);
319                         return 1;
320                 }
321         }
322 #endif
323         return 0;
324 }
325
326 static void show_fault_oops(struct pt_regs *regs, unsigned long error_code,
327                             unsigned long address)
328 {
329         if (!oops_may_print())
330                 return;
331
332 #ifdef CONFIG_X86_PAE
333         if (error_code & PF_INSTR) {
334                 int level;
335                 pte_t *pte = lookup_address(address, &level);
336
337                 if (pte && pte_present(*pte) && !pte_exec(*pte))
338                         printk(KERN_CRIT "kernel tried to execute "
339                                 "NX-protected page - exploit attempt? "
340                                 "(uid: %d)\n", current->uid);
341         }
342 #endif
343         printk(KERN_ALERT "BUG: unable to handle kernel ");
344         if (address < PAGE_SIZE)
345                 printk(KERN_CONT "NULL pointer dereference");
346         else
347                 printk(KERN_CONT "paging request");
348         printk(KERN_CONT " at %08lx\n", address);
349
350         printk(KERN_ALERT "IP:");
351         printk_address(regs->ip, 1);
352         dump_pagetable(address);
353 }
354
355 /*
356  * Handle a fault on the vmalloc or module mapping area
357  *
358  * This assumes no large pages in there.
359  */
360 static inline int vmalloc_fault(unsigned long address)
361 {
362 #ifdef CONFIG_X86_32
363         unsigned long pgd_paddr;
364         pmd_t *pmd_k;
365         pte_t *pte_k;
366         /*
367          * Synchronize this task's top level page-table
368          * with the 'reference' page table.
369          *
370          * Do _not_ use "current" here. We might be inside
371          * an interrupt in the middle of a task switch..
372          */
373         pgd_paddr = read_cr3();
374         pmd_k = vmalloc_sync_one(__va(pgd_paddr), address);
375         if (!pmd_k)
376                 return -1;
377         pte_k = pte_offset_kernel(pmd_k, address);
378         if (!pte_present(*pte_k))
379                 return -1;
380         return 0;
381 #else
382         pgd_t *pgd, *pgd_ref;
383         pud_t *pud, *pud_ref;
384         pmd_t *pmd, *pmd_ref;
385         pte_t *pte, *pte_ref;
386
387         /* Copy kernel mappings over when needed. This can also
388            happen within a race in page table update. In the later
389            case just flush. */
390
391         pgd = pgd_offset(current->mm ?: &init_mm, address);
392         pgd_ref = pgd_offset_k(address);
393         if (pgd_none(*pgd_ref))
394                 return -1;
395         if (pgd_none(*pgd))
396                 set_pgd(pgd, *pgd_ref);
397         else
398                 BUG_ON(pgd_page_vaddr(*pgd) != pgd_page_vaddr(*pgd_ref));
399
400         /* Below here mismatches are bugs because these lower tables
401            are shared */
402
403         pud = pud_offset(pgd, address);
404         pud_ref = pud_offset(pgd_ref, address);
405         if (pud_none(*pud_ref))
406                 return -1;
407         if (pud_none(*pud) || pud_page_vaddr(*pud) != pud_page_vaddr(*pud_ref))
408                 BUG();
409         pmd = pmd_offset(pud, address);
410         pmd_ref = pmd_offset(pud_ref, address);
411         if (pmd_none(*pmd_ref))
412                 return -1;
413         if (pmd_none(*pmd) || pmd_page(*pmd) != pmd_page(*pmd_ref))
414                 BUG();
415         pte_ref = pte_offset_kernel(pmd_ref, address);
416         if (!pte_present(*pte_ref))
417                 return -1;
418         pte = pte_offset_kernel(pmd, address);
419         /* Don't use pte_page here, because the mappings can point
420            outside mem_map, and the NUMA hash lookup cannot handle
421            that. */
422         if (!pte_present(*pte) || pte_pfn(*pte) != pte_pfn(*pte_ref))
423                 BUG();
424         return 0;
425 #endif
426 }
427
428 int show_unhandled_signals = 1;
429
430 /*
431  * This routine handles page faults.  It determines the address,
432  * and the problem, and then passes it off to one of the appropriate
433  * routines.
434  */
435 void __kprobes do_page_fault(struct pt_regs *regs, unsigned long error_code)
436 {
437         struct task_struct *tsk;
438         struct mm_struct *mm;
439         struct vm_area_struct *vma;
440         unsigned long address;
441         int write, si_code;
442         int fault;
443
444         /*
445          * We can fault from pretty much anywhere, with unknown IRQ state.
446          */
447         trace_hardirqs_fixup();
448
449         tsk = current;
450         mm = tsk->mm;
451         prefetchw(&mm->mmap_sem);
452
453         /* get the address */
454         address = read_cr2();
455
456         si_code = SEGV_MAPERR;
457
458         if (notify_page_fault(regs))
459                 return;
460
461         /*
462          * We fault-in kernel-space virtual memory on-demand. The
463          * 'reference' page table is init_mm.pgd.
464          *
465          * NOTE! We MUST NOT take any locks for this case. We may
466          * be in an interrupt or a critical region, and should
467          * only copy the information from the master page table,
468          * nothing more.
469          *
470          * This verifies that the fault happens in kernel space
471          * (error_code & 4) == 0, and that the fault was not a
472          * protection error (error_code & 9) == 0.
473          */
474         if (unlikely(address >= TASK_SIZE)) {
475                 if (!(error_code & (PF_RSVD|PF_USER|PF_PROT)) &&
476                     vmalloc_fault(address) >= 0)
477                         return;
478                 /*
479                  * Don't take the mm semaphore here. If we fixup a prefetch
480                  * fault we could otherwise deadlock.
481                  */
482                 goto bad_area_nosemaphore;
483         }
484
485         /* It's safe to allow irq's after cr2 has been saved and the vmalloc
486            fault has been handled. */
487         if (regs->flags & (X86_EFLAGS_IF|VM_MASK))
488                 local_irq_enable();
489
490         /*
491          * If we're in an interrupt, have no user context or are running in an
492          * atomic region then we must not take the fault.
493          */
494         if (in_atomic() || !mm)
495                 goto bad_area_nosemaphore;
496
497         /* When running in the kernel we expect faults to occur only to
498          * addresses in user space.  All other faults represent errors in the
499          * kernel and should generate an OOPS.  Unfortunately, in the case of an
500          * erroneous fault occurring in a code path which already holds mmap_sem
501          * we will deadlock attempting to validate the fault against the
502          * address space.  Luckily the kernel only validly references user
503          * space from well defined areas of code, which are listed in the
504          * exceptions table.
505          *
506          * As the vast majority of faults will be valid we will only perform
507          * the source reference check when there is a possibility of a deadlock.
508          * Attempt to lock the address space, if we cannot we then validate the
509          * source.  If this is invalid we can skip the address space check,
510          * thus avoiding the deadlock.
511          */
512         if (!down_read_trylock(&mm->mmap_sem)) {
513                 if ((error_code & PF_USER) == 0 &&
514                     !search_exception_tables(regs->ip))
515                         goto bad_area_nosemaphore;
516                 down_read(&mm->mmap_sem);
517         }
518
519         vma = find_vma(mm, address);
520         if (!vma)
521                 goto bad_area;
522         if (vma->vm_start <= address)
523                 goto good_area;
524         if (!(vma->vm_flags & VM_GROWSDOWN))
525                 goto bad_area;
526         if (error_code & PF_USER) {
527                 /*
528                  * Accessing the stack below %sp is always a bug.
529                  * The large cushion allows instructions like enter
530                  * and pusha to work.  ("enter $65535,$31" pushes
531                  * 32 pointers and then decrements %sp by 65535.)
532                  */
533                 if (address + 65536 + 32 * sizeof(unsigned long) < regs->sp)
534                         goto bad_area;
535         }
536         if (expand_stack(vma, address))
537                 goto bad_area;
538 /*
539  * Ok, we have a good vm_area for this memory access, so
540  * we can handle it..
541  */
542 good_area:
543         si_code = SEGV_ACCERR;
544         write = 0;
545         switch (error_code & (PF_PROT|PF_WRITE)) {
546         default:        /* 3: write, present */
547                 /* fall through */
548         case PF_WRITE:          /* write, not present */
549                 if (!(vma->vm_flags & VM_WRITE))
550                         goto bad_area;
551                 write++;
552                 break;
553         case PF_PROT:           /* read, present */
554                 goto bad_area;
555         case 0:                 /* read, not present */
556                 if (!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE)))
557                         goto bad_area;
558         }
559
560  survive:
561         /*
562          * If for any reason at all we couldn't handle the fault,
563          * make sure we exit gracefully rather than endlessly redo
564          * the fault.
565          */
566         fault = handle_mm_fault(mm, vma, address, write);
567         if (unlikely(fault & VM_FAULT_ERROR)) {
568                 if (fault & VM_FAULT_OOM)
569                         goto out_of_memory;
570                 else if (fault & VM_FAULT_SIGBUS)
571                         goto do_sigbus;
572                 BUG();
573         }
574         if (fault & VM_FAULT_MAJOR)
575                 tsk->maj_flt++;
576         else
577                 tsk->min_flt++;
578
579 #ifdef CONFIG_X86_32
580         /*
581          * Did it hit the DOS screen memory VA from vm86 mode?
582          */
583         if (v8086_mode(regs)) {
584                 unsigned long bit = (address - 0xA0000) >> PAGE_SHIFT;
585                 if (bit < 32)
586                         tsk->thread.screen_bitmap |= 1 << bit;
587         }
588 #endif
589         up_read(&mm->mmap_sem);
590         return;
591
592 /*
593  * Something tried to access memory that isn't in our memory map..
594  * Fix it, but check if it's kernel or user first..
595  */
596 bad_area:
597         up_read(&mm->mmap_sem);
598
599 bad_area_nosemaphore:
600         /* User mode accesses just cause a SIGSEGV */
601         if (error_code & PF_USER) {
602                 /*
603                  * It's possible to have interrupts off here.
604                  */
605                 local_irq_enable();
606
607                 /*
608                  * Valid to do another page fault here because this one came
609                  * from user space.
610                  */
611                 if (is_prefetch(regs, address, error_code))
612                         return;
613
614                 if (is_errata100(regs, address))
615                         return;
616
617                 if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) &&
618                     printk_ratelimit()) {
619                         printk(
620 #ifdef CONFIG_X86_32
621                         "%s%s[%d]: segfault at %lx ip %08lx sp %08lx error %lx",
622 #else
623                         "%s%s[%d]: segfault at %lx ip %lx sp %lx error %lx",
624 #endif
625                         task_pid_nr(tsk) > 1 ? KERN_INFO : KERN_EMERG,
626                         tsk->comm, task_pid_nr(tsk), address, regs->ip,
627                         regs->sp, error_code);
628                         print_vma_addr(" in ", regs->ip);
629                         printk("\n");
630                 }
631                 tsk->thread.cr2 = address;
632                 /* Kernel addresses are always protection faults */
633                 tsk->thread.error_code = error_code | (address >= TASK_SIZE);
634                 tsk->thread.trap_no = 14;
635                 force_sig_info_fault(SIGSEGV, si_code, address, tsk);
636                 return;
637         }
638
639         if (is_f00f_bug(regs, address))
640                 return;
641
642 no_context:
643         /* Are we prepared to handle this kernel fault?  */
644         if (fixup_exception(regs))
645                 return;
646
647         /*
648          * Valid to do another page fault here, because if this fault
649          * had been triggered by is_prefetch fixup_exception would have
650          * handled it.
651          */
652         if (is_prefetch(regs, address, error_code))
653                 return;
654
655         if (is_errata93(regs, address))
656                 return;
657
658 /*
659  * Oops. The kernel tried to access some bad page. We'll have to
660  * terminate things with extreme prejudice.
661  */
662
663         bust_spinlocks(1);
664
665         show_fault_oops(regs, error_code, address);
666
667         tsk->thread.cr2 = address;
668         tsk->thread.trap_no = 14;
669         tsk->thread.error_code = error_code;
670         die("Oops", regs, error_code);
671         bust_spinlocks(0);
672         do_exit(SIGKILL);
673
674 /*
675  * We ran out of memory, or some other thing happened to us that made
676  * us unable to handle the page fault gracefully.
677  */
678 out_of_memory:
679         up_read(&mm->mmap_sem);
680         if (is_global_init(tsk)) {
681                 yield();
682                 down_read(&mm->mmap_sem);
683                 goto survive;
684         }
685         printk("VM: killing process %s\n", tsk->comm);
686         if (error_code & PF_USER)
687                 do_group_exit(SIGKILL);
688         goto no_context;
689
690 do_sigbus:
691         up_read(&mm->mmap_sem);
692
693         /* Kernel mode? Handle exceptions or die */
694         if (!(error_code & PF_USER))
695                 goto no_context;
696
697         /* User space => ok to do another page fault */
698         if (is_prefetch(regs, address, error_code))
699                 return;
700
701         tsk->thread.cr2 = address;
702         tsk->thread.error_code = error_code;
703         tsk->thread.trap_no = 14;
704         force_sig_info_fault(SIGBUS, BUS_ADRERR, address, tsk);
705 }
706
707 void vmalloc_sync_all(void)
708 {
709         /*
710          * Note that races in the updates of insync and start aren't
711          * problematic: insync can only get set bits added, and updates to
712          * start are only improving performance (without affecting correctness
713          * if undone).
714          */
715         static DECLARE_BITMAP(insync, PTRS_PER_PGD);
716         static unsigned long start = TASK_SIZE;
717         unsigned long address;
718
719         if (SHARED_KERNEL_PMD)
720                 return;
721
722         BUILD_BUG_ON(TASK_SIZE & ~PGDIR_MASK);
723         for (address = start; address >= TASK_SIZE; address += PGDIR_SIZE) {
724                 if (!test_bit(pgd_index(address), insync)) {
725                         unsigned long flags;
726                         struct page *page;
727
728                         spin_lock_irqsave(&pgd_lock, flags);
729                         for (page = pgd_list; page; page =
730                                         (struct page *)page->index)
731                                 if (!vmalloc_sync_one(page_address(page),
732                                                                 address)) {
733                                         BUG_ON(page != pgd_list);
734                                         break;
735                                 }
736                         spin_unlock_irqrestore(&pgd_lock, flags);
737                         if (!page)
738                                 set_bit(pgd_index(address), insync);
739                 }
740                 if (address == start && test_bit(pgd_index(address), insync))
741                         start = address + PGDIR_SIZE;
742         }
743 }