diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2010-11-09 15:09:53 +0100 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2010-11-30 11:22:48 +0100 |
commit | 9e55cd53728719ac3a3234a6618259ab8e203a10 (patch) | |
tree | 65888b1c6fafcc94520891c810384dbcd0e2ba0c /fs/gfs2/xattr.c | |
parent | GFS2: fs/gfs2/glock.c: Convert sprintf_symbol to %pS (diff) | |
download | linux-9e55cd53728719ac3a3234a6618259ab8e203a10.tar.xz linux-9e55cd53728719ac3a3234a6618259ab8e203a10.zip |
GFS2: Remove unreachable calls to vmtruncate
Suggested-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/xattr.c')
-rw-r--r-- | fs/gfs2/xattr.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/fs/gfs2/xattr.c b/fs/gfs2/xattr.c index 30b58f07c8a6..ecfd40dd28ad 100644 --- a/fs/gfs2/xattr.c +++ b/fs/gfs2/xattr.c @@ -1325,17 +1325,8 @@ int gfs2_xattr_acl_chmod(struct gfs2_inode *ip, struct iattr *attr, char *data) if (error) goto out_trans_end; - if ((attr->ia_valid & ATTR_SIZE) && - attr->ia_size != i_size_read(inode)) { - int error; - - error = vmtruncate(inode, attr->ia_size); - gfs2_assert_warn(GFS2_SB(inode), !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); brelse(dibh); |