From: Lukas Czerner Date: Fri, 18 Apr 2014 14:21:15 +0000 (-0400) Subject: ext4: use truncate_pagecache() in collapse range X-Git-Tag: v4.9.8~6495^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=694c793fc1ade0946149c5f8d43f71e0728c4e81;p=platform%2Fkernel%2Flinux-rpi3.git ext4: use truncate_pagecache() in collapse range We should be using truncate_pagecache() instead of truncate_pagecache_range() in the collapse range because we're truncating page cache from offset to the end of file. truncate_pagecache() also get rid of the private COWed pages from the range because we're going to shift the end of the file. Signed-off-by: Lukas Czerner Signed-off-by: "Theodore Ts'o" --- diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 64b4003..3de9b2d 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -5437,7 +5437,7 @@ int ext4_collapse_range(struct inode *inode, loff_t offset, loff_t len) goto out_mutex; } - truncate_pagecache_range(inode, offset, -1); + truncate_pagecache(inode, offset); /* Wait for existing dio to complete */ ext4_inode_block_unlocked_dio(inode);