From 04fd0f3cd8b97ffd61f9f771dc0bde104c5eacad Mon Sep 17 00:00:00 2001 From: Wu Fengguang Date: Wed, 16 Sep 2009 11:50:13 +0200 Subject: [PATCH] --- yaml --- r: 165733 b: refs/heads/master c: 83f786680aec8d030184f7ced1a0a3dd8ac81764 h: refs/heads/master i: 165731: 9ba918f29b7b19671be536bf64e2a35a8c85be48 v: v3 --- [refs] | 2 +- trunk/include/linux/mm.h | 2 ++ trunk/mm/truncate.c | 26 ++++++++++++++++++++------ 3 files changed, 23 insertions(+), 7 deletions(-) diff --git a/[refs] b/[refs] index 1cd1d052914d..144daf6c7233 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 750b4987b0cd4d408e54cb83a80a067cbe690feb +refs/heads/master: 83f786680aec8d030184f7ced1a0a3dd8ac81764 diff --git a/trunk/include/linux/mm.h b/trunk/include/linux/mm.h index 8cbc0aafd5bd..b05bbde0296d 100644 --- a/trunk/include/linux/mm.h +++ b/trunk/include/linux/mm.h @@ -796,6 +796,8 @@ extern int vmtruncate_range(struct inode * inode, loff_t offset, loff_t end); int truncate_inode_page(struct address_space *mapping, struct page *page); +int invalidate_inode_page(struct page *page); + #ifdef CONFIG_MMU extern int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma, unsigned long address, unsigned int flags); diff --git a/trunk/mm/truncate.c b/trunk/mm/truncate.c index 2519a7c92873..ea132f7ea2d2 100644 --- a/trunk/mm/truncate.c +++ b/trunk/mm/truncate.c @@ -146,6 +146,24 @@ int truncate_inode_page(struct address_space *mapping, struct page *page) return truncate_complete_page(mapping, page); } +/* + * Safely invalidate one page from its pagecache mapping. + * It only drops clean, unused pages. The page must be locked. + * + * Returns 1 if the page is successfully invalidated, otherwise 0. + */ +int invalidate_inode_page(struct page *page) +{ + struct address_space *mapping = page_mapping(page); + if (!mapping) + return 0; + if (PageDirty(page) || PageWriteback(page)) + return 0; + if (page_mapped(page)) + return 0; + return invalidate_complete_page(mapping, page); +} + /** * truncate_inode_pages - truncate range of pages specified by start & end byte offsets * @mapping: mapping to truncate @@ -312,12 +330,8 @@ unsigned long invalidate_mapping_pages(struct address_space *mapping, if (lock_failed) continue; - if (PageDirty(page) || PageWriteback(page)) - goto unlock; - if (page_mapped(page)) - goto unlock; - ret += invalidate_complete_page(mapping, page); -unlock: + ret += invalidate_inode_page(page); + unlock_page(page); if (next > end) break;