diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2019-11-21 13:30:47 +0300 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2019-11-21 13:37:12 +0300 |
commit | 8f81180ac1837233a98a4e5b108df5874cf97836 (patch) | |
tree | e80ba3576af4ada7a91d21532591225a0e7f6dd4 /fs/gfs2 | |
parent | 2c47c1be51fbded1f7baa2ceaed90f97932f79be (diff) | |
download | linux-8f81180ac1837233a98a4e5b108df5874cf97836.tar.xz |
gfs2: Remove duplicate call from gfs2_create_inode
In gfs2_create_inode, gfs2_set_inode_blocks is called twice for no good reason.
Remove the unnecessary call.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/inode.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c index 4a1039c41c69..dafef10b91f1 100644 --- a/fs/gfs2/inode.c +++ b/fs/gfs2/inode.c @@ -656,7 +656,6 @@ static int gfs2_create_inode(struct inode *dir, struct dentry *dentry, inode->i_rdev = dev; inode->i_size = size; inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode); - gfs2_set_inode_blocks(inode, 1); munge_mode_uid_gid(dip, inode); check_and_update_goal(dip); ip->i_goal = dip->i_goal; |