memory.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:36k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/mm/memory.c
  3.  *
  4.  *  Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
  5.  */
  6. /*
  7.  * demand-loading started 01.12.91 - seems it is high on the list of
  8.  * things wanted, and it should be easy to implement. - Linus
  9.  */
  10. /*
  11.  * Ok, demand-loading was easy, shared pages a little bit tricker. Shared
  12.  * pages started 02.12.91, seems to work. - Linus.
  13.  *
  14.  * Tested sharing by executing about 30 /bin/sh: under the old kernel it
  15.  * would have taken more than the 6M I have free, but it worked well as
  16.  * far as I could see.
  17.  *
  18.  * Also corrected some "invalidate()"s - I wasn't doing enough of them.
  19.  */
  20. /*
  21.  * Real VM (paging to/from disk) started 18.12.91. Much more work and
  22.  * thought has to go into this. Oh, well..
  23.  * 19.12.91  -  works, somewhat. Sometimes I get faults, don't know why.
  24.  * Found it. Everything seems to work now.
  25.  * 20.12.91  -  Ok, making the swap-device changeable like the root.
  26.  */
  27. /*
  28.  * 05.04.94  -  Multi-page memory management added for v1.1.
  29.  *  Idea by Alex Bligh (alex@cconcepts.co.uk)
  30.  *
  31.  * 16.07.99  -  Support of BIGMEM added by Gerhard Wichert, Siemens AG
  32.  * (Gerhard.Wichert@pdb.siemens.de)
  33.  */
  34. #include <linux/mm.h>
  35. #include <linux/mman.h>
  36. #include <linux/swap.h>
  37. #include <linux/smp_lock.h>
  38. #include <linux/swapctl.h>
  39. #include <linux/iobuf.h>
  40. #include <linux/highmem.h>
  41. #include <linux/pagemap.h>
  42. #include <asm/pgalloc.h>
  43. #include <asm/uaccess.h>
  44. #include <asm/tlb.h>
  45. unsigned long max_mapnr;
  46. unsigned long num_physpages;
  47. void * high_memory;
  48. struct page *highmem_start_page;
  49. /*
  50.  * We special-case the C-O-W ZERO_PAGE, because it's such
  51.  * a common occurrence (no need to read the page to know
  52.  * that it's zero - better for the cache and memory subsystem).
  53.  */
  54. static inline void copy_cow_page(struct page * from, struct page * to, unsigned long address)
  55. {
  56. if (from == ZERO_PAGE(address)) {
  57. clear_user_highpage(to, address);
  58. return;
  59. }
  60. copy_user_highpage(to, from, address);
  61. }
  62. mem_map_t * mem_map;
  63. /*
  64.  * Called by TLB shootdown 
  65.  */
  66. void __free_pte(pte_t pte)
  67. {
  68. struct page *page = pte_page(pte);
  69. if ((!VALID_PAGE(page)) || PageReserved(page))
  70. return;
  71. if (pte_dirty(pte))
  72. set_page_dirty(page);
  73. free_page_and_swap_cache(page);
  74. }
  75. /*
  76.  * Note: this doesn't free the actual pages themselves. That
  77.  * has been handled earlier when unmapping all the memory regions.
  78.  */
  79. static inline void free_one_pmd(pmd_t * dir)
  80. {
  81. pte_t * pte;
  82. if (pmd_none(*dir))
  83. return;
  84. if (pmd_bad(*dir)) {
  85. pmd_ERROR(*dir);
  86. pmd_clear(dir);
  87. return;
  88. }
  89. pte = pte_offset(dir, 0);
  90. pmd_clear(dir);
  91. pte_free(pte);
  92. }
  93. static inline void free_one_pgd(pgd_t * dir)
  94. {
  95. int j;
  96. pmd_t * pmd;
  97. if (pgd_none(*dir))
  98. return;
  99. if (pgd_bad(*dir)) {
  100. pgd_ERROR(*dir);
  101. pgd_clear(dir);
  102. return;
  103. }
  104. pmd = pmd_offset(dir, 0);
  105. pgd_clear(dir);
  106. for (j = 0; j < PTRS_PER_PMD ; j++) {
  107. prefetchw(pmd+j+(PREFETCH_STRIDE/16));
  108. free_one_pmd(pmd+j);
  109. }
  110. pmd_free(pmd);
  111. }
  112. /* Low and high watermarks for page table cache.
  113.    The system should try to have pgt_water[0] <= cache elements <= pgt_water[1]
  114.  */
  115. int pgt_cache_water[2] = { 25, 50 };
  116. /* Returns the number of pages freed */
  117. int check_pgt_cache(void)
  118. {
  119. return do_check_pgt_cache(pgt_cache_water[0], pgt_cache_water[1]);
  120. }
  121. /*
  122.  * This function clears all user-level page tables of a process - this
  123.  * is needed by execve(), so that old pages aren't in the way.
  124.  */
  125. void clear_page_tables(struct mm_struct *mm, unsigned long first, int nr)
  126. {
  127. pgd_t * page_dir = mm->pgd;
  128. spin_lock(&mm->page_table_lock);
  129. page_dir += first;
  130. do {
  131. free_one_pgd(page_dir);
  132. page_dir++;
  133. } while (--nr);
  134. spin_unlock(&mm->page_table_lock);
  135. /* keep the page table cache within bounds */
  136. check_pgt_cache();
  137. }
  138. #define PTE_TABLE_MASK ((PTRS_PER_PTE-1) * sizeof(pte_t))
  139. #define PMD_TABLE_MASK ((PTRS_PER_PMD-1) * sizeof(pmd_t))
  140. /*
  141.  * copy one vm_area from one task to the other. Assumes the page tables
  142.  * already present in the new task to be cleared in the whole range
  143.  * covered by this vma.
  144.  *
  145.  * 08Jan98 Merged into one routine from several inline routines to reduce
  146.  *         variable count and make things faster. -jj
  147.  *
  148.  * dst->page_table_lock is held on entry and exit,
  149.  * but may be dropped within pmd_alloc() and pte_alloc().
  150.  */
  151. int copy_page_range(struct mm_struct *dst, struct mm_struct *src,
  152. struct vm_area_struct *vma)
  153. {
  154. pgd_t * src_pgd, * dst_pgd;
  155. unsigned long address = vma->vm_start;
  156. unsigned long end = vma->vm_end;
  157. unsigned long cow = (vma->vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE;
  158. src_pgd = pgd_offset(src, address)-1;
  159. dst_pgd = pgd_offset(dst, address)-1;
  160. for (;;) {
  161. pmd_t * src_pmd, * dst_pmd;
  162. src_pgd++; dst_pgd++;
  163. /* copy_pmd_range */
  164. if (pgd_none(*src_pgd))
  165. goto skip_copy_pmd_range;
  166. if (pgd_bad(*src_pgd)) {
  167. pgd_ERROR(*src_pgd);
  168. pgd_clear(src_pgd);
  169. skip_copy_pmd_range: address = (address + PGDIR_SIZE) & PGDIR_MASK;
  170. if (!address || (address >= end))
  171. goto out;
  172. continue;
  173. }
  174. src_pmd = pmd_offset(src_pgd, address);
  175. dst_pmd = pmd_alloc(dst, dst_pgd, address);
  176. if (!dst_pmd)
  177. goto nomem;
  178. do {
  179. pte_t * src_pte, * dst_pte;
  180. /* copy_pte_range */
  181. if (pmd_none(*src_pmd))
  182. goto skip_copy_pte_range;
  183. if (pmd_bad(*src_pmd)) {
  184. pmd_ERROR(*src_pmd);
  185. pmd_clear(src_pmd);
  186. skip_copy_pte_range: address = (address + PMD_SIZE) & PMD_MASK;
  187. if (address >= end)
  188. goto out;
  189. goto cont_copy_pmd_range;
  190. }
  191. src_pte = pte_offset(src_pmd, address);
  192. dst_pte = pte_alloc(dst, dst_pmd, address);
  193. if (!dst_pte)
  194. goto nomem;
  195. spin_lock(&src->page_table_lock);
  196. do {
  197. pte_t pte = *src_pte;
  198. struct page *ptepage;
  199. /* copy_one_pte */
  200. if (pte_none(pte))
  201. goto cont_copy_pte_range_noset;
  202. if (!pte_present(pte)) {
  203. swap_duplicate(pte_to_swp_entry(pte));
  204. goto cont_copy_pte_range;
  205. }
  206. ptepage = pte_page(pte);
  207. if ((!VALID_PAGE(ptepage)) || 
  208.     PageReserved(ptepage))
  209. goto cont_copy_pte_range;
  210. /* If it's a COW mapping, write protect it both in the parent and the child */
  211. if (cow && pte_write(pte)) {
  212. ptep_set_wrprotect(src_pte);
  213. pte = *src_pte;
  214. }
  215. /* If it's a shared mapping, mark it clean in the child */
  216. if (vma->vm_flags & VM_SHARED)
  217. pte = pte_mkclean(pte);
  218. pte = pte_mkold(pte);
  219. get_page(ptepage);
  220. dst->rss++;
  221. cont_copy_pte_range: set_pte(dst_pte, pte);
  222. cont_copy_pte_range_noset: address += PAGE_SIZE;
  223. if (address >= end)
  224. goto out_unlock;
  225. src_pte++;
  226. dst_pte++;
  227. } while ((unsigned long)src_pte & PTE_TABLE_MASK);
  228. spin_unlock(&src->page_table_lock);
  229. cont_copy_pmd_range: src_pmd++;
  230. dst_pmd++;
  231. } while ((unsigned long)src_pmd & PMD_TABLE_MASK);
  232. }
  233. out_unlock:
  234. spin_unlock(&src->page_table_lock);
  235. out:
  236. return 0;
  237. nomem:
  238. return -ENOMEM;
  239. }
  240. /*
  241.  * Return indicates whether a page was freed so caller can adjust rss
  242.  */
  243. static inline void forget_pte(pte_t page)
  244. {
  245. if (!pte_none(page)) {
  246. printk("forget_pte: old mapping existed!n");
  247. BUG();
  248. }
  249. }
  250. static inline int zap_pte_range(mmu_gather_t *tlb, pmd_t * pmd, unsigned long address, unsigned long size)
  251. {
  252. unsigned long offset;
  253. pte_t * ptep;
  254. int freed = 0;
  255. if (pmd_none(*pmd))
  256. return 0;
  257. if (pmd_bad(*pmd)) {
  258. pmd_ERROR(*pmd);
  259. pmd_clear(pmd);
  260. return 0;
  261. }
  262. ptep = pte_offset(pmd, address);
  263. offset = address & ~PMD_MASK;
  264. if (offset + size > PMD_SIZE)
  265. size = PMD_SIZE - offset;
  266. size &= PAGE_MASK;
  267. for (offset=0; offset < size; ptep++, offset += PAGE_SIZE) {
  268. pte_t pte = *ptep;
  269. if (pte_none(pte))
  270. continue;
  271. if (pte_present(pte)) {
  272. struct page *page = pte_page(pte);
  273. if (VALID_PAGE(page) && !PageReserved(page))
  274. freed ++;
  275. /* This will eventually call __free_pte on the pte. */
  276. tlb_remove_page(tlb, ptep, address + offset);
  277. } else {
  278. free_swap_and_cache(pte_to_swp_entry(pte));
  279. pte_clear(ptep);
  280. }
  281. }
  282. return freed;
  283. }
  284. static inline int zap_pmd_range(mmu_gather_t *tlb, pgd_t * dir, unsigned long address, unsigned long size)
  285. {
  286. pmd_t * pmd;
  287. unsigned long end;
  288. int freed;
  289. if (pgd_none(*dir))
  290. return 0;
  291. if (pgd_bad(*dir)) {
  292. pgd_ERROR(*dir);
  293. pgd_clear(dir);
  294. return 0;
  295. }
  296. pmd = pmd_offset(dir, address);
  297. end = address + size;
  298. if (end > ((address + PGDIR_SIZE) & PGDIR_MASK))
  299. end = ((address + PGDIR_SIZE) & PGDIR_MASK);
  300. freed = 0;
  301. do {
  302. freed += zap_pte_range(tlb, pmd, address, end - address);
  303. address = (address + PMD_SIZE) & PMD_MASK; 
  304. pmd++;
  305. } while (address < end);
  306. return freed;
  307. }
  308. void unmap_page_range(mmu_gather_t *tlb, struct mm_struct *mm, unsigned long address, unsigned long end)
  309. {
  310. int freed = 0;
  311. pgd_t * dir;
  312. if (address >= end)
  313. BUG();
  314. dir = pgd_offset(mm, address);
  315. do {
  316. freed += zap_pmd_range(tlb, dir, address, end - address);
  317. address = (address + PGDIR_SIZE) & PGDIR_MASK;
  318. dir++;
  319. } while (address && (address < end));
  320. /*
  321.  * Update rss for the mm_struct (not necessarily current->mm)
  322.  * Notice that rss is an unsigned long.
  323.  */
  324. if (mm->rss > freed)
  325. mm->rss -= freed;
  326. else
  327. mm->rss = 0;
  328. }
  329. /*
  330.  * remove user pages in a given range.
  331.  */
  332. void zap_page_range(struct mm_struct *mm, unsigned long address, unsigned long size)
  333. {
  334. unsigned long start = address, end = address + size;
  335. mmu_gather_t *tlb;
  336. /*
  337.  * This is a long-lived spinlock. That's fine.
  338.  * There's no contention, because the page table
  339.  * lock only protects against kswapd anyway, and
  340.  * even if kswapd happened to be looking at this
  341.  * process we _want_ it to get stuck.
  342.  */
  343. if (address >= end)
  344. BUG();
  345. spin_lock(&mm->page_table_lock);
  346. flush_cache_range(mm, address, end);
  347. tlb = tlb_gather_mmu(mm);
  348. unmap_page_range(tlb, mm, address, end);
  349. tlb_finish_mmu(tlb, start, end);
  350. spin_unlock(&mm->page_table_lock);
  351. }
  352. /*
  353.  * Do a quick page-table lookup for a single page. 
  354.  */
  355. static struct page * follow_page(struct mm_struct *mm, unsigned long address, int write) 
  356. {
  357. pgd_t *pgd;
  358. pmd_t *pmd;
  359. pte_t *ptep, pte;
  360. pgd = pgd_offset(mm, address);
  361. if (pgd_none(*pgd) || pgd_bad(*pgd))
  362. goto out;
  363. pmd = pmd_offset(pgd, address);
  364. if (pmd_none(*pmd) || pmd_bad(*pmd))
  365. goto out;
  366. ptep = pte_offset(pmd, address);
  367. if (!ptep)
  368. goto out;
  369. pte = *ptep;
  370. if (pte_present(pte)) {
  371. if (!write ||
  372.     (pte_write(pte) && pte_dirty(pte)))
  373. return pte_page(pte);
  374. }
  375. out:
  376. return 0;
  377. }
  378. /* 
  379.  * Given a physical address, is there a useful struct page pointing to
  380.  * it?  This may become more complex in the future if we start dealing
  381.  * with IO-aperture pages in kiobufs.
  382.  */
  383. static inline struct page * get_page_map(struct page *page)
  384. {
  385. if (!VALID_PAGE(page))
  386. return 0;
  387. return page;
  388. }
  389. /*
  390.  * Please read Documentation/cachetlb.txt before using this function,
  391.  * accessing foreign memory spaces can cause cache coherency problems.
  392.  *
  393.  * Accessing a VM_IO area is even more dangerous, therefore the function
  394.  * fails if pages is != NULL and a VM_IO area is found.
  395.  */
  396. int get_user_pages(struct task_struct *tsk, struct mm_struct *mm, unsigned long start,
  397. int len, int write, int force, struct page **pages, struct vm_area_struct **vmas)
  398. {
  399. int i;
  400. unsigned int flags;
  401. /*
  402.  * Require read or write permissions.
  403.  * If 'force' is set, we only require the "MAY" flags.
  404.  */
  405. flags = write ? (VM_WRITE | VM_MAYWRITE) : (VM_READ | VM_MAYREAD);
  406. flags &= force ? (VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
  407. i = 0;
  408. do {
  409. struct vm_area_struct * vma;
  410. vma = find_extend_vma(mm, start);
  411. if ( !vma || (pages && vma->vm_flags & VM_IO) || !(flags & vma->vm_flags) )
  412. return i ? : -EFAULT;
  413. spin_lock(&mm->page_table_lock);
  414. do {
  415. struct page *map;
  416. while (!(map = follow_page(mm, start, write))) {
  417. spin_unlock(&mm->page_table_lock);
  418. switch (handle_mm_fault(mm, vma, start, write)) {
  419. case 1:
  420. tsk->min_flt++;
  421. break;
  422. case 2:
  423. tsk->maj_flt++;
  424. break;
  425. case 0:
  426. if (i) return i;
  427. return -EFAULT;
  428. default:
  429. if (i) return i;
  430. return -ENOMEM;
  431. }
  432. spin_lock(&mm->page_table_lock);
  433. }
  434. if (pages) {
  435. pages[i] = get_page_map(map);
  436. /* FIXME: call the correct function,
  437.  * depending on the type of the found page
  438.  */
  439. if (!pages[i])
  440. goto bad_page;
  441. page_cache_get(pages[i]);
  442. }
  443. if (vmas)
  444. vmas[i] = vma;
  445. i++;
  446. start += PAGE_SIZE;
  447. len--;
  448. } while(len && start < vma->vm_end);
  449. spin_unlock(&mm->page_table_lock);
  450. } while(len);
  451. out:
  452. return i;
  453. /*
  454.  * We found an invalid page in the VMA.  Release all we have
  455.  * so far and fail.
  456.  */
  457. bad_page:
  458. spin_unlock(&mm->page_table_lock);
  459. while (i--)
  460. page_cache_release(pages[i]);
  461. i = -EFAULT;
  462. goto out;
  463. }
  464. /*
  465.  * Force in an entire range of pages from the current process's user VA,
  466.  * and pin them in physical memory.  
  467.  */
  468. #define dprintk(x...)
  469. int map_user_kiobuf(int rw, struct kiobuf *iobuf, unsigned long va, size_t len)
  470. {
  471. int pgcount, err;
  472. struct mm_struct * mm;
  473. /* Make sure the iobuf is not already mapped somewhere. */
  474. if (iobuf->nr_pages)
  475. return -EINVAL;
  476. mm = current->mm;
  477. dprintk ("map_user_kiobuf: beginn");
  478. pgcount = (va + len + PAGE_SIZE - 1)/PAGE_SIZE - va/PAGE_SIZE;
  479. /* mapping 0 bytes is not permitted */
  480. if (!pgcount) BUG();
  481. err = expand_kiobuf(iobuf, pgcount);
  482. if (err)
  483. return err;
  484. iobuf->locked = 0;
  485. iobuf->offset = va & (PAGE_SIZE-1);
  486. iobuf->length = len;
  487. /* Try to fault in all of the necessary pages */
  488. down_read(&mm->mmap_sem);
  489. /* rw==READ means read from disk, write into memory area */
  490. err = get_user_pages(current, mm, va, pgcount,
  491. (rw==READ), 0, iobuf->maplist, NULL);
  492. up_read(&mm->mmap_sem);
  493. if (err < 0) {
  494. unmap_kiobuf(iobuf);
  495. dprintk ("map_user_kiobuf: end %dn", err);
  496. return err;
  497. }
  498. iobuf->nr_pages = err;
  499. while (pgcount--) {
  500. /* FIXME: flush superflous for rw==READ,
  501.  * probably wrong function for rw==WRITE
  502.  */
  503. flush_dcache_page(iobuf->maplist[pgcount]);
  504. }
  505. dprintk ("map_user_kiobuf: end OKn");
  506. return 0;
  507. }
  508. /*
  509.  * Mark all of the pages in a kiobuf as dirty 
  510.  *
  511.  * We need to be able to deal with short reads from disk: if an IO error
  512.  * occurs, the number of bytes read into memory may be less than the
  513.  * size of the kiobuf, so we have to stop marking pages dirty once the
  514.  * requested byte count has been reached.
  515.  */
  516. void mark_dirty_kiobuf(struct kiobuf *iobuf, int bytes)
  517. {
  518. int index, offset, remaining;
  519. struct page *page;
  520. index = iobuf->offset >> PAGE_SHIFT;
  521. offset = iobuf->offset & ~PAGE_MASK;
  522. remaining = bytes;
  523. if (remaining > iobuf->length)
  524. remaining = iobuf->length;
  525. while (remaining > 0 && index < iobuf->nr_pages) {
  526. page = iobuf->maplist[index];
  527. if (!PageReserved(page))
  528. SetPageDirty(page);
  529. remaining -= (PAGE_SIZE - offset);
  530. offset = 0;
  531. index++;
  532. }
  533. }
  534. /*
  535.  * Unmap all of the pages referenced by a kiobuf.  We release the pages,
  536.  * and unlock them if they were locked. 
  537.  */
  538. void unmap_kiobuf (struct kiobuf *iobuf) 
  539. {
  540. int i;
  541. struct page *map;
  542. for (i = 0; i < iobuf->nr_pages; i++) {
  543. map = iobuf->maplist[i];
  544. if (map) {
  545. if (iobuf->locked)
  546. UnlockPage(map);
  547. /* FIXME: cache flush missing for rw==READ
  548.  * FIXME: call the correct reference counting function
  549.  */
  550. page_cache_release(map);
  551. }
  552. }
  553. iobuf->nr_pages = 0;
  554. iobuf->locked = 0;
  555. }
  556. /*
  557.  * Lock down all of the pages of a kiovec for IO.
  558.  *
  559.  * If any page is mapped twice in the kiovec, we return the error -EINVAL.
  560.  *
  561.  * The optional wait parameter causes the lock call to block until all
  562.  * pages can be locked if set.  If wait==0, the lock operation is
  563.  * aborted if any locked pages are found and -EAGAIN is returned.
  564.  */
  565. int lock_kiovec(int nr, struct kiobuf *iovec[], int wait)
  566. {
  567. struct kiobuf *iobuf;
  568. int i, j;
  569. struct page *page, **ppage;
  570. int doublepage = 0;
  571. int repeat = 0;
  572.  repeat:
  573. for (i = 0; i < nr; i++) {
  574. iobuf = iovec[i];
  575. if (iobuf->locked)
  576. continue;
  577. ppage = iobuf->maplist;
  578. for (j = 0; j < iobuf->nr_pages; ppage++, j++) {
  579. page = *ppage;
  580. if (!page)
  581. continue;
  582. if (TryLockPage(page)) {
  583. while (j--) {
  584. struct page *tmp = *--ppage;
  585. if (tmp)
  586. UnlockPage(tmp);
  587. }
  588. goto retry;
  589. }
  590. }
  591. iobuf->locked = 1;
  592. }
  593. return 0;
  594.  retry:
  595. /* 
  596.  * We couldn't lock one of the pages.  Undo the locking so far,
  597.  * wait on the page we got to, and try again.  
  598.  */
  599. unlock_kiovec(nr, iovec);
  600. if (!wait)
  601. return -EAGAIN;
  602. /* 
  603.  * Did the release also unlock the page we got stuck on?
  604.  */
  605. if (!PageLocked(page)) {
  606. /* 
  607.  * If so, we may well have the page mapped twice
  608.  * in the IO address range.  Bad news.  Of
  609.  * course, it _might_ just be a coincidence,
  610.  * but if it happens more than once, chances
  611.  * are we have a double-mapped page. 
  612.  */
  613. if (++doublepage >= 3) 
  614. return -EINVAL;
  615. /* Try again...  */
  616. wait_on_page(page);
  617. }
  618. if (++repeat < 16)
  619. goto repeat;
  620. return -EAGAIN;
  621. }
  622. /*
  623.  * Unlock all of the pages of a kiovec after IO.
  624.  */
  625. int unlock_kiovec(int nr, struct kiobuf *iovec[])
  626. {
  627. struct kiobuf *iobuf;
  628. int i, j;
  629. struct page *page, **ppage;
  630. for (i = 0; i < nr; i++) {
  631. iobuf = iovec[i];
  632. if (!iobuf->locked)
  633. continue;
  634. iobuf->locked = 0;
  635. ppage = iobuf->maplist;
  636. for (j = 0; j < iobuf->nr_pages; ppage++, j++) {
  637. page = *ppage;
  638. if (!page)
  639. continue;
  640. UnlockPage(page);
  641. }
  642. }
  643. return 0;
  644. }
  645. static inline void zeromap_pte_range(pte_t * pte, unsigned long address,
  646.                                      unsigned long size, pgprot_t prot)
  647. {
  648. unsigned long end;
  649. address &= ~PMD_MASK;
  650. end = address + size;
  651. if (end > PMD_SIZE)
  652. end = PMD_SIZE;
  653. do {
  654. pte_t zero_pte = pte_wrprotect(mk_pte(ZERO_PAGE(address), prot));
  655. pte_t oldpage = ptep_get_and_clear(pte);
  656. set_pte(pte, zero_pte);
  657. forget_pte(oldpage);
  658. address += PAGE_SIZE;
  659. pte++;
  660. } while (address && (address < end));
  661. }
  662. static inline int zeromap_pmd_range(struct mm_struct *mm, pmd_t * pmd, unsigned long address,
  663.                                     unsigned long size, pgprot_t prot)
  664. {
  665. unsigned long end;
  666. address &= ~PGDIR_MASK;
  667. end = address + size;
  668. if (end > PGDIR_SIZE)
  669. end = PGDIR_SIZE;
  670. do {
  671. pte_t * pte = pte_alloc(mm, pmd, address);
  672. if (!pte)
  673. return -ENOMEM;
  674. zeromap_pte_range(pte, address, end - address, prot);
  675. address = (address + PMD_SIZE) & PMD_MASK;
  676. pmd++;
  677. } while (address && (address < end));
  678. return 0;
  679. }
  680. int zeromap_page_range(unsigned long address, unsigned long size, pgprot_t prot)
  681. {
  682. int error = 0;
  683. pgd_t * dir;
  684. unsigned long beg = address;
  685. unsigned long end = address + size;
  686. struct mm_struct *mm = current->mm;
  687. dir = pgd_offset(mm, address);
  688. flush_cache_range(mm, beg, end);
  689. if (address >= end)
  690. BUG();
  691. spin_lock(&mm->page_table_lock);
  692. do {
  693. pmd_t *pmd = pmd_alloc(mm, dir, address);
  694. error = -ENOMEM;
  695. if (!pmd)
  696. break;
  697. error = zeromap_pmd_range(mm, pmd, address, end - address, prot);
  698. if (error)
  699. break;
  700. address = (address + PGDIR_SIZE) & PGDIR_MASK;
  701. dir++;
  702. } while (address && (address < end));
  703. spin_unlock(&mm->page_table_lock);
  704. flush_tlb_range(mm, beg, end);
  705. return error;
  706. }
  707. /*
  708.  * maps a range of physical memory into the requested pages. the old
  709.  * mappings are removed. any references to nonexistent pages results
  710.  * in null mappings (currently treated as "copy-on-access")
  711.  */
  712. static inline void remap_pte_range(pte_t * pte, unsigned long address, unsigned long size,
  713. unsigned long phys_addr, pgprot_t prot)
  714. {
  715. unsigned long end;
  716. address &= ~PMD_MASK;
  717. end = address + size;
  718. if (end > PMD_SIZE)
  719. end = PMD_SIZE;
  720. do {
  721. struct page *page;
  722. pte_t oldpage;
  723. oldpage = ptep_get_and_clear(pte);
  724. page = virt_to_page(__va(phys_addr));
  725. if ((!VALID_PAGE(page)) || PageReserved(page))
  726.   set_pte(pte, mk_pte_phys(phys_addr, prot));
  727. forget_pte(oldpage);
  728. address += PAGE_SIZE;
  729. phys_addr += PAGE_SIZE;
  730. pte++;
  731. } while (address && (address < end));
  732. }
  733. static inline int remap_pmd_range(struct mm_struct *mm, pmd_t * pmd, unsigned long address, unsigned long size,
  734. unsigned long phys_addr, pgprot_t prot)
  735. {
  736. unsigned long end;
  737. address &= ~PGDIR_MASK;
  738. end = address + size;
  739. if (end > PGDIR_SIZE)
  740. end = PGDIR_SIZE;
  741. phys_addr -= address;
  742. do {
  743. pte_t * pte = pte_alloc(mm, pmd, address);
  744. if (!pte)
  745. return -ENOMEM;
  746. remap_pte_range(pte, address, end - address, address + phys_addr, prot);
  747. address = (address + PMD_SIZE) & PMD_MASK;
  748. pmd++;
  749. } while (address && (address < end));
  750. return 0;
  751. }
  752. /*  Note: this is only safe if the mm semaphore is held when called. */
  753. int remap_page_range(unsigned long from, unsigned long phys_addr, unsigned long size, pgprot_t prot)
  754. {
  755. int error = 0;
  756. pgd_t * dir;
  757. unsigned long beg = from;
  758. unsigned long end = from + size;
  759. struct mm_struct *mm = current->mm;
  760. phys_addr -= from;
  761. dir = pgd_offset(mm, from);
  762. flush_cache_range(mm, beg, end);
  763. if (from >= end)
  764. BUG();
  765. spin_lock(&mm->page_table_lock);
  766. do {
  767. pmd_t *pmd = pmd_alloc(mm, dir, from);
  768. error = -ENOMEM;
  769. if (!pmd)
  770. break;
  771. error = remap_pmd_range(mm, pmd, from, end - from, phys_addr + from, prot);
  772. if (error)
  773. break;
  774. from = (from + PGDIR_SIZE) & PGDIR_MASK;
  775. dir++;
  776. } while (from && (from < end));
  777. spin_unlock(&mm->page_table_lock);
  778. flush_tlb_range(mm, beg, end);
  779. return error;
  780. }
  781. /*
  782.  * Establish a new mapping:
  783.  *  - flush the old one
  784.  *  - update the page tables
  785.  *  - inform the TLB about the new one
  786.  *
  787.  * We hold the mm semaphore for reading and vma->vm_mm->page_table_lock
  788.  */
  789. static inline void establish_pte(struct vm_area_struct * vma, unsigned long address, pte_t *page_table, pte_t entry)
  790. {
  791. set_pte(page_table, entry);
  792. flush_tlb_page(vma, address);
  793. update_mmu_cache(vma, address, entry);
  794. }
  795. /*
  796.  * We hold the mm semaphore for reading and vma->vm_mm->page_table_lock
  797.  */
  798. static inline void break_cow(struct vm_area_struct * vma, struct page * new_page, unsigned long address, 
  799. pte_t *page_table)
  800. {
  801. flush_page_to_ram(new_page);
  802. flush_cache_page(vma, address);
  803. establish_pte(vma, address, page_table, pte_mkwrite(pte_mkdirty(mk_pte(new_page, vma->vm_page_prot))));
  804. }
  805. /*
  806.  * This routine handles present pages, when users try to write
  807.  * to a shared page. It is done by copying the page to a new address
  808.  * and decrementing the shared-page counter for the old page.
  809.  *
  810.  * Goto-purists beware: the only reason for goto's here is that it results
  811.  * in better assembly code.. The "default" path will see no jumps at all.
  812.  *
  813.  * Note that this routine assumes that the protection checks have been
  814.  * done by the caller (the low-level page fault routine in most cases).
  815.  * Thus we can safely just mark it writable once we've done any necessary
  816.  * COW.
  817.  *
  818.  * We also mark the page dirty at this point even though the page will
  819.  * change only once the write actually happens. This avoids a few races,
  820.  * and potentially makes it more efficient.
  821.  *
  822.  * We hold the mm semaphore and the page_table_lock on entry and exit
  823.  * with the page_table_lock released.
  824.  */
  825. static int do_wp_page(struct mm_struct *mm, struct vm_area_struct * vma,
  826. unsigned long address, pte_t *page_table, pte_t pte)
  827. {
  828. struct page *old_page, *new_page;
  829. old_page = pte_page(pte);
  830. if (!VALID_PAGE(old_page))
  831. goto bad_wp_page;
  832. if (!TryLockPage(old_page)) {
  833. int reuse = can_share_swap_page(old_page);
  834. unlock_page(old_page);
  835. if (reuse) {
  836. flush_cache_page(vma, address);
  837. establish_pte(vma, address, page_table, pte_mkyoung(pte_mkdirty(pte_mkwrite(pte))));
  838. spin_unlock(&mm->page_table_lock);
  839. return 1; /* Minor fault */
  840. }
  841. }
  842. /*
  843.  * Ok, we need to copy. Oh, well..
  844.  */
  845. page_cache_get(old_page);
  846. spin_unlock(&mm->page_table_lock);
  847. new_page = alloc_page(GFP_HIGHUSER);
  848. if (!new_page)
  849. goto no_mem;
  850. copy_cow_page(old_page,new_page,address);
  851. /*
  852.  * Re-check the pte - we dropped the lock
  853.  */
  854. spin_lock(&mm->page_table_lock);
  855. if (pte_same(*page_table, pte)) {
  856. if (PageReserved(old_page))
  857. ++mm->rss;
  858. break_cow(vma, new_page, address, page_table);
  859. lru_cache_add(new_page);
  860. /* Free the old page.. */
  861. new_page = old_page;
  862. }
  863. spin_unlock(&mm->page_table_lock);
  864. page_cache_release(new_page);
  865. page_cache_release(old_page);
  866. return 1; /* Minor fault */
  867. bad_wp_page:
  868. spin_unlock(&mm->page_table_lock);
  869. printk("do_wp_page: bogus page at address %08lx (page 0x%lx)n",address,(unsigned long)old_page);
  870. return -1;
  871. no_mem:
  872. page_cache_release(old_page);
  873. return -1;
  874. }
  875. static void vmtruncate_list(struct vm_area_struct *mpnt, unsigned long pgoff)
  876. {
  877. do {
  878. struct mm_struct *mm = mpnt->vm_mm;
  879. unsigned long start = mpnt->vm_start;
  880. unsigned long end = mpnt->vm_end;
  881. unsigned long len = end - start;
  882. unsigned long diff;
  883. /* mapping wholly truncated? */
  884. if (mpnt->vm_pgoff >= pgoff) {
  885. zap_page_range(mm, start, len);
  886. continue;
  887. }
  888. /* mapping wholly unaffected? */
  889. len = len >> PAGE_SHIFT;
  890. diff = pgoff - mpnt->vm_pgoff;
  891. if (diff >= len)
  892. continue;
  893. /* Ok, partially affected.. */
  894. start += diff << PAGE_SHIFT;
  895. len = (len - diff) << PAGE_SHIFT;
  896. zap_page_range(mm, start, len);
  897. } while ((mpnt = mpnt->vm_next_share) != NULL);
  898. }
  899. /*
  900.  * Handle all mappings that got truncated by a "truncate()"
  901.  * system call.
  902.  *
  903.  * NOTE! We have to be ready to update the memory sharing
  904.  * between the file and the memory map for a potential last
  905.  * incomplete page.  Ugly, but necessary.
  906.  */
  907. int vmtruncate(struct inode * inode, loff_t offset)
  908. {
  909. unsigned long pgoff;
  910. struct address_space *mapping = inode->i_mapping;
  911. unsigned long limit;
  912. if (inode->i_size < offset)
  913. goto do_expand;
  914. inode->i_size = offset;
  915. spin_lock(&mapping->i_shared_lock);
  916. if (!mapping->i_mmap && !mapping->i_mmap_shared)
  917. goto out_unlock;
  918. pgoff = (offset + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
  919. if (mapping->i_mmap != NULL)
  920. vmtruncate_list(mapping->i_mmap, pgoff);
  921. if (mapping->i_mmap_shared != NULL)
  922. vmtruncate_list(mapping->i_mmap_shared, pgoff);
  923. out_unlock:
  924. spin_unlock(&mapping->i_shared_lock);
  925. truncate_inode_pages(mapping, offset);
  926. goto out_truncate;
  927. do_expand:
  928. limit = current->rlim[RLIMIT_FSIZE].rlim_cur;
  929. if (limit != RLIM_INFINITY && offset > limit)
  930. goto out_sig;
  931. if (offset > inode->i_sb->s_maxbytes)
  932. goto out;
  933. inode->i_size = offset;
  934. out_truncate:
  935. if (inode->i_op && inode->i_op->truncate) {
  936. lock_kernel();
  937. inode->i_op->truncate(inode);
  938. unlock_kernel();
  939. }
  940. return 0;
  941. out_sig:
  942. send_sig(SIGXFSZ, current, 0);
  943. out:
  944. return -EFBIG;
  945. }
  946. /* 
  947.  * Primitive swap readahead code. We simply read an aligned block of
  948.  * (1 << page_cluster) entries in the swap area. This method is chosen
  949.  * because it doesn't cost us any seek time.  We also make sure to queue
  950.  * the 'original' request together with the readahead ones...  
  951.  */
  952. void swapin_readahead(swp_entry_t entry)
  953. {
  954. int i, num;
  955. struct page *new_page;
  956. unsigned long offset;
  957. /*
  958.  * Get the number of handles we should do readahead io to.
  959.  */
  960. num = valid_swaphandles(entry, &offset);
  961. for (i = 0; i < num; offset++, i++) {
  962. /* Ok, do the async read-ahead now */
  963. new_page = read_swap_cache_async(SWP_ENTRY(SWP_TYPE(entry), offset));
  964. if (!new_page)
  965. break;
  966. page_cache_release(new_page);
  967. }
  968. return;
  969. }
  970. /*
  971.  * We hold the mm semaphore and the page_table_lock on entry and
  972.  * should release the pagetable lock on exit..
  973.  */
  974. static int do_swap_page(struct mm_struct * mm,
  975. struct vm_area_struct * vma, unsigned long address,
  976. pte_t * page_table, pte_t orig_pte, int write_access)
  977. {
  978. struct page *page;
  979. swp_entry_t entry = pte_to_swp_entry(orig_pte);
  980. pte_t pte;
  981. int ret = 1;
  982. spin_unlock(&mm->page_table_lock);
  983. page = lookup_swap_cache(entry);
  984. if (!page) {
  985. swapin_readahead(entry);
  986. page = read_swap_cache_async(entry);
  987. if (!page) {
  988. /*
  989.  * Back out if somebody else faulted in this pte while
  990.  * we released the page table lock.
  991.  */
  992. int retval;
  993. spin_lock(&mm->page_table_lock);
  994. retval = pte_same(*page_table, orig_pte) ? -1 : 1;
  995. spin_unlock(&mm->page_table_lock);
  996. return retval;
  997. }
  998. /* Had to read the page from swap area: Major fault */
  999. ret = 2;
  1000. }
  1001. mark_page_accessed(page);
  1002. lock_page(page);
  1003. /*
  1004.  * Back out if somebody else faulted in this pte while we
  1005.  * released the page table lock.
  1006.  */
  1007. spin_lock(&mm->page_table_lock);
  1008. if (!pte_same(*page_table, orig_pte)) {
  1009. spin_unlock(&mm->page_table_lock);
  1010. unlock_page(page);
  1011. page_cache_release(page);
  1012. return 1;
  1013. }
  1014. /* The page isn't present yet, go ahead with the fault. */
  1015. swap_free(entry);
  1016. if (vm_swap_full())
  1017. remove_exclusive_swap_page(page);
  1018. mm->rss++;
  1019. pte = mk_pte(page, vma->vm_page_prot);
  1020. if (write_access && can_share_swap_page(page))
  1021. pte = pte_mkdirty(pte_mkwrite(pte));
  1022. unlock_page(page);
  1023. flush_page_to_ram(page);
  1024. flush_icache_page(vma, page);
  1025. set_pte(page_table, pte);
  1026. /* No need to invalidate - it was non-present before */
  1027. update_mmu_cache(vma, address, pte);
  1028. spin_unlock(&mm->page_table_lock);
  1029. return ret;
  1030. }
  1031. /*
  1032.  * We are called with the MM semaphore and page_table_lock
  1033.  * spinlock held to protect against concurrent faults in
  1034.  * multithreaded programs. 
  1035.  */
  1036. static int do_anonymous_page(struct mm_struct * mm, struct vm_area_struct * vma, pte_t *page_table, int write_access, unsigned long addr)
  1037. {
  1038. pte_t entry;
  1039. /* Read-only mapping of ZERO_PAGE. */
  1040. entry = pte_wrprotect(mk_pte(ZERO_PAGE(addr), vma->vm_page_prot));
  1041. /* ..except if it's a write access */
  1042. if (write_access) {
  1043. struct page *page;
  1044. /* Allocate our own private page. */
  1045. spin_unlock(&mm->page_table_lock);
  1046. page = alloc_page(GFP_HIGHUSER);
  1047. if (!page)
  1048. goto no_mem;
  1049. clear_user_highpage(page, addr);
  1050. spin_lock(&mm->page_table_lock);
  1051. if (!pte_none(*page_table)) {
  1052. page_cache_release(page);
  1053. spin_unlock(&mm->page_table_lock);
  1054. return 1;
  1055. }
  1056. mm->rss++;
  1057. flush_page_to_ram(page);
  1058. entry = pte_mkwrite(pte_mkdirty(mk_pte(page, vma->vm_page_prot)));
  1059. lru_cache_add(page);
  1060. mark_page_accessed(page);
  1061. }
  1062. set_pte(page_table, entry);
  1063. /* No need to invalidate - it was non-present before */
  1064. update_mmu_cache(vma, addr, entry);
  1065. spin_unlock(&mm->page_table_lock);
  1066. return 1; /* Minor fault */
  1067. no_mem:
  1068. return -1;
  1069. }
  1070. /*
  1071.  * do_no_page() tries to create a new page mapping. It aggressively
  1072.  * tries to share with existing pages, but makes a separate copy if
  1073.  * the "write_access" parameter is true in order to avoid the next
  1074.  * page fault.
  1075.  *
  1076.  * As this is called only for pages that do not currently exist, we
  1077.  * do not need to flush old virtual caches or the TLB.
  1078.  *
  1079.  * This is called with the MM semaphore held and the page table
  1080.  * spinlock held. Exit with the spinlock released.
  1081.  */
  1082. static int do_no_page(struct mm_struct * mm, struct vm_area_struct * vma,
  1083. unsigned long address, int write_access, pte_t *page_table)
  1084. {
  1085. struct page * new_page;
  1086. pte_t entry;
  1087. if (!vma->vm_ops || !vma->vm_ops->nopage)
  1088. return do_anonymous_page(mm, vma, page_table, write_access, address);
  1089. spin_unlock(&mm->page_table_lock);
  1090. new_page = vma->vm_ops->nopage(vma, address & PAGE_MASK, 0);
  1091. if (new_page == NULL) /* no page was available -- SIGBUS */
  1092. return 0;
  1093. if (new_page == NOPAGE_OOM)
  1094. return -1;
  1095. /*
  1096.  * Should we do an early C-O-W break?
  1097.  */
  1098. if (write_access && !(vma->vm_flags & VM_SHARED)) {
  1099. struct page * page = alloc_page(GFP_HIGHUSER);
  1100. if (!page) {
  1101. page_cache_release(new_page);
  1102. return -1;
  1103. }
  1104. copy_user_highpage(page, new_page, address);
  1105. page_cache_release(new_page);
  1106. lru_cache_add(page);
  1107. new_page = page;
  1108. }
  1109. spin_lock(&mm->page_table_lock);
  1110. /*
  1111.  * This silly early PAGE_DIRTY setting removes a race
  1112.  * due to the bad i386 page protection. But it's valid
  1113.  * for other architectures too.
  1114.  *
  1115.  * Note that if write_access is true, we either now have
  1116.  * an exclusive copy of the page, or this is a shared mapping,
  1117.  * so we can make it writable and dirty to avoid having to
  1118.  * handle that later.
  1119.  */
  1120. /* Only go through if we didn't race with anybody else... */
  1121. if (pte_none(*page_table)) {
  1122. ++mm->rss;
  1123. flush_page_to_ram(new_page);
  1124. flush_icache_page(vma, new_page);
  1125. entry = mk_pte(new_page, vma->vm_page_prot);
  1126. if (write_access)
  1127. entry = pte_mkwrite(pte_mkdirty(entry));
  1128. set_pte(page_table, entry);
  1129. } else {
  1130. /* One of our sibling threads was faster, back out. */
  1131. page_cache_release(new_page);
  1132. spin_unlock(&mm->page_table_lock);
  1133. return 1;
  1134. }
  1135. /* no need to invalidate: a not-present page shouldn't be cached */
  1136. update_mmu_cache(vma, address, entry);
  1137. spin_unlock(&mm->page_table_lock);
  1138. return 2; /* Major fault */
  1139. }
  1140. /*
  1141.  * These routines also need to handle stuff like marking pages dirty
  1142.  * and/or accessed for architectures that don't do it in hardware (most
  1143.  * RISC architectures).  The early dirtying is also good on the i386.
  1144.  *
  1145.  * There is also a hook called "update_mmu_cache()" that architectures
  1146.  * with external mmu caches can use to update those (ie the Sparc or
  1147.  * PowerPC hashed page tables that act as extended TLBs).
  1148.  *
  1149.  * Note the "page_table_lock". It is to protect against kswapd removing
  1150.  * pages from under us. Note that kswapd only ever _removes_ pages, never
  1151.  * adds them. As such, once we have noticed that the page is not present,
  1152.  * we can drop the lock early.
  1153.  *
  1154.  * The adding of pages is protected by the MM semaphore (which we hold),
  1155.  * so we don't need to worry about a page being suddenly been added into
  1156.  * our VM.
  1157.  *
  1158.  * We enter with the pagetable spinlock held, we are supposed to
  1159.  * release it when done.
  1160.  */
  1161. static inline int handle_pte_fault(struct mm_struct *mm,
  1162. struct vm_area_struct * vma, unsigned long address,
  1163. int write_access, pte_t * pte)
  1164. {
  1165. pte_t entry;
  1166. entry = *pte;
  1167. if (!pte_present(entry)) {
  1168. /*
  1169.  * If it truly wasn't present, we know that kswapd
  1170.  * and the PTE updates will not touch it later. So
  1171.  * drop the lock.
  1172.  */
  1173. if (pte_none(entry))
  1174. return do_no_page(mm, vma, address, write_access, pte);
  1175. return do_swap_page(mm, vma, address, pte, entry, write_access);
  1176. }
  1177. if (write_access) {
  1178. if (!pte_write(entry))
  1179. return do_wp_page(mm, vma, address, pte, entry);
  1180. entry = pte_mkdirty(entry);
  1181. }
  1182. entry = pte_mkyoung(entry);
  1183. establish_pte(vma, address, pte, entry);
  1184. spin_unlock(&mm->page_table_lock);
  1185. return 1;
  1186. }
  1187. /*
  1188.  * By the time we get here, we already hold the mm semaphore
  1189.  */
  1190. int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct * vma,
  1191. unsigned long address, int write_access)
  1192. {
  1193. pgd_t *pgd;
  1194. pmd_t *pmd;
  1195. current->state = TASK_RUNNING;
  1196. pgd = pgd_offset(mm, address);
  1197. /*
  1198.  * We need the page table lock to synchronize with kswapd
  1199.  * and the SMP-safe atomic PTE updates.
  1200.  */
  1201. spin_lock(&mm->page_table_lock);
  1202. pmd = pmd_alloc(mm, pgd, address);
  1203. if (pmd) {
  1204. pte_t * pte = pte_alloc(mm, pmd, address);
  1205. if (pte)
  1206. return handle_pte_fault(mm, vma, address, write_access, pte);
  1207. }
  1208. spin_unlock(&mm->page_table_lock);
  1209. return -1;
  1210. }
  1211. /*
  1212.  * Allocate page middle directory.
  1213.  *
  1214.  * We've already handled the fast-path in-line, and we own the
  1215.  * page table lock.
  1216.  *
  1217.  * On a two-level page table, this ends up actually being entirely
  1218.  * optimized away.
  1219.  */
  1220. pmd_t *__pmd_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address)
  1221. {
  1222. pmd_t *new;
  1223. /* "fast" allocation can happen without dropping the lock.. */
  1224. new = pmd_alloc_one_fast(mm, address);
  1225. if (!new) {
  1226. spin_unlock(&mm->page_table_lock);
  1227. new = pmd_alloc_one(mm, address);
  1228. spin_lock(&mm->page_table_lock);
  1229. if (!new)
  1230. return NULL;
  1231. /*
  1232.  * Because we dropped the lock, we should re-check the
  1233.  * entry, as somebody else could have populated it..
  1234.  */
  1235. if (!pgd_none(*pgd)) {
  1236. pmd_free(new);
  1237. goto out;
  1238. }
  1239. }
  1240. pgd_populate(mm, pgd, new);
  1241. out:
  1242. return pmd_offset(pgd, address);
  1243. }
  1244. /*
  1245.  * Allocate the page table directory.
  1246.  *
  1247.  * We've already handled the fast-path in-line, and we own the
  1248.  * page table lock.
  1249.  */
  1250. pte_t *pte_alloc(struct mm_struct *mm, pmd_t *pmd, unsigned long address)
  1251. {
  1252. if (pmd_none(*pmd)) {
  1253. pte_t *new;
  1254. /* "fast" allocation can happen without dropping the lock.. */
  1255. new = pte_alloc_one_fast(mm, address);
  1256. if (!new) {
  1257. spin_unlock(&mm->page_table_lock);
  1258. new = pte_alloc_one(mm, address);
  1259. spin_lock(&mm->page_table_lock);
  1260. if (!new)
  1261. return NULL;
  1262. /*
  1263.  * Because we dropped the lock, we should re-check the
  1264.  * entry, as somebody else could have populated it..
  1265.  */
  1266. if (!pmd_none(*pmd)) {
  1267. pte_free(new);
  1268. goto out;
  1269. }
  1270. }
  1271. pmd_populate(mm, pmd, new);
  1272. }
  1273. out:
  1274. return pte_offset(pmd, address);
  1275. }
  1276. int make_pages_present(unsigned long addr, unsigned long end)
  1277. {
  1278. int ret, len, write;
  1279. struct vm_area_struct * vma;
  1280. vma = find_vma(current->mm, addr);
  1281. write = (vma->vm_flags & VM_WRITE) != 0;
  1282. if (addr >= end)
  1283. BUG();
  1284. if (end > vma->vm_end)
  1285. BUG();
  1286. len = (end+PAGE_SIZE-1)/PAGE_SIZE-addr/PAGE_SIZE;
  1287. ret = get_user_pages(current, current->mm, addr,
  1288. len, write, 0, NULL, NULL);
  1289. return ret == len ? 0 : -1;
  1290. }