Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757288AbZFCSt3 (ORCPT ); Wed, 3 Jun 2009 14:49:29 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755414AbZFCSrF (ORCPT ); Wed, 3 Jun 2009 14:47:05 -0400 Received: from one.firstfloor.org ([213.235.205.2]:37849 "EHLO one.firstfloor.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755275AbZFCSrE (ORCPT ); Wed, 3 Jun 2009 14:47:04 -0400 From: Andi Kleen References: <20090603846.816684333@firstfloor.org> In-Reply-To: <20090603846.816684333@firstfloor.org> To: npiggin@suse.de, akpm@linux-foundation.org, npiggin@suse.de, linux-kernel@vger.kernel.org, linux-mm@kvack.org, fengguang.wu@intel.com Subject: [PATCH] [12/16] Refactor truncate to allow direct truncating of page Message-Id: <20090603184646.B915B1D0292@basil.firstfloor.org> Date: Wed, 3 Jun 2009 20:46:46 +0200 (CEST) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2658 Lines: 85 From: Nick Piggin Extract out truncate_inode_page() out of the truncate path so that it can be used by memory-failure.c [AK: description, headers, fix typos] Signed-off-by: Andi Kleen --- include/linux/mm.h | 2 ++ mm/truncate.c | 24 ++++++++++++------------ 2 files changed, 14 insertions(+), 12 deletions(-) Index: linux/mm/truncate.c =================================================================== --- linux.orig/mm/truncate.c 2009-06-03 19:37:38.000000000 +0200 +++ linux/mm/truncate.c 2009-06-03 20:13:43.000000000 +0200 @@ -135,6 +135,16 @@ return ret; } +void truncate_inode_page(struct address_space *mapping, struct page *page) +{ + if (page_mapped(page)) { + unmap_mapping_range(mapping, + (loff_t)page->index<index<index > next) next = page->index; next++; - truncate_complete_page(mapping, page); unlock_page(page); } pagevec_release(&pvec); Index: linux/include/linux/mm.h =================================================================== --- linux.orig/include/linux/mm.h 2009-06-03 19:37:38.000000000 +0200 +++ linux/include/linux/mm.h 2009-06-03 20:39:49.000000000 +0200 @@ -811,6 +811,8 @@ extern int vmtruncate(struct inode * inode, loff_t offset); extern int vmtruncate_range(struct inode * inode, loff_t offset, loff_t end); +void truncate_inode_page(struct address_space *mapping, struct page *page); + #ifdef CONFIG_MMU extern int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma, unsigned long address, int write_access); -- 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/