mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 06:49:29 -04:00
btrfs: account that we're waiting for DIO read
Correctly account for IO when waiting for a submitted DIO read, the case when we're retrying. This only for the accounting purposes and should not change other behaviour. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
@@ -8133,7 +8133,7 @@ static int __btrfs_correct_data_nocsum(struct inode *inode,
|
||||
goto next;
|
||||
}
|
||||
|
||||
wait_for_completion(&done.done);
|
||||
wait_for_completion_io(&done.done);
|
||||
|
||||
if (!done.uptodate) {
|
||||
/* We might have another mirror, so try again */
|
||||
@@ -8247,7 +8247,7 @@ static blk_status_t __btrfs_subio_endio_read(struct inode *inode,
|
||||
goto next;
|
||||
}
|
||||
|
||||
wait_for_completion(&done.done);
|
||||
wait_for_completion_io(&done.done);
|
||||
|
||||
if (!done.uptodate) {
|
||||
/* We might have another mirror, so try again */
|
||||
|
||||
Reference in New Issue
Block a user