diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-02-01 11:45:53 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-02-01 11:45:53 -0800 |
commit | 49a4be2c845e3a9efebb1e16a7ef379c1fd37664 (patch) | |
tree | 9efa6bf172dde0673c30cb5d0c27561601086c7f | |
parent | 5c24e4e9e70822cf49955fc8174bc5efaa93d17f (diff) | |
parent | 0991abeddefa118479b0af32c28bcd662dec1561 (diff) | |
download | linux-stable-49a4be2c845e3a9efebb1e16a7ef379c1fd37664.tar.gz linux-stable-49a4be2c845e3a9efebb1e16a7ef379c1fd37664.tar.bz2 linux-stable-49a4be2c845e3a9efebb1e16a7ef379c1fd37664.zip |
Merge tag 'exfat-for-6.8-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat
Pull exfat fix from Namjae Jeon:
- Fix BUG in iov_iter_revert reported from syzbot
* tag 'exfat-for-6.8-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat:
exfat: fix zero the unwritten part for dio read
-rw-r--r-- | fs/exfat/inode.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/exfat/inode.c b/fs/exfat/inode.c index 522edcbb2ce4..0687f952956c 100644 --- a/fs/exfat/inode.c +++ b/fs/exfat/inode.c @@ -501,7 +501,7 @@ static ssize_t exfat_direct_IO(struct kiocb *iocb, struct iov_iter *iter) struct inode *inode = mapping->host; struct exfat_inode_info *ei = EXFAT_I(inode); loff_t pos = iocb->ki_pos; - loff_t size = iocb->ki_pos + iov_iter_count(iter); + loff_t size = pos + iov_iter_count(iter); int rw = iov_iter_rw(iter); ssize_t ret; @@ -525,11 +525,10 @@ static ssize_t exfat_direct_IO(struct kiocb *iocb, struct iov_iter *iter) */ ret = blockdev_direct_IO(iocb, inode, iter, exfat_get_block); if (ret < 0) { - if (rw == WRITE) + if (rw == WRITE && ret != -EIOCBQUEUED) exfat_write_failed(mapping, size); - if (ret != -EIOCBQUEUED) - return ret; + return ret; } else size = pos + ret; |