aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/ops_address.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/gfs2/ops_address.c')
-rw-r--r--fs/gfs2/ops_address.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/fs/gfs2/ops_address.c b/fs/gfs2/ops_address.c
index e16ad8104495..37406a379e7a 100644
--- a/fs/gfs2/ops_address.c
+++ b/fs/gfs2/ops_address.c
@@ -848,14 +848,11 @@ static int gfs2_write_end(struct file *file, struct address_space *mapping,
848 848
849 ret = generic_write_end(file, mapping, pos, len, copied, page, fsdata); 849 ret = generic_write_end(file, mapping, pos, len, copied, page, fsdata);
850 850
851 if (likely(ret >= 0)) { 851 if (likely(ret >= 0) && (inode->i_size > ip->i_di.di_size)) {
852 copied = ret; 852 di = (struct gfs2_dinode *)dibh->b_data;
853 if ((pos + copied) > inode->i_size) { 853 ip->i_di.di_size = inode->i_size;
854 di = (struct gfs2_dinode *)dibh->b_data; 854 di->di_size = cpu_to_be64(inode->i_size);
855 ip->i_di.di_size = inode->i_size; 855 mark_inode_dirty(inode);
856 di->di_size = cpu_to_be64(inode->i_size);
857 mark_inode_dirty(inode);
858 }
859 } 856 }
860 857
861 if (inode == sdp->sd_rindex) 858 if (inode == sdp->sd_rindex)