From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Jan Kara To: Cc: , Mel Gorman , "Kirill A. Shutemov" , Jan Kara Subject: [PATCH 5/7] mm: Move clearing of page->mapping to page_cache_tree_delete() Date: Tue, 17 Oct 2017 18:21:18 +0200 Message-Id: <20171017162120.30990-6-jack@suse.cz> In-Reply-To: <20171017162120.30990-1-jack@suse.cz> References: <20171017162120.30990-1-jack@suse.cz> Sender: owner-linux-mm@kvack.org List-ID: Clearing of page->mapping makes sense in page_cache_tree_delete() as well and it will help us with batching things this way. Acked-by: Mel Gorman Reviewed-by: Andi Kleen Signed-off-by: Jan Kara --- mm/filemap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mm/filemap.c b/mm/filemap.c index c58ccd26bbe6..c866a84bd45c 100644 --- a/mm/filemap.c +++ b/mm/filemap.c @@ -165,6 +165,9 @@ static void page_cache_tree_delete(struct address_space *mapping, workingset_update_node, mapping); } + page->mapping = NULL; + /* Leave page->index set: truncation lookup relies upon it */ + if (shadow) { mapping->nrexceptional += nr; /* @@ -250,9 +253,6 @@ void __delete_from_page_cache(struct page *page, void *shadow) inode_to_wb(mapping->host)); } page_cache_tree_delete(mapping, page, shadow); - - page->mapping = NULL; - /* Leave page->index set: truncation lookup relies upon it */ } static void page_cache_free_page(struct address_space *mapping, -- 2.12.3 -- 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