Skip to content

Commit

Permalink
ext4: remove duplicate call to ext4_bread() in ext4_init_new_dir()
Browse files Browse the repository at this point in the history
This fixes a buffer cache leak when creating a directory, introduced
in commit a774f9c.

Signed-off-by: Guo Chao <yan@linux.vnet.ibm.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Reviewed-by: Tao Ma <boyu.mt@taobao.com>
  • Loading branch information
Guo Chao authored and Theodore Ts'o committed Jan 7, 2013
1 parent 0ecaef0 commit fef0ebd
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion fs/ext4/namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -2368,7 +2368,6 @@ static int ext4_init_new_dir(handle_t *handle, struct inode *dir,
}

inode->i_size = EXT4_I(inode)->i_disksize = blocksize;
dir_block = ext4_bread(handle, inode, 0, 1, &err);
if (!(dir_block = ext4_bread(handle, inode, 0, 1, &err))) {
if (!err) {
err = -EIO;
Expand Down

0 comments on commit fef0ebd

Please sign in to comment.