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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * High memory handling common code and variables.
  3.  *
  4.  * (C) 1999 Andrea Arcangeli, SuSE GmbH, andrea@suse.de
  5.  *          Gerhard Wichert, Siemens AG, Gerhard.Wichert@pdb.siemens.de
  6.  *
  7.  *
  8.  * Redesigned the x86 32-bit VM architecture to deal with
  9.  * 64-bit physical space. With current x86 CPUs this
  10.  * means up to 64 Gigabytes physical RAM.
  11.  *
  12.  * Rewrote high memory support to move the page cache into
  13.  * high memory. Implemented permanent (schedulable) kmaps
  14.  * based on Linus' idea.
  15.  *
  16.  * Copyright (C) 1999 Ingo Molnar <mingo@redhat.com>
  17.  */
  18. #include <linux/mm.h>
  19. #include <linux/pagemap.h>
  20. #include <linux/highmem.h>
  21. #include <linux/swap.h>
  22. #include <linux/slab.h>
  23. /*
  24.  * Virtual_count is not a pure "count".
  25.  *  0 means that it is not mapped, and has not been mapped
  26.  *    since a TLB flush - it is usable.
  27.  *  1 means that there are no users, but it has been mapped
  28.  *    since the last TLB flush - so we can't use it.
  29.  *  n means that there are (n-1) current users of it.
  30.  */
  31. static int pkmap_count[LAST_PKMAP];
  32. static unsigned int last_pkmap_nr;
  33. static spinlock_cacheline_t kmap_lock_cacheline = {SPIN_LOCK_UNLOCKED};
  34. #define kmap_lock  kmap_lock_cacheline.lock
  35. pte_t * pkmap_page_table;
  36. static DECLARE_WAIT_QUEUE_HEAD(pkmap_map_wait);
  37. static void flush_all_zero_pkmaps(void)
  38. {
  39. int i;
  40. flush_cache_all();
  41. for (i = 0; i < LAST_PKMAP; i++) {
  42. struct page *page;
  43. /*
  44.  * zero means we don't have anything to do,
  45.  * >1 means that it is still in use. Only
  46.  * a count of 1 means that it is free but
  47.  * needs to be unmapped
  48.  */
  49. if (pkmap_count[i] != 1)
  50. continue;
  51. pkmap_count[i] = 0;
  52. /* sanity check */
  53. if (pte_none(pkmap_page_table[i]))
  54. BUG();
  55. /*
  56.  * Don't need an atomic fetch-and-clear op here;
  57.  * no-one has the page mapped, and cannot get at
  58.  * its virtual address (and hence PTE) without first
  59.  * getting the kmap_lock (which is held here).
  60.  * So no dangers, even with speculative execution.
  61.  */
  62. page = pte_page(pkmap_page_table[i]);
  63. pte_clear(&pkmap_page_table[i]);
  64. page->virtual = NULL;
  65. }
  66. flush_tlb_all();
  67. }
  68. static inline unsigned long map_new_virtual(struct page *page)
  69. {
  70. unsigned long vaddr;
  71. int count;
  72. start:
  73. count = LAST_PKMAP;
  74. /* Find an empty entry */
  75. for (;;) {
  76. last_pkmap_nr = (last_pkmap_nr + 1) & LAST_PKMAP_MASK;
  77. if (!last_pkmap_nr) {
  78. flush_all_zero_pkmaps();
  79. count = LAST_PKMAP;
  80. }
  81. if (!pkmap_count[last_pkmap_nr])
  82. break; /* Found a usable entry */
  83. if (--count)
  84. continue;
  85. /*
  86.  * Sleep for somebody else to unmap their entries
  87.  */
  88. {
  89. DECLARE_WAITQUEUE(wait, current);
  90. current->state = TASK_UNINTERRUPTIBLE;
  91. add_wait_queue(&pkmap_map_wait, &wait);
  92. spin_unlock(&kmap_lock);
  93. schedule();
  94. remove_wait_queue(&pkmap_map_wait, &wait);
  95. spin_lock(&kmap_lock);
  96. /* Somebody else might have mapped it while we slept */
  97. if (page->virtual)
  98. return (unsigned long) page->virtual;
  99. /* Re-start */
  100. goto start;
  101. }
  102. }
  103. vaddr = PKMAP_ADDR(last_pkmap_nr);
  104. set_pte(&(pkmap_page_table[last_pkmap_nr]), mk_pte(page, kmap_prot));
  105. pkmap_count[last_pkmap_nr] = 1;
  106. page->virtual = (void *) vaddr;
  107. return vaddr;
  108. }
  109. void *kmap_high(struct page *page)
  110. {
  111. unsigned long vaddr;
  112. /*
  113.  * For highmem pages, we can't trust "virtual" until
  114.  * after we have the lock.
  115.  *
  116.  * We cannot call this from interrupts, as it may block
  117.  */
  118. spin_lock(&kmap_lock);
  119. vaddr = (unsigned long) page->virtual;
  120. if (!vaddr)
  121. vaddr = map_new_virtual(page);
  122. pkmap_count[PKMAP_NR(vaddr)]++;
  123. if (pkmap_count[PKMAP_NR(vaddr)] < 2)
  124. BUG();
  125. spin_unlock(&kmap_lock);
  126. return (void*) vaddr;
  127. }
  128. void kunmap_high(struct page *page)
  129. {
  130. unsigned long vaddr;
  131. unsigned long nr;
  132. int need_wakeup;
  133. spin_lock(&kmap_lock);
  134. vaddr = (unsigned long) page->virtual;
  135. if (!vaddr)
  136. BUG();
  137. nr = PKMAP_NR(vaddr);
  138. /*
  139.  * A count must never go down to zero
  140.  * without a TLB flush!
  141.  */
  142. need_wakeup = 0;
  143. switch (--pkmap_count[nr]) {
  144. case 0:
  145. BUG();
  146. case 1:
  147. /*
  148.  * Avoid an unnecessary wake_up() function call.
  149.  * The common case is pkmap_count[] == 1, but
  150.  * no waiters.
  151.  * The tasks queued in the wait-queue are guarded
  152.  * by both the lock in the wait-queue-head and by
  153.  * the kmap_lock.  As the kmap_lock is held here,
  154.  * no need for the wait-queue-head's lock.  Simply
  155.  * test if the queue is empty.
  156.  */
  157. need_wakeup = waitqueue_active(&pkmap_map_wait);
  158. }
  159. spin_unlock(&kmap_lock);
  160. /* do wake-up, if needed, race-free outside of the spin lock */
  161. if (need_wakeup)
  162. wake_up(&pkmap_map_wait);
  163. }
  164. #define POOL_SIZE 32
  165. /*
  166.  * This lock gets no contention at all, normally.
  167.  */
  168. static spinlock_t emergency_lock = SPIN_LOCK_UNLOCKED;
  169. int nr_emergency_pages;
  170. static LIST_HEAD(emergency_pages);
  171. int nr_emergency_bhs;
  172. static LIST_HEAD(emergency_bhs);
  173. /*
  174.  * Simple bounce buffer support for highmem pages.
  175.  * This will be moved to the block layer in 2.5.
  176.  */
  177. static inline void copy_from_high_bh (struct buffer_head *to,
  178.  struct buffer_head *from)
  179. {
  180. struct page *p_from;
  181. char *vfrom;
  182. p_from = from->b_page;
  183. vfrom = kmap_atomic(p_from, KM_USER0);
  184. memcpy(to->b_data, vfrom + bh_offset(from), to->b_size);
  185. kunmap_atomic(vfrom, KM_USER0);
  186. }
  187. static inline void copy_to_high_bh_irq (struct buffer_head *to,
  188.  struct buffer_head *from)
  189. {
  190. struct page *p_to;
  191. char *vto;
  192. unsigned long flags;
  193. p_to = to->b_page;
  194. __save_flags(flags);
  195. __cli();
  196. vto = kmap_atomic(p_to, KM_BOUNCE_READ);
  197. memcpy(vto + bh_offset(to), from->b_data, to->b_size);
  198. kunmap_atomic(vto, KM_BOUNCE_READ);
  199. __restore_flags(flags);
  200. }
  201. static inline void bounce_end_io (struct buffer_head *bh, int uptodate)
  202. {
  203. struct page *page;
  204. struct buffer_head *bh_orig = (struct buffer_head *)(bh->b_private);
  205. unsigned long flags;
  206. bh_orig->b_end_io(bh_orig, uptodate);
  207. page = bh->b_page;
  208. spin_lock_irqsave(&emergency_lock, flags);
  209. if (nr_emergency_pages >= POOL_SIZE)
  210. __free_page(page);
  211. else {
  212. /*
  213.  * We are abusing page->list to manage
  214.  * the highmem emergency pool:
  215.  */
  216. list_add(&page->list, &emergency_pages);
  217. nr_emergency_pages++;
  218. }
  219. if (nr_emergency_bhs >= POOL_SIZE) {
  220. #ifdef HIGHMEM_DEBUG
  221. /* Don't clobber the constructed slab cache */
  222. init_waitqueue_head(&bh->b_wait);
  223. #endif
  224. kmem_cache_free(bh_cachep, bh);
  225. } else {
  226. /*
  227.  * Ditto in the bh case, here we abuse b_inode_buffers:
  228.  */
  229. list_add(&bh->b_inode_buffers, &emergency_bhs);
  230. nr_emergency_bhs++;
  231. }
  232. spin_unlock_irqrestore(&emergency_lock, flags);
  233. }
  234. static __init int init_emergency_pool(void)
  235. {
  236. struct sysinfo i;
  237.         si_meminfo(&i);
  238.         si_swapinfo(&i);
  239.         
  240.         if (!i.totalhigh)
  241.          return 0;
  242. spin_lock_irq(&emergency_lock);
  243. while (nr_emergency_pages < POOL_SIZE) {
  244. struct page * page = alloc_page(GFP_ATOMIC);
  245. if (!page) {
  246. printk("couldn't refill highmem emergency pages");
  247. break;
  248. }
  249. list_add(&page->list, &emergency_pages);
  250. nr_emergency_pages++;
  251. }
  252. while (nr_emergency_bhs < POOL_SIZE) {
  253. struct buffer_head * bh = kmem_cache_alloc(bh_cachep, SLAB_ATOMIC);
  254. if (!bh) {
  255. printk("couldn't refill highmem emergency bhs");
  256. break;
  257. }
  258. list_add(&bh->b_inode_buffers, &emergency_bhs);
  259. nr_emergency_bhs++;
  260. }
  261. spin_unlock_irq(&emergency_lock);
  262. printk("allocated %d pages and %d bhs reserved for the highmem bouncesn",
  263.        nr_emergency_pages, nr_emergency_bhs);
  264. return 0;
  265. }
  266. __initcall(init_emergency_pool);
  267. static void bounce_end_io_write (struct buffer_head *bh, int uptodate)
  268. {
  269. bounce_end_io(bh, uptodate);
  270. }
  271. static void bounce_end_io_read (struct buffer_head *bh, int uptodate)
  272. {
  273. struct buffer_head *bh_orig = (struct buffer_head *)(bh->b_private);
  274. if (uptodate)
  275. copy_to_high_bh_irq(bh_orig, bh);
  276. bounce_end_io(bh, uptodate);
  277. }
  278. struct page *alloc_bounce_page (void)
  279. {
  280. struct list_head *tmp;
  281. struct page *page;
  282. page = alloc_page(GFP_NOHIGHIO);
  283. if (page)
  284. return page;
  285. /*
  286.  * No luck. First, kick the VM so it doesn't idle around while
  287.  * we are using up our emergency rations.
  288.  */
  289. wakeup_bdflush();
  290. repeat_alloc:
  291. /*
  292.  * Try to allocate from the emergency pool.
  293.  */
  294. tmp = &emergency_pages;
  295. spin_lock_irq(&emergency_lock);
  296. if (!list_empty(tmp)) {
  297. page = list_entry(tmp->next, struct page, list);
  298. list_del(tmp->next);
  299. nr_emergency_pages--;
  300. }
  301. spin_unlock_irq(&emergency_lock);
  302. if (page)
  303. return page;
  304. /* we need to wait I/O completion */
  305. run_task_queue(&tq_disk);
  306. yield();
  307. goto repeat_alloc;
  308. }
  309. struct buffer_head *alloc_bounce_bh (void)
  310. {
  311. struct list_head *tmp;
  312. struct buffer_head *bh;
  313. bh = kmem_cache_alloc(bh_cachep, SLAB_NOHIGHIO);
  314. if (bh)
  315. return bh;
  316. /*
  317.  * No luck. First, kick the VM so it doesn't idle around while
  318.  * we are using up our emergency rations.
  319.  */
  320. wakeup_bdflush();
  321. repeat_alloc:
  322. /*
  323.  * Try to allocate from the emergency pool.
  324.  */
  325. tmp = &emergency_bhs;
  326. spin_lock_irq(&emergency_lock);
  327. if (!list_empty(tmp)) {
  328. bh = list_entry(tmp->next, struct buffer_head, b_inode_buffers);
  329. list_del(tmp->next);
  330. nr_emergency_bhs--;
  331. }
  332. spin_unlock_irq(&emergency_lock);
  333. if (bh)
  334. return bh;
  335. /* we need to wait I/O completion */
  336. run_task_queue(&tq_disk);
  337. yield();
  338. goto repeat_alloc;
  339. }
  340. struct buffer_head * create_bounce(int rw, struct buffer_head * bh_orig)
  341. {
  342. struct page *page;
  343. struct buffer_head *bh;
  344. if (!PageHighMem(bh_orig->b_page))
  345. return bh_orig;
  346. bh = alloc_bounce_bh();
  347. /*
  348.  * This is wasteful for 1k buffers, but this is a stopgap measure
  349.  * and we are being ineffective anyway. This approach simplifies
  350.  * things immensly. On boxes with more than 4GB RAM this should
  351.  * not be an issue anyway.
  352.  */
  353. page = alloc_bounce_page();
  354. set_bh_page(bh, page, 0);
  355. bh->b_next = NULL;
  356. bh->b_blocknr = bh_orig->b_blocknr;
  357. bh->b_size = bh_orig->b_size;
  358. bh->b_list = -1;
  359. bh->b_dev = bh_orig->b_dev;
  360. bh->b_count = bh_orig->b_count;
  361. bh->b_rdev = bh_orig->b_rdev;
  362. bh->b_state = bh_orig->b_state;
  363. #ifdef HIGHMEM_DEBUG
  364. bh->b_flushtime = jiffies;
  365. bh->b_next_free = NULL;
  366. bh->b_prev_free = NULL;
  367. /* bh->b_this_page */
  368. bh->b_reqnext = NULL;
  369. bh->b_pprev = NULL;
  370. #endif
  371. /* bh->b_page */
  372. if (rw == WRITE) {
  373. bh->b_end_io = bounce_end_io_write;
  374. copy_from_high_bh(bh, bh_orig);
  375. } else
  376. bh->b_end_io = bounce_end_io_read;
  377. bh->b_private = (void *)bh_orig;
  378. bh->b_rsector = bh_orig->b_rsector;
  379. #ifdef HIGHMEM_DEBUG
  380. memset(&bh->b_wait, -1, sizeof(bh->b_wait));
  381. #endif
  382. return bh;
  383. }