aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs
diff options
context:
space:
mode:
authorLukas Czerner <lczerner@redhat.com>2013-05-21 23:17:23 -0400
committerTheodore Ts'o <tytso@mit.edu>2013-05-21 23:17:23 -0400
commitd47992f86b307985b3215bcf141d56d1849d71df (patch)
treee1ae47bd19185371462c5a273c15276534447349 /fs/xfs
parentc7788792a5e7b0d5d7f96d0766b4cb6112d47d75 (diff)
mm: change invalidatepage prototype to accept length
Currently there is no way to truncate partial page where the end truncate point is not at the end of the page. This is because it was not needed and the functionality was enough for file system truncate operation to work properly. However more file systems now support punch hole feature and it can benefit from mm supporting truncating page just up to the certain point. Specifically, with this functionality truncate_inode_pages_range() can be changed so it supports truncating partial page at the end of the range (currently it will BUG_ON() if 'end' is not at the end of the page). This commit changes the invalidatepage() address space operation prototype to accept range to be invalidated and update all the instances for it. We also change the block_invalidatepage() in the same way and actually make a use of the new length argument implementing range invalidation. Actual file system implementations will follow except the file systems where the changes are really simple and should not change the behaviour in any way .Implementation for truncate_page_range() which will be able to accept page unaligned ranges will follow as well. Signed-off-by: Lukas Czerner <lczerner@redhat.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Hugh Dickins <hughd@google.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r--fs/xfs/xfs_aops.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/xfs/xfs_aops.c b/fs/xfs/xfs_aops.c
index 2b2691b73428..a8f63f38b8f7 100644
--- a/fs/xfs/xfs_aops.c
+++ b/fs/xfs/xfs_aops.c
@@ -824,10 +824,11 @@ xfs_cluster_write(
824STATIC void 824STATIC void
825xfs_vm_invalidatepage( 825xfs_vm_invalidatepage(
826 struct page *page, 826 struct page *page,
827 unsigned long offset) 827 unsigned int offset,
828 unsigned int length)
828{ 829{
829 trace_xfs_invalidatepage(page->mapping->host, page, offset); 830 trace_xfs_invalidatepage(page->mapping->host, page, offset);
830 block_invalidatepage(page, offset); 831 block_invalidatepage(page, offset, PAGE_CACHE_SIZE - offset);
831} 832}
832 833
833/* 834/*
@@ -891,7 +892,7 @@ next_buffer:
891 892
892 xfs_iunlock(ip, XFS_ILOCK_EXCL); 893 xfs_iunlock(ip, XFS_ILOCK_EXCL);
893out_invalidate: 894out_invalidate:
894 xfs_vm_invalidatepage(page, 0); 895 xfs_vm_invalidatepage(page, 0, PAGE_CACHE_SIZE);
895 return; 896 return;
896} 897}
897 898