From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf0-f175.google.com (mail-pf0-f175.google.com [209.85.192.175]) by kanga.kvack.org (Postfix) with ESMTP id 9AC576B027D for ; Thu, 11 Feb 2016 09:29:15 -0500 (EST) Received: by mail-pf0-f175.google.com with SMTP id c10so30745264pfc.2 for ; Thu, 11 Feb 2016 06:29:15 -0800 (PST) Received: from mga09.intel.com (mga09.intel.com. [134.134.136.24]) by mx.google.com with ESMTP id lm9si12876848pab.142.2016.02.11.06.22.13 for ; Thu, 11 Feb 2016 06:22:14 -0800 (PST) From: "Kirill A. Shutemov" Subject: [PATCHv2 21/28] vmscan: split file huge pages before paging them out Date: Thu, 11 Feb 2016 17:21:49 +0300 Message-Id: <1455200516-132137-22-git-send-email-kirill.shutemov@linux.intel.com> In-Reply-To: <1455200516-132137-1-git-send-email-kirill.shutemov@linux.intel.com> References: <1455200516-132137-1-git-send-email-kirill.shutemov@linux.intel.com> Sender: owner-linux-mm@kvack.org List-ID: To: Hugh Dickins , Andrea Arcangeli , Andrew Morton Cc: Dave Hansen , Vlastimil Babka , Christoph Lameter , Naoya Horiguchi , Jerome Marchand , Yang Shi , Sasha Levin , linux-kernel@vger.kernel.org, linux-mm@kvack.org, "Kirill A. Shutemov" This is preparation of vmscan for file huge pages. We cannot write out huge pages, so we need to split them on the way out. Signed-off-by: Kirill A. Shutemov --- mm/vmscan.c | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/mm/vmscan.c b/mm/vmscan.c index 18b3767136f4..ffd8df7275aa 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c @@ -468,12 +468,14 @@ void drop_slab(void) static inline int is_page_cache_freeable(struct page *page) { + int radix_tree_pins = PageTransHuge(page) ? HPAGE_PMD_NR : 1; + /* * A freeable page cache page is referenced only by the caller * that isolated the page, the page cache radix tree and * optional buffer heads at page->private. */ - return page_count(page) - page_has_private(page) == 2; + return page_count(page) - page_has_private(page) == 1 + radix_tree_pins; } static int may_write_to_inode(struct inode *inode, struct scan_control *sc) @@ -543,8 +545,6 @@ static pageout_t pageout(struct page *page, struct address_space *mapping, * swap_backing_dev_info is bust: it doesn't reflect the * congestion state of the swapdevs. Easy to fix, if needed. */ - if (!is_page_cache_freeable(page)) - return PAGE_KEEP; if (!mapping) { /* * Some data journaling orphaned pages can have @@ -1107,6 +1107,15 @@ static unsigned long shrink_page_list(struct list_head *page_list, * starts and then write it out here. */ try_to_unmap_flush_dirty(); + + if (!is_page_cache_freeable(page)) + goto keep_locked; + + if (unlikely(PageTransHuge(page))) { + if (split_huge_page_to_list(page, page_list)) + goto keep_locked; + } + switch (pageout(page, mapping, sc)) { case PAGE_KEEP: goto keep_locked; -- 2.7.0 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org