mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-09 22:50:41 +00:00
ext4: Use direct_IO_no_locking in ext4 dio read
Signed-off-by: Jiaying Zhang <jiayingz@google.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
This commit is contained in:
parent
744692dc05
commit
b7adc1f363
@ -3474,7 +3474,14 @@ static ssize_t ext4_ind_direct_IO(int rw, struct kiocb *iocb,
|
|||||||
}
|
}
|
||||||
|
|
||||||
retry:
|
retry:
|
||||||
ret = blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
|
if (rw == READ && ext4_should_dioread_nolock(inode))
|
||||||
|
ret = blockdev_direct_IO_no_locking(rw, iocb, inode,
|
||||||
|
inode->i_sb->s_bdev, iov,
|
||||||
|
offset, nr_segs,
|
||||||
|
ext4_get_block, NULL);
|
||||||
|
else
|
||||||
|
ret = blockdev_direct_IO(rw, iocb, inode,
|
||||||
|
inode->i_sb->s_bdev, iov,
|
||||||
offset, nr_segs,
|
offset, nr_segs,
|
||||||
ext4_get_block, NULL);
|
ext4_get_block, NULL);
|
||||||
if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
|
if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user