diff options
author | Mark Fasheh <mark.fasheh@oracle.com> | 2007-05-14 11:39:40 -0700 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2007-05-25 11:00:31 -0700 |
commit | 1024c902abdcbd2425aa850d7ef04e013ffb35f0 (patch) | |
tree | 7071322e8a1c2dfddf9b8fe3ebd758400ae970fe /fs/ocfs2/file.c | |
parent | e9dfc0b2bc42761410e8db6c252c6c5889e178b8 (diff) |
ocfs2: unmap_mapping_range() in ocfs2_truncate()
We weren't calling this before, but since ocfs2 handles the entire truncate
operation, we should.
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2/file.c')
-rw-r--r-- | fs/ocfs2/file.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index 9395b4fa547d..d459eb93b70c 100644 --- a/fs/ocfs2/file.c +++ b/fs/ocfs2/file.c @@ -326,6 +326,7 @@ static int ocfs2_truncate_file(struct inode *inode, (unsigned long long)OCFS2_I(inode)->ip_blkno, (unsigned long long)new_i_size); + unmap_mapping_range(inode->i_mapping, new_i_size + PAGE_SIZE - 1, 0, 1); truncate_inode_pages(inode->i_mapping, new_i_size); fe = (struct ocfs2_dinode *) di_bh->b_data; |