]> bbs.cooldavid.org Git - net-next-2.6.git/blob - mm/memory.c
[PATCH] mm: update_hiwaters just in time
[net-next-2.6.git] / mm / memory.c
1 /*
2  *  linux/mm/memory.c
3  *
4  *  Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
5  */
6
7 /*
8  * demand-loading started 01.12.91 - seems it is high on the list of
9  * things wanted, and it should be easy to implement. - Linus
10  */
11
12 /*
13  * Ok, demand-loading was easy, shared pages a little bit tricker. Shared
14  * pages started 02.12.91, seems to work. - Linus.
15  *
16  * Tested sharing by executing about 30 /bin/sh: under the old kernel it
17  * would have taken more than the 6M I have free, but it worked well as
18  * far as I could see.
19  *
20  * Also corrected some "invalidate()"s - I wasn't doing enough of them.
21  */
22
23 /*
24  * Real VM (paging to/from disk) started 18.12.91. Much more work and
25  * thought has to go into this. Oh, well..
26  * 19.12.91  -  works, somewhat. Sometimes I get faults, don't know why.
27  *              Found it. Everything seems to work now.
28  * 20.12.91  -  Ok, making the swap-device changeable like the root.
29  */
30
31 /*
32  * 05.04.94  -  Multi-page memory management added for v1.1.
33  *              Idea by Alex Bligh (alex@cconcepts.co.uk)
34  *
35  * 16.07.99  -  Support of BIGMEM added by Gerhard Wichert, Siemens AG
36  *              (Gerhard.Wichert@pdb.siemens.de)
37  *
38  * Aug/Sep 2004 Changed to four level page tables (Andi Kleen)
39  */
40
41 #include <linux/kernel_stat.h>
42 #include <linux/mm.h>
43 #include <linux/hugetlb.h>
44 #include <linux/mman.h>
45 #include <linux/swap.h>
46 #include <linux/highmem.h>
47 #include <linux/pagemap.h>
48 #include <linux/rmap.h>
49 #include <linux/module.h>
50 #include <linux/init.h>
51
52 #include <asm/pgalloc.h>
53 #include <asm/uaccess.h>
54 #include <asm/tlb.h>
55 #include <asm/tlbflush.h>
56 #include <asm/pgtable.h>
57
58 #include <linux/swapops.h>
59 #include <linux/elf.h>
60
61 #ifndef CONFIG_NEED_MULTIPLE_NODES
62 /* use the per-pgdat data instead for discontigmem - mbligh */
63 unsigned long max_mapnr;
64 struct page *mem_map;
65
66 EXPORT_SYMBOL(max_mapnr);
67 EXPORT_SYMBOL(mem_map);
68 #endif
69
70 unsigned long num_physpages;
71 /*
72  * A number of key systems in x86 including ioremap() rely on the assumption
73  * that high_memory defines the upper bound on direct map memory, then end
74  * of ZONE_NORMAL.  Under CONFIG_DISCONTIG this means that max_low_pfn and
75  * highstart_pfn must be the same; there must be no gap between ZONE_NORMAL
76  * and ZONE_HIGHMEM.
77  */
78 void * high_memory;
79 unsigned long vmalloc_earlyreserve;
80
81 EXPORT_SYMBOL(num_physpages);
82 EXPORT_SYMBOL(high_memory);
83 EXPORT_SYMBOL(vmalloc_earlyreserve);
84
85 /*
86  * If a p?d_bad entry is found while walking page tables, report
87  * the error, before resetting entry to p?d_none.  Usually (but
88  * very seldom) called out from the p?d_none_or_clear_bad macros.
89  */
90
91 void pgd_clear_bad(pgd_t *pgd)
92 {
93         pgd_ERROR(*pgd);
94         pgd_clear(pgd);
95 }
96
97 void pud_clear_bad(pud_t *pud)
98 {
99         pud_ERROR(*pud);
100         pud_clear(pud);
101 }
102
103 void pmd_clear_bad(pmd_t *pmd)
104 {
105         pmd_ERROR(*pmd);
106         pmd_clear(pmd);
107 }
108
109 /*
110  * Note: this doesn't free the actual pages themselves. That
111  * has been handled earlier when unmapping all the memory regions.
112  */
113 static void free_pte_range(struct mmu_gather *tlb, pmd_t *pmd)
114 {
115         struct page *page = pmd_page(*pmd);
116         pmd_clear(pmd);
117         pte_free_tlb(tlb, page);
118         dec_page_state(nr_page_table_pages);
119         tlb->mm->nr_ptes--;
120 }
121
122 static inline void free_pmd_range(struct mmu_gather *tlb, pud_t *pud,
123                                 unsigned long addr, unsigned long end,
124                                 unsigned long floor, unsigned long ceiling)
125 {
126         pmd_t *pmd;
127         unsigned long next;
128         unsigned long start;
129
130         start = addr;
131         pmd = pmd_offset(pud, addr);
132         do {
133                 next = pmd_addr_end(addr, end);
134                 if (pmd_none_or_clear_bad(pmd))
135                         continue;
136                 free_pte_range(tlb, pmd);
137         } while (pmd++, addr = next, addr != end);
138
139         start &= PUD_MASK;
140         if (start < floor)
141                 return;
142         if (ceiling) {
143                 ceiling &= PUD_MASK;
144                 if (!ceiling)
145                         return;
146         }
147         if (end - 1 > ceiling - 1)
148                 return;
149
150         pmd = pmd_offset(pud, start);
151         pud_clear(pud);
152         pmd_free_tlb(tlb, pmd);
153 }
154
155 static inline void free_pud_range(struct mmu_gather *tlb, pgd_t *pgd,
156                                 unsigned long addr, unsigned long end,
157                                 unsigned long floor, unsigned long ceiling)
158 {
159         pud_t *pud;
160         unsigned long next;
161         unsigned long start;
162
163         start = addr;
164         pud = pud_offset(pgd, addr);
165         do {
166                 next = pud_addr_end(addr, end);
167                 if (pud_none_or_clear_bad(pud))
168                         continue;
169                 free_pmd_range(tlb, pud, addr, next, floor, ceiling);
170         } while (pud++, addr = next, addr != end);
171
172         start &= PGDIR_MASK;
173         if (start < floor)
174                 return;
175         if (ceiling) {
176                 ceiling &= PGDIR_MASK;
177                 if (!ceiling)
178                         return;
179         }
180         if (end - 1 > ceiling - 1)
181                 return;
182
183         pud = pud_offset(pgd, start);
184         pgd_clear(pgd);
185         pud_free_tlb(tlb, pud);
186 }
187
188 /*
189  * This function frees user-level page tables of a process.
190  *
191  * Must be called with pagetable lock held.
192  */
193 void free_pgd_range(struct mmu_gather **tlb,
194                         unsigned long addr, unsigned long end,
195                         unsigned long floor, unsigned long ceiling)
196 {
197         pgd_t *pgd;
198         unsigned long next;
199         unsigned long start;
200
201         /*
202          * The next few lines have given us lots of grief...
203          *
204          * Why are we testing PMD* at this top level?  Because often
205          * there will be no work to do at all, and we'd prefer not to
206          * go all the way down to the bottom just to discover that.
207          *
208          * Why all these "- 1"s?  Because 0 represents both the bottom
209          * of the address space and the top of it (using -1 for the
210          * top wouldn't help much: the masks would do the wrong thing).
211          * The rule is that addr 0 and floor 0 refer to the bottom of
212          * the address space, but end 0 and ceiling 0 refer to the top
213          * Comparisons need to use "end - 1" and "ceiling - 1" (though
214          * that end 0 case should be mythical).
215          *
216          * Wherever addr is brought up or ceiling brought down, we must
217          * be careful to reject "the opposite 0" before it confuses the
218          * subsequent tests.  But what about where end is brought down
219          * by PMD_SIZE below? no, end can't go down to 0 there.
220          *
221          * Whereas we round start (addr) and ceiling down, by different
222          * masks at different levels, in order to test whether a table
223          * now has no other vmas using it, so can be freed, we don't
224          * bother to round floor or end up - the tests don't need that.
225          */
226
227         addr &= PMD_MASK;
228         if (addr < floor) {
229                 addr += PMD_SIZE;
230                 if (!addr)
231                         return;
232         }
233         if (ceiling) {
234                 ceiling &= PMD_MASK;
235                 if (!ceiling)
236                         return;
237         }
238         if (end - 1 > ceiling - 1)
239                 end -= PMD_SIZE;
240         if (addr > end - 1)
241                 return;
242
243         start = addr;
244         pgd = pgd_offset((*tlb)->mm, addr);
245         do {
246                 next = pgd_addr_end(addr, end);
247                 if (pgd_none_or_clear_bad(pgd))
248                         continue;
249                 free_pud_range(*tlb, pgd, addr, next, floor, ceiling);
250         } while (pgd++, addr = next, addr != end);
251
252         if (!(*tlb)->fullmm)
253                 flush_tlb_pgtables((*tlb)->mm, start, end);
254 }
255
256 void free_pgtables(struct mmu_gather **tlb, struct vm_area_struct *vma,
257                 unsigned long floor, unsigned long ceiling)
258 {
259         while (vma) {
260                 struct vm_area_struct *next = vma->vm_next;
261                 unsigned long addr = vma->vm_start;
262
263                 if (is_hugepage_only_range(vma->vm_mm, addr, HPAGE_SIZE)) {
264                         hugetlb_free_pgd_range(tlb, addr, vma->vm_end,
265                                 floor, next? next->vm_start: ceiling);
266                 } else {
267                         /*
268                          * Optimization: gather nearby vmas into one call down
269                          */
270                         while (next && next->vm_start <= vma->vm_end + PMD_SIZE
271                           && !is_hugepage_only_range(vma->vm_mm, next->vm_start,
272                                                         HPAGE_SIZE)) {
273                                 vma = next;
274                                 next = vma->vm_next;
275                         }
276                         free_pgd_range(tlb, addr, vma->vm_end,
277                                 floor, next? next->vm_start: ceiling);
278                 }
279                 vma = next;
280         }
281 }
282
283 pte_t fastcall *pte_alloc_map(struct mm_struct *mm, pmd_t *pmd,
284                                 unsigned long address)
285 {
286         if (!pmd_present(*pmd)) {
287                 struct page *new;
288
289                 spin_unlock(&mm->page_table_lock);
290                 new = pte_alloc_one(mm, address);
291                 spin_lock(&mm->page_table_lock);
292                 if (!new)
293                         return NULL;
294                 /*
295                  * Because we dropped the lock, we should re-check the
296                  * entry, as somebody else could have populated it..
297                  */
298                 if (pmd_present(*pmd)) {
299                         pte_free(new);
300                         goto out;
301                 }
302                 mm->nr_ptes++;
303                 inc_page_state(nr_page_table_pages);
304                 pmd_populate(mm, pmd, new);
305         }
306 out:
307         return pte_offset_map(pmd, address);
308 }
309
310 pte_t fastcall * pte_alloc_kernel(struct mm_struct *mm, pmd_t *pmd, unsigned long address)
311 {
312         if (!pmd_present(*pmd)) {
313                 pte_t *new;
314
315                 spin_unlock(&mm->page_table_lock);
316                 new = pte_alloc_one_kernel(mm, address);
317                 spin_lock(&mm->page_table_lock);
318                 if (!new)
319                         return NULL;
320
321                 /*
322                  * Because we dropped the lock, we should re-check the
323                  * entry, as somebody else could have populated it..
324                  */
325                 if (pmd_present(*pmd)) {
326                         pte_free_kernel(new);
327                         goto out;
328                 }
329                 pmd_populate_kernel(mm, pmd, new);
330         }
331 out:
332         return pte_offset_kernel(pmd, address);
333 }
334
335 static inline void add_mm_rss(struct mm_struct *mm, int file_rss, int anon_rss)
336 {
337         if (file_rss)
338                 add_mm_counter(mm, file_rss, file_rss);
339         if (anon_rss)
340                 add_mm_counter(mm, anon_rss, anon_rss);
341 }
342
343 /*
344  * This function is called to print an error when a pte in a
345  * !VM_RESERVED region is found pointing to an invalid pfn (which
346  * is an error.
347  *
348  * The calling function must still handle the error.
349  */
350 void print_bad_pte(struct vm_area_struct *vma, pte_t pte, unsigned long vaddr)
351 {
352         printk(KERN_ERR "Bad pte = %08llx, process = %s, "
353                         "vm_flags = %lx, vaddr = %lx\n",
354                 (long long)pte_val(pte),
355                 (vma->vm_mm == current->mm ? current->comm : "???"),
356                 vma->vm_flags, vaddr);
357         dump_stack();
358 }
359
360 /*
361  * copy one vm_area from one task to the other. Assumes the page tables
362  * already present in the new task to be cleared in the whole range
363  * covered by this vma.
364  *
365  * dst->page_table_lock is held on entry and exit,
366  * but may be dropped within p[mg]d_alloc() and pte_alloc_map().
367  */
368
369 static inline void
370 copy_one_pte(struct mm_struct *dst_mm, struct mm_struct *src_mm,
371                 pte_t *dst_pte, pte_t *src_pte, struct vm_area_struct *vma,
372                 unsigned long addr, int *rss)
373 {
374         unsigned long vm_flags = vma->vm_flags;
375         pte_t pte = *src_pte;
376         struct page *page;
377         unsigned long pfn;
378
379         /* pte contains position in swap or file, so copy. */
380         if (unlikely(!pte_present(pte))) {
381                 if (!pte_file(pte)) {
382                         swap_duplicate(pte_to_swp_entry(pte));
383                         /* make sure dst_mm is on swapoff's mmlist. */
384                         if (unlikely(list_empty(&dst_mm->mmlist))) {
385                                 spin_lock(&mmlist_lock);
386                                 list_add(&dst_mm->mmlist, &src_mm->mmlist);
387                                 spin_unlock(&mmlist_lock);
388                         }
389                 }
390                 goto out_set_pte;
391         }
392
393         /* If the region is VM_RESERVED, the mapping is not
394          * mapped via rmap - duplicate the pte as is.
395          */
396         if (vm_flags & VM_RESERVED)
397                 goto out_set_pte;
398
399         pfn = pte_pfn(pte);
400         /* If the pte points outside of valid memory but
401          * the region is not VM_RESERVED, we have a problem.
402          */
403         if (unlikely(!pfn_valid(pfn))) {
404                 print_bad_pte(vma, pte, addr);
405                 goto out_set_pte; /* try to do something sane */
406         }
407
408         page = pfn_to_page(pfn);
409
410         /*
411          * If it's a COW mapping, write protect it both
412          * in the parent and the child
413          */
414         if ((vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE) {
415                 ptep_set_wrprotect(src_mm, addr, src_pte);
416                 pte = *src_pte;
417         }
418
419         /*
420          * If it's a shared mapping, mark it clean in
421          * the child
422          */
423         if (vm_flags & VM_SHARED)
424                 pte = pte_mkclean(pte);
425         pte = pte_mkold(pte);
426         get_page(page);
427         page_dup_rmap(page);
428         rss[!!PageAnon(page)]++;
429
430 out_set_pte:
431         set_pte_at(dst_mm, addr, dst_pte, pte);
432 }
433
434 static int copy_pte_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
435                 pmd_t *dst_pmd, pmd_t *src_pmd, struct vm_area_struct *vma,
436                 unsigned long addr, unsigned long end)
437 {
438         pte_t *src_pte, *dst_pte;
439         int progress = 0;
440         int rss[2];
441
442 again:
443         rss[1] = rss[0] = 0;
444         dst_pte = pte_alloc_map(dst_mm, dst_pmd, addr);
445         if (!dst_pte)
446                 return -ENOMEM;
447         src_pte = pte_offset_map_nested(src_pmd, addr);
448
449         spin_lock(&src_mm->page_table_lock);
450         do {
451                 /*
452                  * We are holding two locks at this point - either of them
453                  * could generate latencies in another task on another CPU.
454                  */
455                 if (progress >= 32) {
456                         progress = 0;
457                         if (need_resched() ||
458                             need_lockbreak(&src_mm->page_table_lock) ||
459                             need_lockbreak(&dst_mm->page_table_lock))
460                                 break;
461                 }
462                 if (pte_none(*src_pte)) {
463                         progress++;
464                         continue;
465                 }
466                 copy_one_pte(dst_mm, src_mm, dst_pte, src_pte, vma, addr, rss);
467                 progress += 8;
468         } while (dst_pte++, src_pte++, addr += PAGE_SIZE, addr != end);
469         spin_unlock(&src_mm->page_table_lock);
470
471         pte_unmap_nested(src_pte - 1);
472         pte_unmap(dst_pte - 1);
473         add_mm_rss(dst_mm, rss[0], rss[1]);
474         cond_resched_lock(&dst_mm->page_table_lock);
475         if (addr != end)
476                 goto again;
477         return 0;
478 }
479
480 static inline int copy_pmd_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
481                 pud_t *dst_pud, pud_t *src_pud, struct vm_area_struct *vma,
482                 unsigned long addr, unsigned long end)
483 {
484         pmd_t *src_pmd, *dst_pmd;
485         unsigned long next;
486
487         dst_pmd = pmd_alloc(dst_mm, dst_pud, addr);
488         if (!dst_pmd)
489                 return -ENOMEM;
490         src_pmd = pmd_offset(src_pud, addr);
491         do {
492                 next = pmd_addr_end(addr, end);
493                 if (pmd_none_or_clear_bad(src_pmd))
494                         continue;
495                 if (copy_pte_range(dst_mm, src_mm, dst_pmd, src_pmd,
496                                                 vma, addr, next))
497                         return -ENOMEM;
498         } while (dst_pmd++, src_pmd++, addr = next, addr != end);
499         return 0;
500 }
501
502 static inline int copy_pud_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
503                 pgd_t *dst_pgd, pgd_t *src_pgd, struct vm_area_struct *vma,
504                 unsigned long addr, unsigned long end)
505 {
506         pud_t *src_pud, *dst_pud;
507         unsigned long next;
508
509         dst_pud = pud_alloc(dst_mm, dst_pgd, addr);
510         if (!dst_pud)
511                 return -ENOMEM;
512         src_pud = pud_offset(src_pgd, addr);
513         do {
514                 next = pud_addr_end(addr, end);
515                 if (pud_none_or_clear_bad(src_pud))
516                         continue;
517                 if (copy_pmd_range(dst_mm, src_mm, dst_pud, src_pud,
518                                                 vma, addr, next))
519                         return -ENOMEM;
520         } while (dst_pud++, src_pud++, addr = next, addr != end);
521         return 0;
522 }
523
524 int copy_page_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
525                 struct vm_area_struct *vma)
526 {
527         pgd_t *src_pgd, *dst_pgd;
528         unsigned long next;
529         unsigned long addr = vma->vm_start;
530         unsigned long end = vma->vm_end;
531
532         /*
533          * Don't copy ptes where a page fault will fill them correctly.
534          * Fork becomes much lighter when there are big shared or private
535          * readonly mappings. The tradeoff is that copy_page_range is more
536          * efficient than faulting.
537          */
538         if (!(vma->vm_flags & (VM_HUGETLB|VM_NONLINEAR|VM_RESERVED))) {
539                 if (!vma->anon_vma)
540                         return 0;
541         }
542
543         if (is_vm_hugetlb_page(vma))
544                 return copy_hugetlb_page_range(dst_mm, src_mm, vma);
545
546         dst_pgd = pgd_offset(dst_mm, addr);
547         src_pgd = pgd_offset(src_mm, addr);
548         do {
549                 next = pgd_addr_end(addr, end);
550                 if (pgd_none_or_clear_bad(src_pgd))
551                         continue;
552                 if (copy_pud_range(dst_mm, src_mm, dst_pgd, src_pgd,
553                                                 vma, addr, next))
554                         return -ENOMEM;
555         } while (dst_pgd++, src_pgd++, addr = next, addr != end);
556         return 0;
557 }
558
559 static void zap_pte_range(struct mmu_gather *tlb,
560                                 struct vm_area_struct *vma, pmd_t *pmd,
561                                 unsigned long addr, unsigned long end,
562                                 struct zap_details *details)
563 {
564         struct mm_struct *mm = tlb->mm;
565         pte_t *pte;
566         int file_rss = 0;
567         int anon_rss = 0;
568
569         pte = pte_offset_map(pmd, addr);
570         do {
571                 pte_t ptent = *pte;
572                 if (pte_none(ptent))
573                         continue;
574                 if (pte_present(ptent)) {
575                         struct page *page = NULL;
576                         if (!(vma->vm_flags & VM_RESERVED)) {
577                                 unsigned long pfn = pte_pfn(ptent);
578                                 if (unlikely(!pfn_valid(pfn)))
579                                         print_bad_pte(vma, ptent, addr);
580                                 else
581                                         page = pfn_to_page(pfn);
582                         }
583                         if (unlikely(details) && page) {
584                                 /*
585                                  * unmap_shared_mapping_pages() wants to
586                                  * invalidate cache without truncating:
587                                  * unmap shared but keep private pages.
588                                  */
589                                 if (details->check_mapping &&
590                                     details->check_mapping != page->mapping)
591                                         continue;
592                                 /*
593                                  * Each page->index must be checked when
594                                  * invalidating or truncating nonlinear.
595                                  */
596                                 if (details->nonlinear_vma &&
597                                     (page->index < details->first_index ||
598                                      page->index > details->last_index))
599                                         continue;
600                         }
601                         ptent = ptep_get_and_clear_full(mm, addr, pte,
602                                                         tlb->fullmm);
603                         tlb_remove_tlb_entry(tlb, pte, addr);
604                         if (unlikely(!page))
605                                 continue;
606                         if (unlikely(details) && details->nonlinear_vma
607                             && linear_page_index(details->nonlinear_vma,
608                                                 addr) != page->index)
609                                 set_pte_at(mm, addr, pte,
610                                            pgoff_to_pte(page->index));
611                         if (PageAnon(page))
612                                 anon_rss--;
613                         else {
614                                 if (pte_dirty(ptent))
615                                         set_page_dirty(page);
616                                 if (pte_young(ptent))
617                                         mark_page_accessed(page);
618                                 file_rss--;
619                         }
620                         page_remove_rmap(page);
621                         tlb_remove_page(tlb, page);
622                         continue;
623                 }
624                 /*
625                  * If details->check_mapping, we leave swap entries;
626                  * if details->nonlinear_vma, we leave file entries.
627                  */
628                 if (unlikely(details))
629                         continue;
630                 if (!pte_file(ptent))
631                         free_swap_and_cache(pte_to_swp_entry(ptent));
632                 pte_clear_full(mm, addr, pte, tlb->fullmm);
633         } while (pte++, addr += PAGE_SIZE, addr != end);
634
635         add_mm_rss(mm, file_rss, anon_rss);
636         pte_unmap(pte - 1);
637 }
638
639 static inline void zap_pmd_range(struct mmu_gather *tlb,
640                                 struct vm_area_struct *vma, pud_t *pud,
641                                 unsigned long addr, unsigned long end,
642                                 struct zap_details *details)
643 {
644         pmd_t *pmd;
645         unsigned long next;
646
647         pmd = pmd_offset(pud, addr);
648         do {
649                 next = pmd_addr_end(addr, end);
650                 if (pmd_none_or_clear_bad(pmd))
651                         continue;
652                 zap_pte_range(tlb, vma, pmd, addr, next, details);
653         } while (pmd++, addr = next, addr != end);
654 }
655
656 static inline void zap_pud_range(struct mmu_gather *tlb,
657                                 struct vm_area_struct *vma, pgd_t *pgd,
658                                 unsigned long addr, unsigned long end,
659                                 struct zap_details *details)
660 {
661         pud_t *pud;
662         unsigned long next;
663
664         pud = pud_offset(pgd, addr);
665         do {
666                 next = pud_addr_end(addr, end);
667                 if (pud_none_or_clear_bad(pud))
668                         continue;
669                 zap_pmd_range(tlb, vma, pud, addr, next, details);
670         } while (pud++, addr = next, addr != end);
671 }
672
673 static void unmap_page_range(struct mmu_gather *tlb, struct vm_area_struct *vma,
674                                 unsigned long addr, unsigned long end,
675                                 struct zap_details *details)
676 {
677         pgd_t *pgd;
678         unsigned long next;
679
680         if (details && !details->check_mapping && !details->nonlinear_vma)
681                 details = NULL;
682
683         BUG_ON(addr >= end);
684         tlb_start_vma(tlb, vma);
685         pgd = pgd_offset(vma->vm_mm, addr);
686         do {
687                 next = pgd_addr_end(addr, end);
688                 if (pgd_none_or_clear_bad(pgd))
689                         continue;
690                 zap_pud_range(tlb, vma, pgd, addr, next, details);
691         } while (pgd++, addr = next, addr != end);
692         tlb_end_vma(tlb, vma);
693 }
694
695 #ifdef CONFIG_PREEMPT
696 # define ZAP_BLOCK_SIZE (8 * PAGE_SIZE)
697 #else
698 /* No preempt: go for improved straight-line efficiency */
699 # define ZAP_BLOCK_SIZE (1024 * PAGE_SIZE)
700 #endif
701
702 /**
703  * unmap_vmas - unmap a range of memory covered by a list of vma's
704  * @tlbp: address of the caller's struct mmu_gather
705  * @mm: the controlling mm_struct
706  * @vma: the starting vma
707  * @start_addr: virtual address at which to start unmapping
708  * @end_addr: virtual address at which to end unmapping
709  * @nr_accounted: Place number of unmapped pages in vm-accountable vma's here
710  * @details: details of nonlinear truncation or shared cache invalidation
711  *
712  * Returns the end address of the unmapping (restart addr if interrupted).
713  *
714  * Unmap all pages in the vma list.  Called under page_table_lock.
715  *
716  * We aim to not hold page_table_lock for too long (for scheduling latency
717  * reasons).  So zap pages in ZAP_BLOCK_SIZE bytecounts.  This means we need to
718  * return the ending mmu_gather to the caller.
719  *
720  * Only addresses between `start' and `end' will be unmapped.
721  *
722  * The VMA list must be sorted in ascending virtual address order.
723  *
724  * unmap_vmas() assumes that the caller will flush the whole unmapped address
725  * range after unmap_vmas() returns.  So the only responsibility here is to
726  * ensure that any thus-far unmapped pages are flushed before unmap_vmas()
727  * drops the lock and schedules.
728  */
729 unsigned long unmap_vmas(struct mmu_gather **tlbp, struct mm_struct *mm,
730                 struct vm_area_struct *vma, unsigned long start_addr,
731                 unsigned long end_addr, unsigned long *nr_accounted,
732                 struct zap_details *details)
733 {
734         unsigned long zap_bytes = ZAP_BLOCK_SIZE;
735         unsigned long tlb_start = 0;    /* For tlb_finish_mmu */
736         int tlb_start_valid = 0;
737         unsigned long start = start_addr;
738         spinlock_t *i_mmap_lock = details? details->i_mmap_lock: NULL;
739         int fullmm = (*tlbp)->fullmm;
740
741         for ( ; vma && vma->vm_start < end_addr; vma = vma->vm_next) {
742                 unsigned long end;
743
744                 start = max(vma->vm_start, start_addr);
745                 if (start >= vma->vm_end)
746                         continue;
747                 end = min(vma->vm_end, end_addr);
748                 if (end <= vma->vm_start)
749                         continue;
750
751                 if (vma->vm_flags & VM_ACCOUNT)
752                         *nr_accounted += (end - start) >> PAGE_SHIFT;
753
754                 while (start != end) {
755                         unsigned long block;
756
757                         if (!tlb_start_valid) {
758                                 tlb_start = start;
759                                 tlb_start_valid = 1;
760                         }
761
762                         if (is_vm_hugetlb_page(vma)) {
763                                 block = end - start;
764                                 unmap_hugepage_range(vma, start, end);
765                         } else {
766                                 block = min(zap_bytes, end - start);
767                                 unmap_page_range(*tlbp, vma, start,
768                                                 start + block, details);
769                         }
770
771                         start += block;
772                         zap_bytes -= block;
773                         if ((long)zap_bytes > 0)
774                                 continue;
775
776                         tlb_finish_mmu(*tlbp, tlb_start, start);
777
778                         if (need_resched() ||
779                                 need_lockbreak(&mm->page_table_lock) ||
780                                 (i_mmap_lock && need_lockbreak(i_mmap_lock))) {
781                                 if (i_mmap_lock) {
782                                         /* must reset count of rss freed */
783                                         *tlbp = tlb_gather_mmu(mm, fullmm);
784                                         goto out;
785                                 }
786                                 spin_unlock(&mm->page_table_lock);
787                                 cond_resched();
788                                 spin_lock(&mm->page_table_lock);
789                         }
790
791                         *tlbp = tlb_gather_mmu(mm, fullmm);
792                         tlb_start_valid = 0;
793                         zap_bytes = ZAP_BLOCK_SIZE;
794                 }
795         }
796 out:
797         return start;   /* which is now the end (or restart) address */
798 }
799
800 /**
801  * zap_page_range - remove user pages in a given range
802  * @vma: vm_area_struct holding the applicable pages
803  * @address: starting address of pages to zap
804  * @size: number of bytes to zap
805  * @details: details of nonlinear truncation or shared cache invalidation
806  */
807 unsigned long zap_page_range(struct vm_area_struct *vma, unsigned long address,
808                 unsigned long size, struct zap_details *details)
809 {
810         struct mm_struct *mm = vma->vm_mm;
811         struct mmu_gather *tlb;
812         unsigned long end = address + size;
813         unsigned long nr_accounted = 0;
814
815         if (is_vm_hugetlb_page(vma)) {
816                 zap_hugepage_range(vma, address, size);
817                 return end;
818         }
819
820         lru_add_drain();
821         spin_lock(&mm->page_table_lock);
822         tlb = tlb_gather_mmu(mm, 0);
823         update_hiwater_rss(mm);
824         end = unmap_vmas(&tlb, mm, vma, address, end, &nr_accounted, details);
825         tlb_finish_mmu(tlb, address, end);
826         spin_unlock(&mm->page_table_lock);
827         return end;
828 }
829
830 /*
831  * Do a quick page-table lookup for a single page.
832  * mm->page_table_lock must be held.
833  */
834 static struct page *__follow_page(struct mm_struct *mm, unsigned long address,
835                         int read, int write, int accessed)
836 {
837         pgd_t *pgd;
838         pud_t *pud;
839         pmd_t *pmd;
840         pte_t *ptep, pte;
841         unsigned long pfn;
842         struct page *page;
843
844         page = follow_huge_addr(mm, address, write);
845         if (! IS_ERR(page))
846                 return page;
847
848         pgd = pgd_offset(mm, address);
849         if (pgd_none(*pgd) || unlikely(pgd_bad(*pgd)))
850                 goto out;
851
852         pud = pud_offset(pgd, address);
853         if (pud_none(*pud) || unlikely(pud_bad(*pud)))
854                 goto out;
855         
856         pmd = pmd_offset(pud, address);
857         if (pmd_none(*pmd) || unlikely(pmd_bad(*pmd)))
858                 goto out;
859         if (pmd_huge(*pmd))
860                 return follow_huge_pmd(mm, address, pmd, write);
861
862         ptep = pte_offset_map(pmd, address);
863         if (!ptep)
864                 goto out;
865
866         pte = *ptep;
867         pte_unmap(ptep);
868         if (pte_present(pte)) {
869                 if (write && !pte_write(pte))
870                         goto out;
871                 if (read && !pte_read(pte))
872                         goto out;
873                 pfn = pte_pfn(pte);
874                 if (pfn_valid(pfn)) {
875                         page = pfn_to_page(pfn);
876                         if (accessed) {
877                                 if (write && !pte_dirty(pte) &&!PageDirty(page))
878                                         set_page_dirty(page);
879                                 mark_page_accessed(page);
880                         }
881                         return page;
882                 }
883         }
884
885 out:
886         return NULL;
887 }
888
889 inline struct page *
890 follow_page(struct mm_struct *mm, unsigned long address, int write)
891 {
892         return __follow_page(mm, address, 0, write, 1);
893 }
894
895 /*
896  * check_user_page_readable() can be called frm niterrupt context by oprofile,
897  * so we need to avoid taking any non-irq-safe locks
898  */
899 int check_user_page_readable(struct mm_struct *mm, unsigned long address)
900 {
901         return __follow_page(mm, address, 1, 0, 0) != NULL;
902 }
903 EXPORT_SYMBOL(check_user_page_readable);
904
905 static inline int
906 untouched_anonymous_page(struct mm_struct* mm, struct vm_area_struct *vma,
907                          unsigned long address)
908 {
909         pgd_t *pgd;
910         pud_t *pud;
911         pmd_t *pmd;
912
913         /* Check if the vma is for an anonymous mapping. */
914         if (vma->vm_ops && vma->vm_ops->nopage)
915                 return 0;
916
917         /* Check if page directory entry exists. */
918         pgd = pgd_offset(mm, address);
919         if (pgd_none(*pgd) || unlikely(pgd_bad(*pgd)))
920                 return 1;
921
922         pud = pud_offset(pgd, address);
923         if (pud_none(*pud) || unlikely(pud_bad(*pud)))
924                 return 1;
925
926         /* Check if page middle directory entry exists. */
927         pmd = pmd_offset(pud, address);
928         if (pmd_none(*pmd) || unlikely(pmd_bad(*pmd)))
929                 return 1;
930
931         /* There is a pte slot for 'address' in 'mm'. */
932         return 0;
933 }
934
935 int get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
936                 unsigned long start, int len, int write, int force,
937                 struct page **pages, struct vm_area_struct **vmas)
938 {
939         int i;
940         unsigned int flags;
941
942         /* 
943          * Require read or write permissions.
944          * If 'force' is set, we only require the "MAY" flags.
945          */
946         flags = write ? (VM_WRITE | VM_MAYWRITE) : (VM_READ | VM_MAYREAD);
947         flags &= force ? (VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
948         i = 0;
949
950         do {
951                 struct vm_area_struct * vma;
952
953                 vma = find_extend_vma(mm, start);
954                 if (!vma && in_gate_area(tsk, start)) {
955                         unsigned long pg = start & PAGE_MASK;
956                         struct vm_area_struct *gate_vma = get_gate_vma(tsk);
957                         pgd_t *pgd;
958                         pud_t *pud;
959                         pmd_t *pmd;
960                         pte_t *pte;
961                         if (write) /* user gate pages are read-only */
962                                 return i ? : -EFAULT;
963                         if (pg > TASK_SIZE)
964                                 pgd = pgd_offset_k(pg);
965                         else
966                                 pgd = pgd_offset_gate(mm, pg);
967                         BUG_ON(pgd_none(*pgd));
968                         pud = pud_offset(pgd, pg);
969                         BUG_ON(pud_none(*pud));
970                         pmd = pmd_offset(pud, pg);
971                         if (pmd_none(*pmd))
972                                 return i ? : -EFAULT;
973                         pte = pte_offset_map(pmd, pg);
974                         if (pte_none(*pte)) {
975                                 pte_unmap(pte);
976                                 return i ? : -EFAULT;
977                         }
978                         if (pages) {
979                                 pages[i] = pte_page(*pte);
980                                 get_page(pages[i]);
981                         }
982                         pte_unmap(pte);
983                         if (vmas)
984                                 vmas[i] = gate_vma;
985                         i++;
986                         start += PAGE_SIZE;
987                         len--;
988                         continue;
989                 }
990
991                 if (!vma || (vma->vm_flags & (VM_IO | VM_RESERVED))
992                                 || !(flags & vma->vm_flags))
993                         return i ? : -EFAULT;
994
995                 if (is_vm_hugetlb_page(vma)) {
996                         i = follow_hugetlb_page(mm, vma, pages, vmas,
997                                                 &start, &len, i);
998                         continue;
999                 }
1000                 spin_lock(&mm->page_table_lock);
1001                 do {
1002                         int write_access = write;
1003                         struct page *page;
1004
1005                         cond_resched_lock(&mm->page_table_lock);
1006                         while (!(page = follow_page(mm, start, write_access))) {
1007                                 int ret;
1008
1009                                 /*
1010                                  * Shortcut for anonymous pages. We don't want
1011                                  * to force the creation of pages tables for
1012                                  * insanely big anonymously mapped areas that
1013                                  * nobody touched so far. This is important
1014                                  * for doing a core dump for these mappings.
1015                                  */
1016                                 if (!write && untouched_anonymous_page(mm,vma,start)) {
1017                                         page = ZERO_PAGE(start);
1018                                         break;
1019                                 }
1020                                 spin_unlock(&mm->page_table_lock);
1021                                 ret = __handle_mm_fault(mm, vma, start, write_access);
1022
1023                                 /*
1024                                  * The VM_FAULT_WRITE bit tells us that do_wp_page has
1025                                  * broken COW when necessary, even if maybe_mkwrite
1026                                  * decided not to set pte_write. We can thus safely do
1027                                  * subsequent page lookups as if they were reads.
1028                                  */
1029                                 if (ret & VM_FAULT_WRITE)
1030                                         write_access = 0;
1031                                 
1032                                 switch (ret & ~VM_FAULT_WRITE) {
1033                                 case VM_FAULT_MINOR:
1034                                         tsk->min_flt++;
1035                                         break;
1036                                 case VM_FAULT_MAJOR:
1037                                         tsk->maj_flt++;
1038                                         break;
1039                                 case VM_FAULT_SIGBUS:
1040                                         return i ? i : -EFAULT;
1041                                 case VM_FAULT_OOM:
1042                                         return i ? i : -ENOMEM;
1043                                 default:
1044                                         BUG();
1045                                 }
1046                                 spin_lock(&mm->page_table_lock);
1047                         }
1048                         if (pages) {
1049                                 pages[i] = page;
1050                                 flush_dcache_page(page);
1051                                 page_cache_get(page);
1052                         }
1053                         if (vmas)
1054                                 vmas[i] = vma;
1055                         i++;
1056                         start += PAGE_SIZE;
1057                         len--;
1058                 } while (len && start < vma->vm_end);
1059                 spin_unlock(&mm->page_table_lock);
1060         } while (len);
1061         return i;
1062 }
1063 EXPORT_SYMBOL(get_user_pages);
1064
1065 static int zeromap_pte_range(struct mm_struct *mm, pmd_t *pmd,
1066                         unsigned long addr, unsigned long end, pgprot_t prot)
1067 {
1068         pte_t *pte;
1069
1070         pte = pte_alloc_map(mm, pmd, addr);
1071         if (!pte)
1072                 return -ENOMEM;
1073         do {
1074                 struct page *page = ZERO_PAGE(addr);
1075                 pte_t zero_pte = pte_wrprotect(mk_pte(page, prot));
1076                 page_cache_get(page);
1077                 page_add_file_rmap(page);
1078                 inc_mm_counter(mm, file_rss);
1079                 BUG_ON(!pte_none(*pte));
1080                 set_pte_at(mm, addr, pte, zero_pte);
1081         } while (pte++, addr += PAGE_SIZE, addr != end);
1082         pte_unmap(pte - 1);
1083         return 0;
1084 }
1085
1086 static inline int zeromap_pmd_range(struct mm_struct *mm, pud_t *pud,
1087                         unsigned long addr, unsigned long end, pgprot_t prot)
1088 {
1089         pmd_t *pmd;
1090         unsigned long next;
1091
1092         pmd = pmd_alloc(mm, pud, addr);
1093         if (!pmd)
1094                 return -ENOMEM;
1095         do {
1096                 next = pmd_addr_end(addr, end);
1097                 if (zeromap_pte_range(mm, pmd, addr, next, prot))
1098                         return -ENOMEM;
1099         } while (pmd++, addr = next, addr != end);
1100         return 0;
1101 }
1102
1103 static inline int zeromap_pud_range(struct mm_struct *mm, pgd_t *pgd,
1104                         unsigned long addr, unsigned long end, pgprot_t prot)
1105 {
1106         pud_t *pud;
1107         unsigned long next;
1108
1109         pud = pud_alloc(mm, pgd, addr);
1110         if (!pud)
1111                 return -ENOMEM;
1112         do {
1113                 next = pud_addr_end(addr, end);
1114                 if (zeromap_pmd_range(mm, pud, addr, next, prot))
1115                         return -ENOMEM;
1116         } while (pud++, addr = next, addr != end);
1117         return 0;
1118 }
1119
1120 int zeromap_page_range(struct vm_area_struct *vma,
1121                         unsigned long addr, unsigned long size, pgprot_t prot)
1122 {
1123         pgd_t *pgd;
1124         unsigned long next;
1125         unsigned long end = addr + size;
1126         struct mm_struct *mm = vma->vm_mm;
1127         int err;
1128
1129         BUG_ON(addr >= end);
1130         pgd = pgd_offset(mm, addr);
1131         flush_cache_range(vma, addr, end);
1132         spin_lock(&mm->page_table_lock);
1133         do {
1134                 next = pgd_addr_end(addr, end);
1135                 err = zeromap_pud_range(mm, pgd, addr, next, prot);
1136                 if (err)
1137                         break;
1138         } while (pgd++, addr = next, addr != end);
1139         spin_unlock(&mm->page_table_lock);
1140         return err;
1141 }
1142
1143 /*
1144  * maps a range of physical memory into the requested pages. the old
1145  * mappings are removed. any references to nonexistent pages results
1146  * in null mappings (currently treated as "copy-on-access")
1147  */
1148 static int remap_pte_range(struct mm_struct *mm, pmd_t *pmd,
1149                         unsigned long addr, unsigned long end,
1150                         unsigned long pfn, pgprot_t prot)
1151 {
1152         pte_t *pte;
1153
1154         pte = pte_alloc_map(mm, pmd, addr);
1155         if (!pte)
1156                 return -ENOMEM;
1157         do {
1158                 BUG_ON(!pte_none(*pte));
1159                 set_pte_at(mm, addr, pte, pfn_pte(pfn, prot));
1160                 pfn++;
1161         } while (pte++, addr += PAGE_SIZE, addr != end);
1162         pte_unmap(pte - 1);
1163         return 0;
1164 }
1165
1166 static inline int remap_pmd_range(struct mm_struct *mm, pud_t *pud,
1167                         unsigned long addr, unsigned long end,
1168                         unsigned long pfn, pgprot_t prot)
1169 {
1170         pmd_t *pmd;
1171         unsigned long next;
1172
1173         pfn -= addr >> PAGE_SHIFT;
1174         pmd = pmd_alloc(mm, pud, addr);
1175         if (!pmd)
1176                 return -ENOMEM;
1177         do {
1178                 next = pmd_addr_end(addr, end);
1179                 if (remap_pte_range(mm, pmd, addr, next,
1180                                 pfn + (addr >> PAGE_SHIFT), prot))
1181                         return -ENOMEM;
1182         } while (pmd++, addr = next, addr != end);
1183         return 0;
1184 }
1185
1186 static inline int remap_pud_range(struct mm_struct *mm, pgd_t *pgd,
1187                         unsigned long addr, unsigned long end,
1188                         unsigned long pfn, pgprot_t prot)
1189 {
1190         pud_t *pud;
1191         unsigned long next;
1192
1193         pfn -= addr >> PAGE_SHIFT;
1194         pud = pud_alloc(mm, pgd, addr);
1195         if (!pud)
1196                 return -ENOMEM;
1197         do {
1198                 next = pud_addr_end(addr, end);
1199                 if (remap_pmd_range(mm, pud, addr, next,
1200                                 pfn + (addr >> PAGE_SHIFT), prot))
1201                         return -ENOMEM;
1202         } while (pud++, addr = next, addr != end);
1203         return 0;
1204 }
1205
1206 /*  Note: this is only safe if the mm semaphore is held when called. */
1207 int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
1208                     unsigned long pfn, unsigned long size, pgprot_t prot)
1209 {
1210         pgd_t *pgd;
1211         unsigned long next;
1212         unsigned long end = addr + PAGE_ALIGN(size);
1213         struct mm_struct *mm = vma->vm_mm;
1214         int err;
1215
1216         /*
1217          * Physically remapped pages are special. Tell the
1218          * rest of the world about it:
1219          *   VM_IO tells people not to look at these pages
1220          *      (accesses can have side effects).
1221          *   VM_RESERVED tells the core MM not to "manage" these pages
1222          *      (e.g. refcount, mapcount, try to swap them out).
1223          */
1224         vma->vm_flags |= VM_IO | VM_RESERVED;
1225
1226         BUG_ON(addr >= end);
1227         pfn -= addr >> PAGE_SHIFT;
1228         pgd = pgd_offset(mm, addr);
1229         flush_cache_range(vma, addr, end);
1230         spin_lock(&mm->page_table_lock);
1231         do {
1232                 next = pgd_addr_end(addr, end);
1233                 err = remap_pud_range(mm, pgd, addr, next,
1234                                 pfn + (addr >> PAGE_SHIFT), prot);
1235                 if (err)
1236                         break;
1237         } while (pgd++, addr = next, addr != end);
1238         spin_unlock(&mm->page_table_lock);
1239         return err;
1240 }
1241 EXPORT_SYMBOL(remap_pfn_range);
1242
1243 /*
1244  * Do pte_mkwrite, but only if the vma says VM_WRITE.  We do this when
1245  * servicing faults for write access.  In the normal case, do always want
1246  * pte_mkwrite.  But get_user_pages can cause write faults for mappings
1247  * that do not have writing enabled, when used by access_process_vm.
1248  */
1249 static inline pte_t maybe_mkwrite(pte_t pte, struct vm_area_struct *vma)
1250 {
1251         if (likely(vma->vm_flags & VM_WRITE))
1252                 pte = pte_mkwrite(pte);
1253         return pte;
1254 }
1255
1256 /*
1257  * This routine handles present pages, when users try to write
1258  * to a shared page. It is done by copying the page to a new address
1259  * and decrementing the shared-page counter for the old page.
1260  *
1261  * Note that this routine assumes that the protection checks have been
1262  * done by the caller (the low-level page fault routine in most cases).
1263  * Thus we can safely just mark it writable once we've done any necessary
1264  * COW.
1265  *
1266  * We also mark the page dirty at this point even though the page will
1267  * change only once the write actually happens. This avoids a few races,
1268  * and potentially makes it more efficient.
1269  *
1270  * We hold the mm semaphore and the page_table_lock on entry and exit
1271  * with the page_table_lock released.
1272  */
1273 static int do_wp_page(struct mm_struct *mm, struct vm_area_struct *vma,
1274                 unsigned long address, pte_t *page_table, pmd_t *pmd,
1275                 pte_t orig_pte)
1276 {
1277         struct page *old_page, *new_page;
1278         unsigned long pfn = pte_pfn(orig_pte);
1279         pte_t entry;
1280         int ret = VM_FAULT_MINOR;
1281
1282         BUG_ON(vma->vm_flags & VM_RESERVED);
1283
1284         if (unlikely(!pfn_valid(pfn))) {
1285                 /*
1286                  * Page table corrupted: show pte and kill process.
1287                  */
1288                 print_bad_pte(vma, orig_pte, address);
1289                 ret = VM_FAULT_OOM;
1290                 goto unlock;
1291         }
1292         old_page = pfn_to_page(pfn);
1293
1294         if (PageAnon(old_page) && !TestSetPageLocked(old_page)) {
1295                 int reuse = can_share_swap_page(old_page);
1296                 unlock_page(old_page);
1297                 if (reuse) {
1298                         flush_cache_page(vma, address, pfn);
1299                         entry = pte_mkyoung(orig_pte);
1300                         entry = maybe_mkwrite(pte_mkdirty(entry), vma);
1301                         ptep_set_access_flags(vma, address, page_table, entry, 1);
1302                         update_mmu_cache(vma, address, entry);
1303                         lazy_mmu_prot_update(entry);
1304                         ret |= VM_FAULT_WRITE;
1305                         goto unlock;
1306                 }
1307         }
1308
1309         /*
1310          * Ok, we need to copy. Oh, well..
1311          */
1312         page_cache_get(old_page);
1313         pte_unmap(page_table);
1314         spin_unlock(&mm->page_table_lock);
1315
1316         if (unlikely(anon_vma_prepare(vma)))
1317                 goto oom;
1318         if (old_page == ZERO_PAGE(address)) {
1319                 new_page = alloc_zeroed_user_highpage(vma, address);
1320                 if (!new_page)
1321                         goto oom;
1322         } else {
1323                 new_page = alloc_page_vma(GFP_HIGHUSER, vma, address);
1324                 if (!new_page)
1325                         goto oom;
1326                 copy_user_highpage(new_page, old_page, address);
1327         }
1328
1329         /*
1330          * Re-check the pte - we dropped the lock
1331          */
1332         spin_lock(&mm->page_table_lock);
1333         page_table = pte_offset_map(pmd, address);
1334         if (likely(pte_same(*page_table, orig_pte))) {
1335                 page_remove_rmap(old_page);
1336                 if (!PageAnon(old_page)) {
1337                         inc_mm_counter(mm, anon_rss);
1338                         dec_mm_counter(mm, file_rss);
1339                 }
1340                 flush_cache_page(vma, address, pfn);
1341                 entry = mk_pte(new_page, vma->vm_page_prot);
1342                 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
1343                 ptep_establish(vma, address, page_table, entry);
1344                 update_mmu_cache(vma, address, entry);
1345                 lazy_mmu_prot_update(entry);
1346
1347                 lru_cache_add_active(new_page);
1348                 page_add_anon_rmap(new_page, vma, address);
1349
1350                 /* Free the old page.. */
1351                 new_page = old_page;
1352                 ret |= VM_FAULT_WRITE;
1353         }
1354         page_cache_release(new_page);
1355         page_cache_release(old_page);
1356 unlock:
1357         pte_unmap(page_table);
1358         spin_unlock(&mm->page_table_lock);
1359         return ret;
1360 oom:
1361         page_cache_release(old_page);
1362         return VM_FAULT_OOM;
1363 }
1364
1365 /*
1366  * Helper functions for unmap_mapping_range().
1367  *
1368  * __ Notes on dropping i_mmap_lock to reduce latency while unmapping __
1369  *
1370  * We have to restart searching the prio_tree whenever we drop the lock,
1371  * since the iterator is only valid while the lock is held, and anyway
1372  * a later vma might be split and reinserted earlier while lock dropped.
1373  *
1374  * The list of nonlinear vmas could be handled more efficiently, using
1375  * a placeholder, but handle it in the same way until a need is shown.
1376  * It is important to search the prio_tree before nonlinear list: a vma
1377  * may become nonlinear and be shifted from prio_tree to nonlinear list
1378  * while the lock is dropped; but never shifted from list to prio_tree.
1379  *
1380  * In order to make forward progress despite restarting the search,
1381  * vm_truncate_count is used to mark a vma as now dealt with, so we can
1382  * quickly skip it next time around.  Since the prio_tree search only
1383  * shows us those vmas affected by unmapping the range in question, we
1384  * can't efficiently keep all vmas in step with mapping->truncate_count:
1385  * so instead reset them all whenever it wraps back to 0 (then go to 1).
1386  * mapping->truncate_count and vma->vm_truncate_count are protected by
1387  * i_mmap_lock.
1388  *
1389  * In order to make forward progress despite repeatedly restarting some
1390  * large vma, note the restart_addr from unmap_vmas when it breaks out:
1391  * and restart from that address when we reach that vma again.  It might
1392  * have been split or merged, shrunk or extended, but never shifted: so
1393  * restart_addr remains valid so long as it remains in the vma's range.
1394  * unmap_mapping_range forces truncate_count to leap over page-aligned
1395  * values so we can save vma's restart_addr in its truncate_count field.
1396  */
1397 #define is_restart_addr(truncate_count) (!((truncate_count) & ~PAGE_MASK))
1398
1399 static void reset_vma_truncate_counts(struct address_space *mapping)
1400 {
1401         struct vm_area_struct *vma;
1402         struct prio_tree_iter iter;
1403
1404         vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, 0, ULONG_MAX)
1405                 vma->vm_truncate_count = 0;
1406         list_for_each_entry(vma, &mapping->i_mmap_nonlinear, shared.vm_set.list)
1407                 vma->vm_truncate_count = 0;
1408 }
1409
1410 static int unmap_mapping_range_vma(struct vm_area_struct *vma,
1411                 unsigned long start_addr, unsigned long end_addr,
1412                 struct zap_details *details)
1413 {
1414         unsigned long restart_addr;
1415         int need_break;
1416
1417 again:
1418         restart_addr = vma->vm_truncate_count;
1419         if (is_restart_addr(restart_addr) && start_addr < restart_addr) {
1420                 start_addr = restart_addr;
1421                 if (start_addr >= end_addr) {
1422                         /* Top of vma has been split off since last time */
1423                         vma->vm_truncate_count = details->truncate_count;
1424                         return 0;
1425                 }
1426         }
1427
1428         restart_addr = zap_page_range(vma, start_addr,
1429                                         end_addr - start_addr, details);
1430
1431         /*
1432          * We cannot rely on the break test in unmap_vmas:
1433          * on the one hand, we don't want to restart our loop
1434          * just because that broke out for the page_table_lock;
1435          * on the other hand, it does no test when vma is small.
1436          */
1437         need_break = need_resched() ||
1438                         need_lockbreak(details->i_mmap_lock);
1439
1440         if (restart_addr >= end_addr) {
1441                 /* We have now completed this vma: mark it so */
1442                 vma->vm_truncate_count = details->truncate_count;
1443                 if (!need_break)
1444                         return 0;
1445         } else {
1446                 /* Note restart_addr in vma's truncate_count field */
1447                 vma->vm_truncate_count = restart_addr;
1448                 if (!need_break)
1449                         goto again;
1450         }
1451
1452         spin_unlock(details->i_mmap_lock);
1453         cond_resched();
1454         spin_lock(details->i_mmap_lock);
1455         return -EINTR;
1456 }
1457
1458 static inline void unmap_mapping_range_tree(struct prio_tree_root *root,
1459                                             struct zap_details *details)
1460 {
1461         struct vm_area_struct *vma;
1462         struct prio_tree_iter iter;
1463         pgoff_t vba, vea, zba, zea;
1464
1465 restart:
1466         vma_prio_tree_foreach(vma, &iter, root,
1467                         details->first_index, details->last_index) {
1468                 /* Skip quickly over those we have already dealt with */
1469                 if (vma->vm_truncate_count == details->truncate_count)
1470                         continue;
1471
1472                 vba = vma->vm_pgoff;
1473                 vea = vba + ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) - 1;
1474                 /* Assume for now that PAGE_CACHE_SHIFT == PAGE_SHIFT */
1475                 zba = details->first_index;
1476                 if (zba < vba)
1477                         zba = vba;
1478                 zea = details->last_index;
1479                 if (zea > vea)
1480                         zea = vea;
1481
1482                 if (unmap_mapping_range_vma(vma,
1483                         ((zba - vba) << PAGE_SHIFT) + vma->vm_start,
1484                         ((zea - vba + 1) << PAGE_SHIFT) + vma->vm_start,
1485                                 details) < 0)
1486                         goto restart;
1487         }
1488 }
1489
1490 static inline void unmap_mapping_range_list(struct list_head *head,
1491                                             struct zap_details *details)
1492 {
1493         struct vm_area_struct *vma;
1494
1495         /*
1496          * In nonlinear VMAs there is no correspondence between virtual address
1497          * offset and file offset.  So we must perform an exhaustive search
1498          * across *all* the pages in each nonlinear VMA, not just the pages
1499          * whose virtual address lies outside the file truncation point.
1500          */
1501 restart:
1502         list_for_each_entry(vma, head, shared.vm_set.list) {
1503                 /* Skip quickly over those we have already dealt with */
1504                 if (vma->vm_truncate_count == details->truncate_count)
1505                         continue;
1506                 details->nonlinear_vma = vma;
1507                 if (unmap_mapping_range_vma(vma, vma->vm_start,
1508                                         vma->vm_end, details) < 0)
1509                         goto restart;
1510         }
1511 }
1512
1513 /**
1514  * unmap_mapping_range - unmap the portion of all mmaps
1515  * in the specified address_space corresponding to the specified
1516  * page range in the underlying file.
1517  * @mapping: the address space containing mmaps to be unmapped.
1518  * @holebegin: byte in first page to unmap, relative to the start of
1519  * the underlying file.  This will be rounded down to a PAGE_SIZE
1520  * boundary.  Note that this is different from vmtruncate(), which
1521  * must keep the partial page.  In contrast, we must get rid of
1522  * partial pages.
1523  * @holelen: size of prospective hole in bytes.  This will be rounded
1524  * up to a PAGE_SIZE boundary.  A holelen of zero truncates to the
1525  * end of the file.
1526  * @even_cows: 1 when truncating a file, unmap even private COWed pages;
1527  * but 0 when invalidating pagecache, don't throw away private data.
1528  */
1529 void unmap_mapping_range(struct address_space *mapping,
1530                 loff_t const holebegin, loff_t const holelen, int even_cows)
1531 {
1532         struct zap_details details;
1533         pgoff_t hba = holebegin >> PAGE_SHIFT;
1534         pgoff_t hlen = (holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
1535
1536         /* Check for overflow. */
1537         if (sizeof(holelen) > sizeof(hlen)) {
1538                 long long holeend =
1539                         (holebegin + holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
1540                 if (holeend & ~(long long)ULONG_MAX)
1541                         hlen = ULONG_MAX - hba + 1;
1542         }
1543
1544         details.check_mapping = even_cows? NULL: mapping;
1545         details.nonlinear_vma = NULL;
1546         details.first_index = hba;
1547         details.last_index = hba + hlen - 1;
1548         if (details.last_index < details.first_index)
1549                 details.last_index = ULONG_MAX;
1550         details.i_mmap_lock = &mapping->i_mmap_lock;
1551
1552         spin_lock(&mapping->i_mmap_lock);
1553
1554         /* serialize i_size write against truncate_count write */
1555         smp_wmb();
1556         /* Protect against page faults, and endless unmapping loops */
1557         mapping->truncate_count++;
1558         /*
1559          * For archs where spin_lock has inclusive semantics like ia64
1560          * this smp_mb() will prevent to read pagetable contents
1561          * before the truncate_count increment is visible to
1562          * other cpus.
1563          */
1564         smp_mb();
1565         if (unlikely(is_restart_addr(mapping->truncate_count))) {
1566                 if (mapping->truncate_count == 0)
1567                         reset_vma_truncate_counts(mapping);
1568                 mapping->truncate_count++;
1569         }
1570         details.truncate_count = mapping->truncate_count;
1571
1572         if (unlikely(!prio_tree_empty(&mapping->i_mmap)))
1573                 unmap_mapping_range_tree(&mapping->i_mmap, &details);
1574         if (unlikely(!list_empty(&mapping->i_mmap_nonlinear)))
1575                 unmap_mapping_range_list(&mapping->i_mmap_nonlinear, &details);
1576         spin_unlock(&mapping->i_mmap_lock);
1577 }
1578 EXPORT_SYMBOL(unmap_mapping_range);
1579
1580 /*
1581  * Handle all mappings that got truncated by a "truncate()"
1582  * system call.
1583  *
1584  * NOTE! We have to be ready to update the memory sharing
1585  * between the file and the memory map for a potential last
1586  * incomplete page.  Ugly, but necessary.
1587  */
1588 int vmtruncate(struct inode * inode, loff_t offset)
1589 {
1590         struct address_space *mapping = inode->i_mapping;
1591         unsigned long limit;
1592
1593         if (inode->i_size < offset)
1594                 goto do_expand;
1595         /*
1596          * truncation of in-use swapfiles is disallowed - it would cause
1597          * subsequent swapout to scribble on the now-freed blocks.
1598          */
1599         if (IS_SWAPFILE(inode))
1600                 goto out_busy;
1601         i_size_write(inode, offset);
1602         unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
1603         truncate_inode_pages(mapping, offset);
1604         goto out_truncate;
1605
1606 do_expand:
1607         limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
1608         if (limit != RLIM_INFINITY && offset > limit)
1609                 goto out_sig;
1610         if (offset > inode->i_sb->s_maxbytes)
1611                 goto out_big;
1612         i_size_write(inode, offset);
1613
1614 out_truncate:
1615         if (inode->i_op && inode->i_op->truncate)
1616                 inode->i_op->truncate(inode);
1617         return 0;
1618 out_sig:
1619         send_sig(SIGXFSZ, current, 0);
1620 out_big:
1621         return -EFBIG;
1622 out_busy:
1623         return -ETXTBSY;
1624 }
1625
1626 EXPORT_SYMBOL(vmtruncate);
1627
1628 /* 
1629  * Primitive swap readahead code. We simply read an aligned block of
1630  * (1 << page_cluster) entries in the swap area. This method is chosen
1631  * because it doesn't cost us any seek time.  We also make sure to queue
1632  * the 'original' request together with the readahead ones...  
1633  *
1634  * This has been extended to use the NUMA policies from the mm triggering
1635  * the readahead.
1636  *
1637  * Caller must hold down_read on the vma->vm_mm if vma is not NULL.
1638  */
1639 void swapin_readahead(swp_entry_t entry, unsigned long addr,struct vm_area_struct *vma)
1640 {
1641 #ifdef CONFIG_NUMA
1642         struct vm_area_struct *next_vma = vma ? vma->vm_next : NULL;
1643 #endif
1644         int i, num;
1645         struct page *new_page;
1646         unsigned long offset;
1647
1648         /*
1649          * Get the number of handles we should do readahead io to.
1650          */
1651         num = valid_swaphandles(entry, &offset);
1652         for (i = 0; i < num; offset++, i++) {
1653                 /* Ok, do the async read-ahead now */
1654                 new_page = read_swap_cache_async(swp_entry(swp_type(entry),
1655                                                            offset), vma, addr);
1656                 if (!new_page)
1657                         break;
1658                 page_cache_release(new_page);
1659 #ifdef CONFIG_NUMA
1660                 /*
1661                  * Find the next applicable VMA for the NUMA policy.
1662                  */
1663                 addr += PAGE_SIZE;
1664                 if (addr == 0)
1665                         vma = NULL;
1666                 if (vma) {
1667                         if (addr >= vma->vm_end) {
1668                                 vma = next_vma;
1669                                 next_vma = vma ? vma->vm_next : NULL;
1670                         }
1671                         if (vma && addr < vma->vm_start)
1672                                 vma = NULL;
1673                 } else {
1674                         if (next_vma && addr >= next_vma->vm_start) {
1675                                 vma = next_vma;
1676                                 next_vma = vma->vm_next;
1677                         }
1678                 }
1679 #endif
1680         }
1681         lru_add_drain();        /* Push any new pages onto the LRU now */
1682 }
1683
1684 /*
1685  * We hold the mm semaphore and the page_table_lock on entry and
1686  * should release the pagetable lock on exit..
1687  */
1688 static int do_swap_page(struct mm_struct *mm, struct vm_area_struct *vma,
1689                 unsigned long address, pte_t *page_table, pmd_t *pmd,
1690                 int write_access, pte_t orig_pte)
1691 {
1692         struct page *page;
1693         swp_entry_t entry;
1694         pte_t pte;
1695         int ret = VM_FAULT_MINOR;
1696
1697         pte_unmap(page_table);
1698         spin_unlock(&mm->page_table_lock);
1699
1700         entry = pte_to_swp_entry(orig_pte);
1701         page = lookup_swap_cache(entry);
1702         if (!page) {
1703                 swapin_readahead(entry, address, vma);
1704                 page = read_swap_cache_async(entry, vma, address);
1705                 if (!page) {
1706                         /*
1707                          * Back out if somebody else faulted in this pte while
1708                          * we released the page table lock.
1709                          */
1710                         spin_lock(&mm->page_table_lock);
1711                         page_table = pte_offset_map(pmd, address);
1712                         if (likely(pte_same(*page_table, orig_pte)))
1713                                 ret = VM_FAULT_OOM;
1714                         goto unlock;
1715                 }
1716
1717                 /* Had to read the page from swap area: Major fault */
1718                 ret = VM_FAULT_MAJOR;
1719                 inc_page_state(pgmajfault);
1720                 grab_swap_token();
1721         }
1722
1723         mark_page_accessed(page);
1724         lock_page(page);
1725
1726         /*
1727          * Back out if somebody else faulted in this pte while we
1728          * released the page table lock.
1729          */
1730         spin_lock(&mm->page_table_lock);
1731         page_table = pte_offset_map(pmd, address);
1732         if (unlikely(!pte_same(*page_table, orig_pte)))
1733                 goto out_nomap;
1734
1735         if (unlikely(!PageUptodate(page))) {
1736                 ret = VM_FAULT_SIGBUS;
1737                 goto out_nomap;
1738         }
1739
1740         /* The page isn't present yet, go ahead with the fault. */
1741
1742         inc_mm_counter(mm, anon_rss);
1743         pte = mk_pte(page, vma->vm_page_prot);
1744         if (write_access && can_share_swap_page(page)) {
1745                 pte = maybe_mkwrite(pte_mkdirty(pte), vma);
1746                 write_access = 0;
1747         }
1748
1749         flush_icache_page(vma, page);
1750         set_pte_at(mm, address, page_table, pte);
1751         page_add_anon_rmap(page, vma, address);
1752
1753         swap_free(entry);
1754         if (vm_swap_full())
1755                 remove_exclusive_swap_page(page);
1756         unlock_page(page);
1757
1758         if (write_access) {
1759                 if (do_wp_page(mm, vma, address,
1760                                 page_table, pmd, pte) == VM_FAULT_OOM)
1761                         ret = VM_FAULT_OOM;
1762                 goto out;
1763         }
1764
1765         /* No need to invalidate - it was non-present before */
1766         update_mmu_cache(vma, address, pte);
1767         lazy_mmu_prot_update(pte);
1768 unlock:
1769         pte_unmap(page_table);
1770         spin_unlock(&mm->page_table_lock);
1771 out:
1772         return ret;
1773 out_nomap:
1774         pte_unmap(page_table);
1775         spin_unlock(&mm->page_table_lock);
1776         unlock_page(page);
1777         page_cache_release(page);
1778         return ret;
1779 }
1780
1781 /*
1782  * We are called with the MM semaphore and page_table_lock
1783  * spinlock held to protect against concurrent faults in
1784  * multithreaded programs. 
1785  */
1786 static int do_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
1787                 unsigned long address, pte_t *page_table, pmd_t *pmd,
1788                 int write_access)
1789 {
1790         struct page *page = ZERO_PAGE(addr);
1791         pte_t entry;
1792
1793         /* Mapping of ZERO_PAGE - vm_page_prot is readonly */
1794         entry = mk_pte(page, vma->vm_page_prot);
1795
1796         if (write_access) {
1797                 /* Allocate our own private page. */
1798                 pte_unmap(page_table);
1799                 spin_unlock(&mm->page_table_lock);
1800
1801                 if (unlikely(anon_vma_prepare(vma)))
1802                         goto oom;
1803                 page = alloc_zeroed_user_highpage(vma, address);
1804                 if (!page)
1805                         goto oom;
1806
1807                 spin_lock(&mm->page_table_lock);
1808                 page_table = pte_offset_map(pmd, address);
1809
1810                 if (!pte_none(*page_table)) {
1811                         page_cache_release(page);
1812                         goto unlock;
1813                 }
1814                 inc_mm_counter(mm, anon_rss);
1815                 entry = mk_pte(page, vma->vm_page_prot);
1816                 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
1817                 lru_cache_add_active(page);
1818                 SetPageReferenced(page);
1819                 page_add_anon_rmap(page, vma, address);
1820         } else {
1821                 inc_mm_counter(mm, file_rss);
1822                 page_add_file_rmap(page);
1823                 page_cache_get(page);
1824         }
1825
1826         set_pte_at(mm, address, page_table, entry);
1827
1828         /* No need to invalidate - it was non-present before */
1829         update_mmu_cache(vma, address, entry);
1830         lazy_mmu_prot_update(entry);
1831 unlock:
1832         pte_unmap(page_table);
1833         spin_unlock(&mm->page_table_lock);
1834         return VM_FAULT_MINOR;
1835 oom:
1836         return VM_FAULT_OOM;
1837 }
1838
1839 /*
1840  * do_no_page() tries to create a new page mapping. It aggressively
1841  * tries to share with existing pages, but makes a separate copy if
1842  * the "write_access" parameter is true in order to avoid the next
1843  * page fault.
1844  *
1845  * As this is called only for pages that do not currently exist, we
1846  * do not need to flush old virtual caches or the TLB.
1847  *
1848  * This is called with the MM semaphore held and the page table
1849  * spinlock held. Exit with the spinlock released.
1850  */
1851 static int do_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
1852                 unsigned long address, pte_t *page_table, pmd_t *pmd,
1853                 int write_access)
1854 {
1855         struct page *new_page;
1856         struct address_space *mapping = NULL;
1857         pte_t entry;
1858         unsigned int sequence = 0;
1859         int ret = VM_FAULT_MINOR;
1860         int anon = 0;
1861
1862         pte_unmap(page_table);
1863         spin_unlock(&mm->page_table_lock);
1864
1865         if (vma->vm_file) {
1866                 mapping = vma->vm_file->f_mapping;
1867                 sequence = mapping->truncate_count;
1868                 smp_rmb(); /* serializes i_size against truncate_count */
1869         }
1870 retry:
1871         new_page = vma->vm_ops->nopage(vma, address & PAGE_MASK, &ret);
1872         /*
1873          * No smp_rmb is needed here as long as there's a full
1874          * spin_lock/unlock sequence inside the ->nopage callback
1875          * (for the pagecache lookup) that acts as an implicit
1876          * smp_mb() and prevents the i_size read to happen
1877          * after the next truncate_count read.
1878          */
1879
1880         /* no page was available -- either SIGBUS or OOM */
1881         if (new_page == NOPAGE_SIGBUS)
1882                 return VM_FAULT_SIGBUS;
1883         if (new_page == NOPAGE_OOM)
1884                 return VM_FAULT_OOM;
1885
1886         /*
1887          * Should we do an early C-O-W break?
1888          */
1889         if (write_access && !(vma->vm_flags & VM_SHARED)) {
1890                 struct page *page;
1891
1892                 if (unlikely(anon_vma_prepare(vma)))
1893                         goto oom;
1894                 page = alloc_page_vma(GFP_HIGHUSER, vma, address);
1895                 if (!page)
1896                         goto oom;
1897                 copy_user_highpage(page, new_page, address);
1898                 page_cache_release(new_page);
1899                 new_page = page;
1900                 anon = 1;
1901         }
1902
1903         spin_lock(&mm->page_table_lock);
1904         /*
1905          * For a file-backed vma, someone could have truncated or otherwise
1906          * invalidated this page.  If unmap_mapping_range got called,
1907          * retry getting the page.
1908          */
1909         if (mapping && unlikely(sequence != mapping->truncate_count)) {
1910                 spin_unlock(&mm->page_table_lock);
1911                 page_cache_release(new_page);
1912                 cond_resched();
1913                 sequence = mapping->truncate_count;
1914                 smp_rmb();
1915                 goto retry;
1916         }
1917         page_table = pte_offset_map(pmd, address);
1918
1919         /*
1920          * This silly early PAGE_DIRTY setting removes a race
1921          * due to the bad i386 page protection. But it's valid
1922          * for other architectures too.
1923          *
1924          * Note that if write_access is true, we either now have
1925          * an exclusive copy of the page, or this is a shared mapping,
1926          * so we can make it writable and dirty to avoid having to
1927          * handle that later.
1928          */
1929         /* Only go through if we didn't race with anybody else... */
1930         if (pte_none(*page_table)) {
1931                 flush_icache_page(vma, new_page);
1932                 entry = mk_pte(new_page, vma->vm_page_prot);
1933                 if (write_access)
1934                         entry = maybe_mkwrite(pte_mkdirty(entry), vma);
1935                 set_pte_at(mm, address, page_table, entry);
1936                 if (anon) {
1937                         inc_mm_counter(mm, anon_rss);
1938                         lru_cache_add_active(new_page);
1939                         page_add_anon_rmap(new_page, vma, address);
1940                 } else if (!(vma->vm_flags & VM_RESERVED)) {
1941                         inc_mm_counter(mm, file_rss);
1942                         page_add_file_rmap(new_page);
1943                 }
1944         } else {
1945                 /* One of our sibling threads was faster, back out. */
1946                 page_cache_release(new_page);
1947                 goto unlock;
1948         }
1949
1950         /* no need to invalidate: a not-present page shouldn't be cached */
1951         update_mmu_cache(vma, address, entry);
1952         lazy_mmu_prot_update(entry);
1953 unlock:
1954         pte_unmap(page_table);
1955         spin_unlock(&mm->page_table_lock);
1956         return ret;
1957 oom:
1958         page_cache_release(new_page);
1959         return VM_FAULT_OOM;
1960 }
1961
1962 /*
1963  * Fault of a previously existing named mapping. Repopulate the pte
1964  * from the encoded file_pte if possible. This enables swappable
1965  * nonlinear vmas.
1966  */
1967 static int do_file_page(struct mm_struct *mm, struct vm_area_struct *vma,
1968                 unsigned long address, pte_t *page_table, pmd_t *pmd,
1969                 int write_access, pte_t orig_pte)
1970 {
1971         pgoff_t pgoff;
1972         int err;
1973
1974         pte_unmap(page_table);
1975         spin_unlock(&mm->page_table_lock);
1976
1977         if (unlikely(!(vma->vm_flags & VM_NONLINEAR))) {
1978                 /*
1979                  * Page table corrupted: show pte and kill process.
1980                  */
1981                 print_bad_pte(vma, orig_pte, address);
1982                 return VM_FAULT_OOM;
1983         }
1984         /* We can then assume vm->vm_ops && vma->vm_ops->populate */
1985
1986         pgoff = pte_to_pgoff(orig_pte);
1987         err = vma->vm_ops->populate(vma, address & PAGE_MASK, PAGE_SIZE,
1988                                         vma->vm_page_prot, pgoff, 0);
1989         if (err == -ENOMEM)
1990                 return VM_FAULT_OOM;
1991         if (err)
1992                 return VM_FAULT_SIGBUS;
1993         return VM_FAULT_MAJOR;
1994 }
1995
1996 /*
1997  * These routines also need to handle stuff like marking pages dirty
1998  * and/or accessed for architectures that don't do it in hardware (most
1999  * RISC architectures).  The early dirtying is also good on the i386.
2000  *
2001  * There is also a hook called "update_mmu_cache()" that architectures
2002  * with external mmu caches can use to update those (ie the Sparc or
2003  * PowerPC hashed page tables that act as extended TLBs).
2004  *
2005  * Note the "page_table_lock". It is to protect against kswapd removing
2006  * pages from under us. Note that kswapd only ever _removes_ pages, never
2007  * adds them. As such, once we have noticed that the page is not present,
2008  * we can drop the lock early.
2009  *
2010  * The adding of pages is protected by the MM semaphore (which we hold),
2011  * so we don't need to worry about a page being suddenly been added into
2012  * our VM.
2013  *
2014  * We enter with the pagetable spinlock held, we are supposed to
2015  * release it when done.
2016  */
2017 static inline int handle_pte_fault(struct mm_struct *mm,
2018                 struct vm_area_struct *vma, unsigned long address,
2019                 pte_t *pte, pmd_t *pmd, int write_access)
2020 {
2021         pte_t entry;
2022
2023         entry = *pte;
2024         if (!pte_present(entry)) {
2025                 if (pte_none(entry)) {
2026                         if (!vma->vm_ops || !vma->vm_ops->nopage)
2027                                 return do_anonymous_page(mm, vma, address,
2028                                         pte, pmd, write_access);
2029                         return do_no_page(mm, vma, address,
2030                                         pte, pmd, write_access);
2031                 }
2032                 if (pte_file(entry))
2033                         return do_file_page(mm, vma, address,
2034                                         pte, pmd, write_access, entry);
2035                 return do_swap_page(mm, vma, address,
2036                                         pte, pmd, write_access, entry);
2037         }
2038
2039         if (write_access) {
2040                 if (!pte_write(entry))
2041                         return do_wp_page(mm, vma, address, pte, pmd, entry);
2042                 entry = pte_mkdirty(entry);
2043         }
2044         entry = pte_mkyoung(entry);
2045         ptep_set_access_flags(vma, address, pte, entry, write_access);
2046         update_mmu_cache(vma, address, entry);
2047         lazy_mmu_prot_update(entry);
2048         pte_unmap(pte);
2049         spin_unlock(&mm->page_table_lock);
2050         return VM_FAULT_MINOR;
2051 }
2052
2053 /*
2054  * By the time we get here, we already hold the mm semaphore
2055  */
2056 int __handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
2057                 unsigned long address, int write_access)
2058 {
2059         pgd_t *pgd;
2060         pud_t *pud;
2061         pmd_t *pmd;
2062         pte_t *pte;
2063
2064         __set_current_state(TASK_RUNNING);
2065
2066         inc_page_state(pgfault);
2067
2068         if (unlikely(is_vm_hugetlb_page(vma)))
2069                 return hugetlb_fault(mm, vma, address, write_access);
2070
2071         /*
2072          * We need the page table lock to synchronize with kswapd
2073          * and the SMP-safe atomic PTE updates.
2074          */
2075         pgd = pgd_offset(mm, address);
2076         spin_lock(&mm->page_table_lock);
2077
2078         pud = pud_alloc(mm, pgd, address);
2079         if (!pud)
2080                 goto oom;
2081
2082         pmd = pmd_alloc(mm, pud, address);
2083         if (!pmd)
2084                 goto oom;
2085
2086         pte = pte_alloc_map(mm, pmd, address);
2087         if (!pte)
2088                 goto oom;
2089         
2090         return handle_pte_fault(mm, vma, address, pte, pmd, write_access);
2091
2092  oom:
2093         spin_unlock(&mm->page_table_lock);
2094         return VM_FAULT_OOM;
2095 }
2096
2097 #ifndef __PAGETABLE_PUD_FOLDED
2098 /*
2099  * Allocate page upper directory.
2100  *
2101  * We've already handled the fast-path in-line, and we own the
2102  * page table lock.
2103  */
2104 pud_t fastcall *__pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address)
2105 {
2106         pud_t *new;
2107
2108         spin_unlock(&mm->page_table_lock);
2109         new = pud_alloc_one(mm, address);
2110         spin_lock(&mm->page_table_lock);
2111         if (!new)
2112                 return NULL;
2113
2114         /*
2115          * Because we dropped the lock, we should re-check the
2116          * entry, as somebody else could have populated it..
2117          */
2118         if (pgd_present(*pgd)) {
2119                 pud_free(new);
2120                 goto out;
2121         }
2122         pgd_populate(mm, pgd, new);
2123  out:
2124         return pud_offset(pgd, address);
2125 }
2126 #endif /* __PAGETABLE_PUD_FOLDED */
2127
2128 #ifndef __PAGETABLE_PMD_FOLDED
2129 /*
2130  * Allocate page middle directory.
2131  *
2132  * We've already handled the fast-path in-line, and we own the
2133  * page table lock.
2134  */
2135 pmd_t fastcall *__pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address)
2136 {
2137         pmd_t *new;
2138
2139         spin_unlock(&mm->page_table_lock);
2140         new = pmd_alloc_one(mm, address);
2141         spin_lock(&mm->page_table_lock);
2142         if (!new)
2143                 return NULL;
2144
2145         /*
2146          * Because we dropped the lock, we should re-check the
2147          * entry, as somebody else could have populated it..
2148          */
2149 #ifndef __ARCH_HAS_4LEVEL_HACK
2150         if (pud_present(*pud)) {
2151                 pmd_free(new);
2152                 goto out;
2153         }
2154         pud_populate(mm, pud, new);
2155 #else
2156         if (pgd_present(*pud)) {
2157                 pmd_free(new);
2158                 goto out;
2159         }
2160         pgd_populate(mm, pud, new);
2161 #endif /* __ARCH_HAS_4LEVEL_HACK */
2162
2163  out:
2164         return pmd_offset(pud, address);
2165 }
2166 #endif /* __PAGETABLE_PMD_FOLDED */
2167
2168 int make_pages_present(unsigned long addr, unsigned long end)
2169 {
2170         int ret, len, write;
2171         struct vm_area_struct * vma;
2172
2173         vma = find_vma(current->mm, addr);
2174         if (!vma)
2175                 return -1;
2176         write = (vma->vm_flags & VM_WRITE) != 0;
2177         if (addr >= end)
2178                 BUG();
2179         if (end > vma->vm_end)
2180                 BUG();
2181         len = (end+PAGE_SIZE-1)/PAGE_SIZE-addr/PAGE_SIZE;
2182         ret = get_user_pages(current, current->mm, addr,
2183                         len, write, 0, NULL, NULL);
2184         if (ret < 0)
2185                 return ret;
2186         return ret == len ? 0 : -1;
2187 }
2188
2189 /* 
2190  * Map a vmalloc()-space virtual address to the physical page.
2191  */
2192 struct page * vmalloc_to_page(void * vmalloc_addr)
2193 {
2194         unsigned long addr = (unsigned long) vmalloc_addr;
2195         struct page *page = NULL;
2196         pgd_t *pgd = pgd_offset_k(addr);
2197         pud_t *pud;
2198         pmd_t *pmd;
2199         pte_t *ptep, pte;
2200   
2201         if (!pgd_none(*pgd)) {
2202                 pud = pud_offset(pgd, addr);
2203                 if (!pud_none(*pud)) {
2204                         pmd = pmd_offset(pud, addr);
2205                         if (!pmd_none(*pmd)) {
2206                                 ptep = pte_offset_map(pmd, addr);
2207                                 pte = *ptep;
2208                                 if (pte_present(pte))
2209                                         page = pte_page(pte);
2210                                 pte_unmap(ptep);
2211                         }
2212                 }
2213         }
2214         return page;
2215 }
2216
2217 EXPORT_SYMBOL(vmalloc_to_page);
2218
2219 /*
2220  * Map a vmalloc()-space virtual address to the physical page frame number.
2221  */
2222 unsigned long vmalloc_to_pfn(void * vmalloc_addr)
2223 {
2224         return page_to_pfn(vmalloc_to_page(vmalloc_addr));
2225 }
2226
2227 EXPORT_SYMBOL(vmalloc_to_pfn);
2228
2229 #if !defined(__HAVE_ARCH_GATE_AREA)
2230
2231 #if defined(AT_SYSINFO_EHDR)
2232 static struct vm_area_struct gate_vma;
2233
2234 static int __init gate_vma_init(void)
2235 {
2236         gate_vma.vm_mm = NULL;
2237         gate_vma.vm_start = FIXADDR_USER_START;
2238         gate_vma.vm_end = FIXADDR_USER_END;
2239         gate_vma.vm_page_prot = PAGE_READONLY;
2240         gate_vma.vm_flags = VM_RESERVED;
2241         return 0;
2242 }
2243 __initcall(gate_vma_init);
2244 #endif
2245
2246 struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
2247 {
2248 #ifdef AT_SYSINFO_EHDR
2249         return &gate_vma;
2250 #else
2251         return NULL;
2252 #endif
2253 }
2254
2255 int in_gate_area_no_task(unsigned long addr)
2256 {
2257 #ifdef AT_SYSINFO_EHDR
2258         if ((addr >= FIXADDR_USER_START) && (addr < FIXADDR_USER_END))
2259                 return 1;
2260 #endif
2261         return 0;
2262 }
2263
2264 #endif  /* __HAVE_ARCH_GATE_AREA */