Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mm: never attempt async page lock if we've transferred data already
We catch the case where we enter generic_file_buffered_read() with data already transferred, but we also need to be careful not to allow an async page lock if we're looping transferring data. If not, we could be returning -EIOCBQUEUED instead of the transferred amount, and it could result in double waitqueue additions as well. Cc: [email protected] # v5.9 Fixes: 1a0a785 ("mm: support async buffered reads in generic_file_buffered_read()") Signed-off-by: Jens Axboe <[email protected]>
- Loading branch information