On Fri, 26 Jan 2007, Michal Piotrowski wrote:

> Please try patches from
> http://www.stardust.webpages.pl/files/tbf/euridica/mm-snapshot-2007-01-26/
> 
> http://www.stardust.webpages.pl/files/tbf/euridica/mm-snapshot-2007-01-26/bugs_and_patches.txt

Ahh. Okay that fixes most of the issues


ZVC writeback: Fix mm and other issues

This deals with swap prefetch and various things changed in mm.

Signed-off-by: Christoph Lameter <[EMAIL PROTECTED]>

Index: linux-2.6.20-rc6/kernel/power/swsusp.c
===================================================================
--- linux-2.6.20-rc6.orig/kernel/power/swsusp.c 2007-01-26 10:32:05.000000000 
-0800
+++ linux-2.6.20-rc6/kernel/power/swsusp.c      2007-01-26 10:51:56.000000000 
-0800
@@ -230,9 +230,10 @@ int swsusp_shrink_memory(void)
                for_each_zone (zone)
                        if (populated_zone(zone)) {
                                if (is_highmem(zone)) {
-                                       highmem_size -= zone->free_pages;
+                                       highmem_size -=
+                                       zone_page_state(zone, NR_FREE_PAGES);
                                } else {
-                                       tmp -= zone->free_pages;
+                                       tmp -= zone_page_state(zone, 
NR_FREE_PAGES);
                                        tmp += 
zone->lowmem_reserve[ZONE_NORMAL];
                                        tmp += snapshot_additional_pages(zone);
                                }
Index: linux-2.6.20-rc6/mm/page_alloc.c
===================================================================
--- linux-2.6.20-rc6.orig/mm/page_alloc.c       2007-01-26 10:32:19.000000000 
-0800
+++ linux-2.6.20-rc6/mm/page_alloc.c    2007-01-26 10:48:04.000000000 -0800
@@ -1581,12 +1581,12 @@ unsigned int nr_free_pagecache_pages(voi
 unsigned long nr_free_inactive_pages_node(int nid)
 {
        enum zone_type i;
-       unsigned long sum = 0;
+       unsigned long sum = node_page_state(nid, NR_FREE_PAGES)
+                               + node_page_state(nid, NR_INACTIVE);
        struct zone *zones = NODE_DATA(nid)->node_zones;
 
        for (i = 0; i < MAX_NR_ZONES; i++)
-               sum += zones[i].nr_inactive +
-                       zones[i].free_pages - zones[i].pages_low;
+               sum -= zones[i].pages_low;
 
        return sum;
 }
@@ -1634,7 +1634,8 @@ void si_meminfo_node(struct sysinfo *val
        val->freeram = node_page_state(nid, NR_FREE_PAGES);
 #ifdef CONFIG_HIGHMEM
        val->totalhigh = pgdat->node_zones[ZONE_HIGHMEM].present_pages;
-       val->freehigh = pgdat->node_zones[ZONE_HIGHMEM].free_pages;
+       val->freehigh = zone_page_state(&pgdat->node_zones[ZONE_HIGHMEM],
+                       NR_FREE_PAGES);
 #else
        val->totalhigh = 0;
        val->freehigh = 0;
Index: linux-2.6.20-rc6/mm/swap_prefetch.c
===================================================================
--- linux-2.6.20-rc6.orig/mm/swap_prefetch.c    2007-01-26 10:51:53.000000000 
-0800
+++ linux-2.6.20-rc6/mm/swap_prefetch.c 2007-01-26 10:51:56.000000000 -0800
@@ -281,7 +281,7 @@ static void examine_free_limits(void)
                ns->lowfree[idx] = z->pages_high * 3;
                ns->highfree[idx] = ns->lowfree[idx] + z->pages_high;
 
-               if (z->free_pages > ns->highfree[idx]) {
+               if (zone_page_state(z, NR_FREE_PAGES) > ns->highfree[idx]) {
                        /*
                         * We've gotten above the high watermark of free pages
                         * so we can start prefetching till we get to the low
@@ -338,7 +338,7 @@ static int prefetch_suitable(void)
                ns = &sp_stat.node[node];
                idx = zone_idx(z);
 
-               free = z->free_pages;
+               free = zone_page_state(z, NR_FREE_PAGES);
                if (free < *ns->pointfree[idx]) {
                        /*
                         * Free pages have dropped below the low watermark so
Index: linux-2.6.20-rc6/include/linux/mm_inline.h
===================================================================
--- linux-2.6.20-rc6.orig/include/linux/mm_inline.h     2007-01-26 
10:58:53.000000000 -0800
+++ linux-2.6.20-rc6/include/linux/mm_inline.h  2007-01-26 10:58:59.000000000 
-0800
@@ -16,7 +16,7 @@ static inline void
 add_page_to_inactive_list_tail(struct zone *zone, struct page *page)
 {
        list_add_tail(&page->lru, &zone->inactive_list);
-       zone->nr_inactive++;
+       __inc_zone_state(zone, NR_INACTIVE);
 }
 
 static inline void
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to