Re: [PATCH -mm 07/15] split LRU lists into anon & file sets

From: MinChan Kim
Date: Sat May 10 2008 - 03:50:40 EST


> Index: linux-2.6.25-mm1/mm/page_alloc.c
> ===================================================================
> --- linux-2.6.25-mm1.orig/mm/page_alloc.c 2008-04-24 12:00:01.000000000 -0400
> +++ linux-2.6.25-mm1/mm/page_alloc.c 2008-04-24 12:01:36.000000000 -0400
> @@ -1923,10 +1923,13 @@ void show_free_areas(void)
> }
> }
>
> - printk("Active:%lu inactive:%lu dirty:%lu writeback:%lu unstable:%lu\n"
> + printk("Active_anon:%lu active_file:%lu inactive_anon%lu\n"
> + " inactive_file:%lu dirty:%lu writeback:%lu unstable:%lu\n"
> " free:%lu slab:%lu mapped:%lu pagetables:%lu bounce:%lu\n",

I found typo error.

index 2b2e205..ad84c99 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1932,7 +1932,7 @@ void show_free_areas(void)
}
}

- printk("Active_anon:%lu active_file:%lu inactive_anon%lu\n"
+ printk("Active_anon:%lu active_file:%lu inactive_anon:%lu\n"
" inactive_file:%lu"
//TODO: check/adjust line lengths
#ifdef CONFIG_NORECLAIM_LRU


--
Kinds regards,
MinChan Kim
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/