diff options
Diffstat (limited to 'fs/gfs2/ops_inode.c')
| -rw-r--r-- | fs/gfs2/ops_inode.c | 18 | 
1 files changed, 12 insertions, 6 deletions
diff --git a/fs/gfs2/ops_inode.c b/fs/gfs2/ops_inode.c index 98cdd05f331..1009be2c973 100644 --- a/fs/gfs2/ops_inode.c +++ b/fs/gfs2/ops_inode.c @@ -1072,7 +1072,7 @@ int gfs2_permission(struct inode *inode, int mask)  }  /* - * XXX: should be changed to have proper ordering by opencoding simple_setsize + * XXX(truncate): the truncate_setsize calls should be moved to the end.   */  static int setattr_size(struct inode *inode, struct iattr *attr)  { @@ -1084,10 +1084,8 @@ static int setattr_size(struct inode *inode, struct iattr *attr)  		error = gfs2_trans_begin(sdp, 0, sdp->sd_jdesc->jd_blocks);  		if (error)  			return error; -		error = simple_setsize(inode, attr->ia_size); +		truncate_setsize(inode, attr->ia_size);  		gfs2_trans_end(sdp); -		if (error)  -			return error;  	}  	error = gfs2_truncatei(ip, attr->ia_size); @@ -1136,8 +1134,16 @@ static int setattr_chown(struct inode *inode, struct iattr *attr)  	if (error)  		goto out_end_trans; -	error = inode_setattr(inode, attr); -	gfs2_assert_warn(sdp, !error); +	if ((attr->ia_valid & ATTR_SIZE) && +	    attr->ia_size != i_size_read(inode)) { +		int error; + +		error = vmtruncate(inode, attr->ia_size); +		gfs2_assert_warn(sdp, !error); +	} + +	setattr_copy(inode, attr); +	mark_inode_dirty(inode);  	gfs2_trans_add_bh(ip->i_gl, dibh, 1);  	gfs2_dinode_out(ip, dibh->b_data);  |