Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760093Ab1F0NcM (ORCPT ); Mon, 27 Jun 2011 09:32:12 -0400 Received: from mail.betterlinux.com ([199.58.199.50]:35049 "EHLO mail.betterlinux.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753871Ab1F0NaP (ORCPT ); Mon, 27 Jun 2011 09:30:15 -0400 From: Andrea Righi To: Andrew Morton Cc: Minchan Kim , Peter Zijlstra , Johannes Weiner , KAMEZAWA Hiroyuki , Andrea Arcangeli , Hugh Dickins , Jerry James , Marcus Sorensen , Matt Heaton , KOSAKI Motohiro , Rik van Riel , Theodore Tso , Shaohua Li , =?UTF-8?q?P=C3=A1draig=20Brady?= , linux-mm , LKML Subject: [PATCH v4 1/2] mm: introduce __invalidate_mapping_pages() Date: Mon, 27 Jun 2011 15:29:20 +0200 Message-Id: <1309181361-14633-2-git-send-email-andrea@betterlinux.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1309181361-14633-1-git-send-email-andrea@betterlinux.com> References: <1309181361-14633-1-git-send-email-andrea@betterlinux.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 5668 Lines: 144 This new function accepts an additional parameter respect to the old invalidate_mapping_pages() that allows to specify when we want to apply an aggressive policy to drop file cache pages or when we just want to reduce cache eligibility. The new prototype is the following: unsigned long __invalidate_mapping_pages(struct address_space *mapping, pgoff_t start, pgoff_t end, bool invalidate) When invalidate is true pages are always dropped if possible. When invalidate is false inactive pages are dropped and active pages are moved to the inactive list. This can be used to apply different levels of page cache invalidation (e.g, by fadvise). The old invalidate_mapping_pages() behavior can be mapped to __invalidate_mapping_pages(..., true) using a C-preprocessor macro. Signed-off-by: Andrea Righi --- include/linux/fs.h | 8 ++++++-- mm/swap.c | 2 +- mm/truncate.c | 42 +++++++++++++++++++++++++++++++----------- 3 files changed, 38 insertions(+), 14 deletions(-) diff --git a/include/linux/fs.h b/include/linux/fs.h index 6e73e2e..5869dd4e 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -2149,8 +2149,12 @@ extern int check_disk_change(struct block_device *); extern int __invalidate_device(struct block_device *, bool); extern int invalidate_partition(struct gendisk *, int); #endif -unsigned long invalidate_mapping_pages(struct address_space *mapping, - pgoff_t start, pgoff_t end); + +#define invalidate_mapping_pages(__mapping, __start, __end) \ + __invalidate_mapping_pages(__mapping, __start, __end, true) +unsigned long __invalidate_mapping_pages(struct address_space *mapping, + pgoff_t start, pgoff_t end, + bool invalidate); static inline void invalidate_remote_inode(struct inode *inode) { diff --git a/mm/swap.c b/mm/swap.c index 3a442f1..a8fe6ac 100644 --- a/mm/swap.c +++ b/mm/swap.c @@ -413,7 +413,7 @@ void add_page_to_unevictable_list(struct page *page) * 2. active, dirty/writeback page -> inactive, head, PG_reclaim * 3. inactive, mapped page -> none * 4. inactive, dirty/writeback page -> inactive, head, PG_reclaim - * 5. inactive, clean -> inactive, tail + * 5. [in]active, clean -> inactive, tail * 6. Others -> none * * In 4, why it moves inactive's head, the VM expects the page would diff --git a/mm/truncate.c b/mm/truncate.c index 3a29a61..fced0b4 100644 --- a/mm/truncate.c +++ b/mm/truncate.c @@ -312,20 +312,27 @@ void truncate_inode_pages(struct address_space *mapping, loff_t lstart) EXPORT_SYMBOL(truncate_inode_pages); /** - * invalidate_mapping_pages - Invalidate all the unlocked pages of one inode + * __invalidate_mapping_pages - Invalidate all the unlocked pages of one inode * @mapping: the address_space which holds the pages to invalidate * @start: the offset 'from' which to invalidate * @end: the offset 'to' which to invalidate (inclusive) + * @invalidate: aggressive cache invalidation when true * * This function only removes the unlocked pages, if you want to * remove all the pages of one inode, you must call truncate_inode_pages. * - * invalidate_mapping_pages() will not block on IO activity. It will not - * invalidate pages which are dirty, locked, under writeback or mapped into - * pagetables. + * The @invalidate parameter can be used to apply a more aggressive policy + * (when true) that will always drop pages from page cache when possible, or to + * just reduce cache eligibility (when false). In the last case active pages + * will be moved to the tail of the inactive list by deactivate_page(); + * inactive pages will be dropped in both cases. + * + * __invalidate_mapping_pages() will not block on IO activity. It will not + * invalidate pages which are dirty, locked, under writeback, mapped into + * pagetables, or on active lru when @invalidate is false. */ -unsigned long invalidate_mapping_pages(struct address_space *mapping, - pgoff_t start, pgoff_t end) +unsigned long __invalidate_mapping_pages(struct address_space *mapping, + pgoff_t start, pgoff_t end, bool invalidate) { struct pagevec pvec; pgoff_t next = start; @@ -356,12 +363,25 @@ unsigned long invalidate_mapping_pages(struct address_space *mapping, next++; if (lock_failed) continue; - - ret = invalidate_inode_page(page); + /* + * Invalidation of active page is rather aggressive as + * we can't make sure it's not a working set of other + * processes. + * + * When "invalidate" is false, deactivate_page() would + * move active page into inactive's tail so the page + * will have a chance to activate again if other + * processes touch it. + */ + if (!invalidate && PageActive(page)) + ret = 0; + else + ret = invalidate_inode_page(page); unlock_page(page); /* - * Invalidation is a hint that the page is no longer - * of interest and try to speed up its reclaim. + * Invalidation of an inactive page (or any page when + * invalidate is true) is a hint that the page is no + * longer of interest and try to speed up its reclaim. */ if (!ret) deactivate_page(page); @@ -375,7 +395,7 @@ unsigned long invalidate_mapping_pages(struct address_space *mapping, } return count; } -EXPORT_SYMBOL(invalidate_mapping_pages); +EXPORT_SYMBOL(__invalidate_mapping_pages); /* * This is like invalidate_complete_page(), except it ignores the page's -- 1.7.4.1 -- 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/