Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757749AbYAHVUm (ORCPT ); Tue, 8 Jan 2008 16:20:42 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756858AbYAHVLi (ORCPT ); Tue, 8 Jan 2008 16:11:38 -0500 Received: from mx1.redhat.com ([66.187.233.31]:47799 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756854AbYAHVLh (ORCPT ); Tue, 8 Jan 2008 16:11:37 -0500 Message-Id: <20080108210006.795597166@redhat.com> References: <20080108205939.323955454@redhat.com> User-Agent: quilt/0.46-1 Date: Tue, 08 Jan 2008 15:59:47 -0500 From: Rik van Riel To: linux-kernel@vger.kernel.org Cc: linux-mm@kvack.org Subject: [patch 08/19] add newly swapped in pages to the inactive list Content-Disposition: inline; filename=rvr-swapin-inactive.patch Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1241 Lines: 34 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 Index: linux-2.6.24-rc6-mm1/mm/swap_state.c =================================================================== --- linux-2.6.24-rc6-mm1.orig/mm/swap_state.c 2008-01-02 12:37:38.000000000 -0500 +++ linux-2.6.24-rc6-mm1/mm/swap_state.c 2008-01-02 12:37:52.000000000 -0500 @@ -300,7 +300,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 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/