| Kernel v2.4.13 /mm/highmem.c |
|---|
 2.4.13
 mm
 highmem.c
diff -u --recursive --new-file v2.4.12/linux/mm/highmem.c linux/mm/highmem.c
--- v2.4.12/linux/mm/highmem.c Sun Sep 23 11:41:01 2001
+++ linux/mm/highmem.c Mon Oct 22 15:01:57 2001
@@ -327,7 +327,6 @@
struct list_head *tmp;
struct page *page;
-repeat_alloc:
page = alloc_page(GFP_NOHIGHIO);
if (page)
return page;
@@ -337,6 +336,7 @@
*/
wakeup_bdflush();
+repeat_alloc:
/*
* Try to allocate from the emergency pool.
*/
@@ -365,7 +365,6 @@
struct list_head *tmp;
struct buffer_head *bh;
-repeat_alloc:
bh = kmem_cache_alloc(bh_cachep, SLAB_NOHIGHIO);
if (bh)
return bh;
@@ -375,6 +374,7 @@
*/
wakeup_bdflush();
+repeat_alloc:
/*
* Try to allocate from the emergency pool.
*/
|