[PATCH -mm 10/15] add newly swapped in pages to the inactive list

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Rik van Riel
Date: Monday, April 28, 2008 - 11:18 am

Swapin_readahead can read in a lot of data that the processes in
memory never need.  Adding swap cache pages to the inactive list
prevents them from putting too much pressure on the working set.

This has the potential to help the programs that are already in
memory, but it could also be a disadvantage to processes that
are trying to get swapped in.

In short, this patch needs testing.

Signed-off-by: Rik van Riel <riel@redhat.com>

Index: linux-2.6.25-mm1/mm/swap_state.c
===================================================================
--- linux-2.6.25-mm1.orig/mm/swap_state.c	2008-04-24 12:01:36.000000000 -0400
+++ linux-2.6.25-mm1/mm/swap_state.c	2008-04-24 12:03:45.000000000 -0400
@@ -301,7 +301,7 @@ struct page *read_swap_cache_async(swp_e
 			/*
 			 * Initiate read into locked page and return.
 			 */
-			lru_cache_add_active_anon(new_page);
+			lru_cache_add_anon(new_page);
 			swap_readpage(NULL, new_page);
 			return new_page;
 		}

-- 
All Rights Reversed

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH -mm 10/15] add newly swapped in pages to the inacti ..., Rik van Riel, (Mon Apr 28, 11:18 am)