mirror of https://gitee.com/openkylin/linux.git
ext4: use 'inode' variable that is already dereferenced
Tested: xfs tests Reviewed-by: Zheng Liu <wenqing.lz@taobao.com> Signed-off-by: Anatol Pomozov <anatol.pomozov@gmail.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
This commit is contained in:
parent
3779473246
commit
8d8c182570
|
@ -111,7 +111,7 @@ static int ext4_end_io(ext4_io_end_t *io)
|
|||
inode_dio_done(inode);
|
||||
/* Wake up anyone waiting on unwritten extent conversion */
|
||||
if (atomic_dec_and_test(&EXT4_I(inode)->i_unwritten))
|
||||
wake_up_all(ext4_ioend_wq(io->inode));
|
||||
wake_up_all(ext4_ioend_wq(inode));
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue