memory.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:36k
源码类别:

Linux/Unix编程

开发平台:

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 <linux/module.h>
  43. #include <asm/pgalloc.h>
  44. #include <asm/uaccess.h>
  45. #include <asm/tlb.h>
  46. unsigned long max_mapnr;
  47. unsigned long num_physpages;
  48. unsigned long num_mappedpages;
  49. void * high_memory;
  50. struct page *highmem_start_page;
  51. /*
  52.  * We special-case the C-O-W ZERO_PAGE, because it's such
  53.  * a common occurrence (no need to read the page to know
  54.  * that it's zero - better for the cache and memory subsystem).
  55.  */
  56. static inline void copy_cow_page(struct page * from, struct page * to, unsigned long address)
  57. {
  58. if (from == ZERO_PAGE(address)) {
  59. clear_user_highpage(to, address);
  60. return;
  61. }
  62. copy_user_highpage(to, from, address);
  63. }
  64. mem_map_t * mem_map;
  65. /*
  66.  * Called by TLB shootdown 
  67.  */
  68. void __free_pte(pte_t pte)
  69. {
  70. struct page *page = pte_page(pte);
  71. if ((!VALID_PAGE(page)) || PageReserved(page))
  72. return;
  73. if (pte_dirty(pte))
  74. set_page_dirty(page);
  75. free_page_and_swap_cache(page);
  76. }
  77. /*
  78.  * Note: this doesn't free the actual pages themselves. That
  79.  * has been handled earlier when unmapping all the memory regions.
  80.  */
  81. static inline void free_one_pmd(pmd_t * dir)
  82. {
  83. pte_t * pte;
  84. if (pmd_none(*dir))
  85. return;
  86. if (pmd_bad(*dir)) {
  87. pmd_ERROR(*dir);
  88. pmd_clear(dir);
  89. return;
  90. }
  91. pte = pte_offset(dir, 0);
  92. pmd_clear(dir);
  93. pte_free(pte);
  94. }
  95. static inline void free_one_pgd(pgd_t * dir)
  96. {
  97. int j;
  98. pmd_t * pmd;
  99. if (pgd_none(*dir))
  100. return;
  101. if (pgd_bad(*dir)) {
  102. pgd_ERROR(*dir);
  103. pgd_clear(dir);
  104. return;
  105. }
  106. pmd = pmd_offset(dir, 0);
  107. pgd_clear(dir);
  108. for (j = 0; j < PTRS_PER_PMD ; j++) {
  109. prefetchw(pmd+j+(PREFETCH_STRIDE/16));
  110. free_one_pmd(pmd+j);
  111. }
  112. pmd_free(pmd);
  113. }
  114. /* Low and high watermarks for page table cache.
  115.    The system should try to have pgt_water[0] <= cache elements <= pgt_water[1]
  116.  */
  117. int pgt_cache_water[2] = { 25, 50 };
  118. /* Returns the number of pages freed */
  119. int check_pgt_cache(void)
  120. {
  121. return do_check_pgt_cache(pgt_cache_water[0], pgt_cache_water[1]);
  122. }
  123. /*
  124.  * This function clears all user-level page tables of a process - this
  125.  * is needed by execve(), so that old pages aren't in the way.
  126.  */
  127. void clear_page_tables(struct mm_struct *mm, unsigned long first, int nr)
  128. {
  129. pgd_t * page_dir = mm->pgd;
  130. spin_lock(&mm->page_table_lock);
  131. page_dir += first;
  132. do {
  133. free_one_pgd(page_dir);
  134. page_dir++;
  135. } while (--nr);
  136. spin_unlock(&mm->page_table_lock);
  137. /* keep the page table cache within bounds */
  138. check_pgt_cache();
  139. }
  140. #define PTE_TABLE_MASK ((PTRS_PER_PTE-1) * sizeof(pte_t))
  141. #define PMD_TABLE_MASK ((PTRS_PER_PMD-1) * sizeof(pmd_t))
  142. /*
  143.  * copy one vm_area from one task to the other. Assumes the page tables
  144.  * already present in the new task to be cleared in the whole range
  145.  * covered by this vma.
  146.  *
  147.  * 08Jan98 Merged into one routine from several inline routines to reduce
  148.  *         variable count and make things faster. -jj
  149.  *
  150.  * dst->page_table_lock is held on entry and exit,
  151.  * but may be dropped within pmd_alloc() and pte_alloc().
  152.  */
  153. int copy_page_range(struct mm_struct *dst, struct mm_struct *src,
  154. struct vm_area_struct *vma)
  155. {
  156. pgd_t * src_pgd, * dst_pgd;
  157. unsigned long address = vma->vm_start;
  158. unsigned long end = vma->vm_end;
  159. unsigned long cow = (vma->vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE;
  160. src_pgd = pgd_offset(src, address)-1;
  161. dst_pgd = pgd_offset(dst, address)-1;
  162. for (;;) {
  163. pmd_t * src_pmd, * dst_pmd;
  164. src_pgd++; dst_pgd++;
  165. /* copy_pmd_range */
  166. if (pgd_none(*src_pgd))
  167. goto skip_copy_pmd_range;
  168. if (pgd_bad(*src_pgd)) {
  169. pgd_ERROR(*src_pgd);
  170. pgd_clear(src_pgd);
  171. skip_copy_pmd_range: address = (address + PGDIR_SIZE) & PGDIR_MASK;
  172. if (!address || (address >= end))
  173. goto out;
  174. continue;
  175. }
  176. src_pmd = pmd_offset(src_pgd, address);
  177. dst_pmd = pmd_alloc(dst, dst_pgd, address);
  178. if (!dst_pmd)
  179. goto nomem;
  180. do {
  181. pte_t * src_pte, * dst_pte;
  182. /* copy_pte_range */
  183. if (pmd_none(*src_pmd))
  184. goto skip_copy_pte_range;
  185. if (pmd_bad(*src_pmd)) {
  186. pmd_ERROR(*src_pmd);
  187. pmd_clear(src_pmd);
  188. skip_copy_pte_range: address = (address + PMD_SIZE) & PMD_MASK;
  189. if (address >= end)
  190. goto out;
  191. goto cont_copy_pmd_range;
  192. }
  193. src_pte = pte_offset(src_pmd, address);
  194. dst_pte = pte_alloc(dst, dst_pmd, address);
  195. if (!dst_pte)
  196. goto nomem;
  197. spin_lock(&src->page_table_lock);
  198. do {
  199. pte_t pte = *src_pte;
  200. struct page *ptepage;
  201. /* copy_one_pte */
  202. if (pte_none(pte))
  203. goto cont_copy_pte_range_noset;
  204. if (!pte_present(pte)) {
  205. swap_duplicate(pte_to_swp_entry(pte));
  206. goto cont_copy_pte_range;
  207. }
  208. ptepage = pte_page(pte);
  209. if ((!VALID_PAGE(ptepage)) || 
  210.     PageReserved(ptepage))
  211. goto cont_copy_pte_range;
  212. /* If it's a COW mapping, write protect it both in the parent and the child */
  213. if (cow && pte_write(pte)) {
  214. ptep_set_wrprotect(src_pte);
  215. pte = *src_pte;
  216. }
  217. /* If it's a shared mapping, mark it clean in the child */
  218. if (vma->vm_flags & VM_SHARED)
  219. pte = pte_mkclean(pte);
  220. pte = pte_mkold(pte);
  221. get_page(ptepage);
  222. dst->rss++;
  223. cont_copy_pte_range: set_pte(dst_pte, pte);
  224. cont_copy_pte_range_noset: address += PAGE_SIZE;
  225. if (address >= end)
  226. goto out_unlock;
  227. src_pte++;
  228. dst_pte++;
  229. } while ((unsigned long)src_pte & PTE_TABLE_MASK);
  230. spin_unlock(&src->page_table_lock);
  231. cont_copy_pmd_range: src_pmd++;
  232. dst_pmd++;
  233. } while ((unsigned long)src_pmd & PMD_TABLE_MASK);
  234. }
  235. out_unlock:
  236. spin_unlock(&src->page_table_lock);
  237. out:
  238. return 0;
  239. nomem:
  240. return -ENOMEM;
  241. }
  242. /*
  243.  * Return indicates whether a page was freed so caller can adjust rss
  244.  */
  245. static inline void forget_pte(pte_t page)
  246. {
  247. if (!pte_none(page)) {
  248. printk("forget_pte: old mapping existed!n");
  249. BUG();
  250. }
  251. }
  252. static inline int zap_pte_range(mmu_gather_t *tlb, pmd_t * pmd, unsigned long address, unsigned long size)
  253. {
  254. unsigned long offset;
  255. pte_t * ptep;
  256. int freed = 0;
  257. if (pmd_none(*pmd))
  258. return 0;
  259. if (pmd_bad(*pmd)) {
  260. pmd_ERROR(*pmd);
  261. pmd_clear(pmd);
  262. return 0;
  263. }
  264. ptep = pte_offset(pmd, address);
  265. offset = address & ~PMD_MASK;
  266. if (offset + size > PMD_SIZE)
  267. size = PMD_SIZE - offset;
  268. size &= PAGE_MASK;
  269. for (offset=0; offset < size; ptep++, offset += PAGE_SIZE) {
  270. pte_t pte = *ptep;
  271. if (pte_none(pte))
  272. continue;
  273. if (pte_present(pte)) {
  274. struct page *page = pte_page(pte);
  275. if (VALID_PAGE(page) && !PageReserved(page))
  276. freed ++;
  277. /* This will eventually call __free_pte on the pte. */
  278. tlb_remove_page(tlb, ptep, address + offset);
  279. } else {
  280. free_swap_and_cache(pte_to_swp_entry(pte));
  281. pte_clear(ptep);
  282. }
  283. }
  284. return freed;
  285. }
  286. static inline int zap_pmd_range(mmu_gather_t *tlb, pgd_t * dir, unsigned long address, unsigned long size)
  287. {
  288. pmd_t * pmd;
  289. unsigned long end;
  290. int freed;
  291. if (pgd_none(*dir))
  292. return 0;
  293. if (pgd_bad(*dir)) {
  294. pgd_ERROR(*dir);
  295. pgd_clear(dir);
  296. return 0;
  297. }
  298. pmd = pmd_offset(dir, address);
  299. end = address + size;
  300. if (end > ((address + PGDIR_SIZE) & PGDIR_MASK))
  301. end = ((address + PGDIR_SIZE) & PGDIR_MASK);
  302. freed = 0;
  303. do {
  304. freed += zap_pte_range(tlb, pmd, address, end - address);
  305. address = (address + PMD_SIZE) & PMD_MASK; 
  306. pmd++;
  307. } while (address < end);
  308. return freed;
  309. }
  310. /*
  311.  * remove user pages in a given range.
  312.  */
  313. void zap_page_range(struct mm_struct *mm, unsigned long address, unsigned long size)
  314. {
  315. mmu_gather_t *tlb;
  316. pgd_t * dir;
  317. unsigned long start = address, end = address + size;
  318. int freed = 0;
  319. dir = pgd_offset(mm, address);
  320. /*
  321.  * This is a long-lived spinlock. That's fine.
  322.  * There's no contention, because the page table
  323.  * lock only protects against kswapd anyway, and
  324.  * even if kswapd happened to be looking at this
  325.  * process we _want_ it to get stuck.
  326.  */
  327. if (address >= end)
  328. BUG();
  329. spin_lock(&mm->page_table_lock);
  330. flush_cache_range(mm, address, end);
  331. tlb = tlb_gather_mmu(mm);
  332. do {
  333. freed += zap_pmd_range(tlb, dir, address, end - address);
  334. address = (address + PGDIR_SIZE) & PGDIR_MASK;
  335. dir++;
  336. } while (address && (address < end));
  337. /* this will flush any remaining tlb entries */
  338. tlb_finish_mmu(tlb, start, end);
  339. /*
  340.  * Update rss for the mm_struct (not necessarily current->mm)
  341.  * Notice that rss is an unsigned long.
  342.  */
  343. if (mm->rss > freed)
  344. mm->rss -= freed;
  345. else
  346. mm->rss = 0;
  347. spin_unlock(&mm->page_table_lock);
  348. }
  349. /*
  350.  * Do a quick page-table lookup for a single page. 
  351.  */
  352. static struct page * follow_page(struct mm_struct *mm, unsigned long address, int write) 
  353. {
  354. pgd_t *pgd;
  355. pmd_t *pmd;
  356. pte_t *ptep, pte;
  357. pgd = pgd_offset(mm, address);
  358. if (pgd_none(*pgd) || pgd_bad(*pgd))
  359. goto out;
  360. pmd = pmd_offset(pgd, address);
  361. if (pmd_none(*pmd) || pmd_bad(*pmd))
  362. goto out;
  363. ptep = pte_offset(pmd, address);
  364. if (!ptep)
  365. goto out;
  366. pte = *ptep;
  367. if (pte_present(pte)) {
  368. if (!write ||
  369.     (pte_write(pte) && pte_dirty(pte)))
  370. return pte_page(pte);
  371. }
  372. out:
  373. return 0;
  374. }
  375. /* 
  376.  * Given a physical address, is there a useful struct page pointing to
  377.  * it?  This may become more complex in the future if we start dealing
  378.  * with IO-aperture pages in kiobufs.
  379.  */
  380. static inline struct page * get_page_map(struct page *page)
  381. {
  382. if (!VALID_PAGE(page))
  383. return 0;
  384. return page;
  385. }
  386. /*
  387.  * Please read Documentation/cachetlb.txt before using this function,
  388.  * accessing foreign memory spaces can cause cache coherency problems.
  389.  *
  390.  * Accessing a VM_IO area is even more dangerous, therefore the function
  391.  * fails if pages is != NULL and a VM_IO area is found.
  392.  */
  393. int get_user_pages(struct task_struct *tsk, struct mm_struct *mm, unsigned long start,
  394. int len, int write, int force, struct page **pages, struct vm_area_struct **vmas)
  395. {
  396. int i;
  397. unsigned int flags;
  398. /*
  399.  * Require read or write permissions.
  400.  * If 'force' is set, we only require the "MAY" flags.
  401.  */
  402. flags = write ? (VM_WRITE | VM_MAYWRITE) : (VM_READ | VM_MAYREAD);
  403. flags &= force ? (VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
  404. i = 0;
  405. do {
  406. struct vm_area_struct * vma;
  407. vma = find_extend_vma(mm, start);
  408. if ( !vma || (pages && vma->vm_flags & VM_IO) || !(flags & vma->vm_flags) )
  409. return i ? : -EFAULT;
  410. spin_lock(&mm->page_table_lock);
  411. do {
  412. struct page *map;
  413. while (!(map = follow_page(mm, start, write))) {
  414. spin_unlock(&mm->page_table_lock);
  415. switch (handle_mm_fault(mm, vma, start, write)) {
  416. case 1:
  417. tsk->min_flt++;
  418. break;
  419. case 2:
  420. tsk->maj_flt++;
  421. break;
  422. case 0:
  423. if (i) return i;
  424. return -EFAULT;
  425. default:
  426. if (i) return i;
  427. return -ENOMEM;
  428. }
  429. spin_lock(&mm->page_table_lock);
  430. }
  431. if (pages) {
  432. pages[i] = get_page_map(map);
  433. /* FIXME: call the correct function,
  434.  * depending on the type of the found page
  435.  */
  436. if (!pages[i])
  437. goto bad_page;
  438. page_cache_get(pages[i]);
  439. }
  440. if (vmas)
  441. vmas[i] = vma;
  442. i++;
  443. start += PAGE_SIZE;
  444. len--;
  445. } while(len && start < vma->vm_end);
  446. spin_unlock(&mm->page_table_lock);
  447. } while(len);
  448. out:
  449. return i;
  450. /*
  451.  * We found an invalid page in the VMA.  Release all we have
  452.  * so far and fail.
  453.  */
  454. bad_page:
  455. spin_unlock(&mm->page_table_lock);
  456. while (i--)
  457. page_cache_release(pages[i]);
  458. i = -EFAULT;
  459. goto out;
  460. }
  461. EXPORT_SYMBOL(get_user_pages);
  462. /*
  463.  * Force in an entire range of pages from the current process's user VA,
  464.  * and pin them in physical memory.  
  465.  */
  466. #define dprintk(x...)
  467. int map_user_kiobuf(int rw, struct kiobuf *iobuf, unsigned long va, size_t len)
  468. {
  469. int pgcount, err;
  470. struct mm_struct * mm;
  471. /* Make sure the iobuf is not already mapped somewhere. */
  472. if (iobuf->nr_pages)
  473. return -EINVAL;
  474. mm = current->mm;
  475. dprintk ("map_user_kiobuf: beginn");
  476. pgcount = (va + len + PAGE_SIZE - 1)/PAGE_SIZE - va/PAGE_SIZE;
  477. /* mapping 0 bytes is not permitted */
  478. if (!pgcount) BUG();
  479. err = expand_kiobuf(iobuf, pgcount);
  480. if (err)
  481. return err;
  482. iobuf->locked = 0;
  483. iobuf->offset = va & (PAGE_SIZE-1);
  484. iobuf->length = len;
  485. /* Try to fault in all of the necessary pages */
  486. down_read(&mm->mmap_sem);
  487. /* rw==READ means read from disk, write into memory area */
  488. err = get_user_pages(current, mm, va, pgcount,
  489. (rw==READ), 0, iobuf->maplist, NULL);
  490. up_read(&mm->mmap_sem);
  491. if (err < 0) {
  492. unmap_kiobuf(iobuf);
  493. dprintk ("map_user_kiobuf: end %dn", err);
  494. return err;
  495. }
  496. iobuf->nr_pages = err;
  497. while (pgcount--) {
  498. /* FIXME: flush superflous for rw==READ,
  499.  * probably wrong function for rw==WRITE
  500.  */
  501. flush_dcache_page(iobuf->maplist[pgcount]);
  502. }
  503. dprintk ("map_user_kiobuf: end OKn");
  504. return 0;
  505. }
  506. /*
  507.  * Mark all of the pages in a kiobuf as dirty 
  508.  *
  509.  * We need to be able to deal with short reads from disk: if an IO error
  510.  * occurs, the number of bytes read into memory may be less than the
  511.  * size of the kiobuf, so we have to stop marking pages dirty once the
  512.  * requested byte count has been reached.
  513.  *
  514.  * Must be called from process context - set_page_dirty() takes VFS locks.
  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. set_page_dirty(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. }
  1291. struct page * vmalloc_to_page(void * vmalloc_addr)
  1292. {
  1293. unsigned long addr = (unsigned long) vmalloc_addr;
  1294. struct page *page = NULL;
  1295. pmd_t *pmd;
  1296. pte_t *pte;
  1297. pgd_t *pgd;
  1298. pgd = pgd_offset_k(addr);
  1299. if (!pgd_none(*pgd)) {
  1300. pmd = pmd_offset(pgd, addr);
  1301. if (!pmd_none(*pmd)) {
  1302. pte = pte_offset(pmd, addr);
  1303. if (pte_present(*pte)) {
  1304. page = pte_page(*pte);
  1305. }
  1306. }
  1307. }
  1308. return page;
  1309. }