From: Lukas Czerner Date: Tue, 28 May 2013 03:32:35 +0000 (-0400) Subject: ext4: truncate_inode_pages() in orphan cleanup path X-Git-Tag: upstream/snapshot3+hdmi~4666^2~84 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=55f252c9f50e998f6bc3aadc7806f049f7443d21;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git ext4: truncate_inode_pages() in orphan cleanup path Currently we do not tell mm to zero out tail of the page before truncate in orphan_cleanup(). This is ok, because the page should not be uptodate, however this may eventually change and I might cause problems. Call truncate_inode_pages() as precautionary measure. Thanks Jan Kara for pointing this out. Signed-off-by: Lukas Czerner Signed-off-by: Theodore Ts'o --- diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 94cc84d..c468560 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -2170,6 +2170,7 @@ static void ext4_orphan_cleanup(struct super_block *sb, jbd_debug(2, "truncating inode %lu to %lld bytes\n", inode->i_ino, inode->i_size); mutex_lock(&inode->i_mutex); + truncate_inode_pages(inode->i_mapping, inode->i_size); ext4_truncate(inode); mutex_unlock(&inode->i_mutex); nr_truncates++;