mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-30 12:13:51 -04:00
iomap: decouple simple direct I/O reads from iomap_dio_rw
The pending iomap_iter_next conversion creates performance issues for the new simple direct I/O read fast path, because it assumes a model where the iterator must be advanced at the end, which the direct I/O read fast path tries to avoid. Side step this by splitting the simple path from iomap_dio_rw, and require the file systems to call into it explicitly, and pass only a ->begin callback. This allows to drop various checks for incompatible features while creating a requirement for the file system to only call the simple path for cases that it can handle. As a side-benefit we can now inline the initial part of the simple direct I/O read fast path and let the compiler convert the indirect call to ->begin into a direct call. Reviewed-by: "Darrick J. Wong" <djwong@kernel.org> Reviewed-by: Fengnan Chang <changfengnan@bytedance.com> Reviewed-by: Joanne Koong <joannelkoong@gmail.com> Signed-off-by: Joanne Koong <joannelkoong@gmail.com> Signed-off-by: Christoph Hellwig <hch@lst.de> Link: https://patch.msgid.link/20260729192737.3190206-4-joannelkoong@gmail.com Signed-off-by: Christian Brauner (Amutable) <brauner@kernel.org>
This commit is contained in:
committed by
Christian Brauner
parent
19eb9f6ab5
commit
335d4b6201
@@ -4007,6 +4007,9 @@ static inline void ext4_clear_io_unwritten_flag(ext4_io_end_t *io_end)
|
||||
extern const struct iomap_ops ext4_iomap_ops;
|
||||
extern const struct iomap_ops ext4_iomap_report_ops;
|
||||
|
||||
int ext4_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
|
||||
unsigned flags, struct iomap *iomap, struct iomap *srcmap);
|
||||
|
||||
static inline int ext4_buffer_uptodate(struct buffer_head *bh)
|
||||
{
|
||||
/*
|
||||
|
||||
@@ -91,7 +91,9 @@ static ssize_t ext4_dio_read_iter(struct kiocb *iocb, struct iov_iter *to)
|
||||
return generic_file_read_iter(iocb, to);
|
||||
}
|
||||
|
||||
ret = iomap_dio_rw(iocb, to, &ext4_iomap_ops, NULL, 0, NULL, 0);
|
||||
ret = iomap_dio_read_simple(iocb, to, ext4_iomap_begin);
|
||||
if (ret == -ENOTBLK)
|
||||
ret = iomap_dio_rw(iocb, to, &ext4_iomap_ops, NULL, 0, NULL, 0);
|
||||
inode_unlock_shared(inode);
|
||||
|
||||
file_accessed(iocb->ki_filp);
|
||||
|
||||
@@ -3771,7 +3771,7 @@ static int ext4_iomap_alloc(struct inode *inode, struct ext4_map_blocks *map,
|
||||
}
|
||||
|
||||
|
||||
static int ext4_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
|
||||
int ext4_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
|
||||
unsigned flags, struct iomap *iomap, struct iomap *srcmap)
|
||||
{
|
||||
int ret;
|
||||
|
||||
@@ -894,6 +894,21 @@ __iomap_dio_rw(struct kiocb *iocb, struct iov_iter *iter,
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(__iomap_dio_rw);
|
||||
|
||||
ssize_t
|
||||
iomap_dio_rw(struct kiocb *iocb, struct iov_iter *iter,
|
||||
const struct iomap_ops *ops, const struct iomap_dio_ops *dops,
|
||||
unsigned int dio_flags, void *private, size_t done_before)
|
||||
{
|
||||
struct iomap_dio *dio;
|
||||
|
||||
dio = __iomap_dio_rw(iocb, iter, ops, dops, dio_flags, private,
|
||||
done_before);
|
||||
if (IS_ERR_OR_NULL(dio))
|
||||
return PTR_ERR_OR_ZERO(dio);
|
||||
return iomap_dio_complete(dio);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(iomap_dio_rw);
|
||||
|
||||
struct iomap_dio_simple {
|
||||
struct kiocb *iocb;
|
||||
size_t size;
|
||||
@@ -968,211 +983,88 @@ static void iomap_dio_simple_end_io(struct bio *bio)
|
||||
iocb->ki_complete(iocb, iomap_dio_simple_complete(sr));
|
||||
}
|
||||
|
||||
static inline bool
|
||||
iomap_dio_simple_supported(struct kiocb *iocb, struct iov_iter *iter,
|
||||
const struct iomap_dio_ops *dops,
|
||||
unsigned int dio_flags, size_t done_before)
|
||||
ssize_t __iomap_dio_read_simple(struct kiocb *iocb, struct iov_iter *iter,
|
||||
struct iomap_iter *iomi)
|
||||
{
|
||||
struct inode *inode = file_inode(iocb->ki_filp);
|
||||
size_t count = iov_iter_count(iter);
|
||||
|
||||
if (dops || done_before)
|
||||
return false;
|
||||
if (iov_iter_rw(iter) != READ)
|
||||
return false;
|
||||
if (!count)
|
||||
return false;
|
||||
/*
|
||||
* Simple dio is an optimization for small IO. Filter out large IO
|
||||
* early as it's the most common case to fail for typical direct IO
|
||||
* workloads.
|
||||
*/
|
||||
if (count > inode->i_sb->s_blocksize)
|
||||
return false;
|
||||
if (dio_flags & (IOMAP_DIO_FORCE_WAIT | IOMAP_DIO_PARTIAL |
|
||||
IOMAP_DIO_BOUNCE))
|
||||
return false;
|
||||
if (iocb->ki_pos + count > i_size_read(inode))
|
||||
return false;
|
||||
if (IS_ENCRYPTED(inode))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/*
|
||||
* Fast path for small, block-aligned direct I/Os that map to a single
|
||||
* contiguous on-disk extent.
|
||||
*
|
||||
* iomap_dio_simple_supported() enforces the cheap up-front constraints before
|
||||
* entering this path.
|
||||
*
|
||||
* @dops must be NULL: a non-NULL @dops means the caller wants its
|
||||
* ->end_io / ->submit_io hooks invoked, and in particular wants its bios to be
|
||||
* allocated from the filesystem-private @dops->bio_set (whose front_pad sizes a
|
||||
* filesystem-private wrapper around the bio). The fast path instead allocates
|
||||
* from the shared iomap_dio_simple_pool, whose front_pad matches struct
|
||||
* iomap_dio_simple; the two wrappers are not interchangeable, so we must fall
|
||||
* back to __iomap_dio_rw() in that case.
|
||||
*
|
||||
* @done_before must be zero: a non-zero caller-accumulated residual cannot be
|
||||
* carried through a single-bio inline completion.
|
||||
*
|
||||
* @iter must describe a non-empty READ no larger than the inode block size:
|
||||
* writes, zero-length I/O, and larger requests need the generic iomap direct
|
||||
* I/O path.
|
||||
*
|
||||
* @dio_flags must not request IOMAP_DIO_FORCE_WAIT, IOMAP_DIO_PARTIAL, or
|
||||
* IOMAP_DIO_BOUNCE: this path does not support forced waiting, partial direct
|
||||
* I/O, or bouncing. The range must also stay within i_size and encrypted
|
||||
* inodes must use the generic iomap direct I/O path.
|
||||
*
|
||||
* -ENOTBLK is the private sentinel returned by iomap_dio_simple() when it
|
||||
* decides the request does not fit the fast path. In that case we proceed to
|
||||
* the generic __iomap_dio_rw() slow path. Any other errno is a real result and
|
||||
* is propagated as-is, in particular -EAGAIN for IOCB_NOWAIT must reach the
|
||||
* caller.
|
||||
*/
|
||||
static ssize_t
|
||||
iomap_dio_simple(struct kiocb *iocb, struct iov_iter *iter,
|
||||
const struct iomap_ops *ops, void *private,
|
||||
unsigned int dio_flags)
|
||||
{
|
||||
struct inode *inode = file_inode(iocb->ki_filp);
|
||||
size_t count = iov_iter_count(iter);
|
||||
bool wait_for_completion = is_sync_kiocb(iocb);
|
||||
struct iomap_iter iomi = {
|
||||
.inode = inode,
|
||||
.pos = iocb->ki_pos,
|
||||
.len = count,
|
||||
.flags = IOMAP_DIRECT,
|
||||
.private = private,
|
||||
};
|
||||
struct iomap_dio_simple *sr;
|
||||
unsigned int alignment;
|
||||
struct bio *bio;
|
||||
ssize_t ret;
|
||||
|
||||
if (iocb->ki_flags & IOCB_NOWAIT)
|
||||
iomi.flags |= IOMAP_NOWAIT;
|
||||
|
||||
ret = kiocb_write_and_wait(iocb, count);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
inode_dio_begin(inode);
|
||||
|
||||
ret = ops->iomap_begin(inode, iomi.pos, count, iomi.flags,
|
||||
&iomi.iomap, &iomi.srcmap);
|
||||
if (ret) {
|
||||
inode_dio_end(inode);
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (iomi.iomap.type != IOMAP_MAPPED ||
|
||||
iomi.iomap.offset + iomi.iomap.length < iomi.pos + count ||
|
||||
(iomi.iomap.flags & IOMAP_F_INTEGRITY)) {
|
||||
if (iomi->iomap.type != IOMAP_MAPPED ||
|
||||
iomi->iomap.offset + iomi->iomap.length < iomi->pos + iomi->len ||
|
||||
(iomi->iomap.flags & IOMAP_F_INTEGRITY)) {
|
||||
ret = -ENOTBLK;
|
||||
goto out_iomap_end;
|
||||
goto out_dio_end;
|
||||
}
|
||||
|
||||
alignment = iomap_dio_alignment(inode, iomi.iomap.bdev, dio_flags);
|
||||
if ((iomi.pos | count) & (alignment - 1)) {
|
||||
alignment = iomap_dio_alignment(iomi->inode, iomi->iomap.bdev, 0);
|
||||
if ((iomi->pos | iomi->len) & (alignment - 1)) {
|
||||
ret = -EINVAL;
|
||||
goto out_iomap_end;
|
||||
goto out_dio_end;
|
||||
}
|
||||
|
||||
if (!wait_for_completion && unlikely(!inode->i_sb->s_dio_done_wq)) {
|
||||
ret = sb_init_dio_done_wq(inode->i_sb);
|
||||
if (unlikely(!iomi->inode->i_sb->s_dio_done_wq &&
|
||||
!is_sync_kiocb(iocb))) {
|
||||
ret = sb_init_dio_done_wq(iomi->inode->i_sb);
|
||||
if (ret < 0)
|
||||
goto out_iomap_end;
|
||||
goto out_dio_end;
|
||||
}
|
||||
|
||||
trace_iomap_dio_rw_begin(iocb, iter, dio_flags, 0);
|
||||
trace_iomap_dio_rw_begin(iocb, iter, 0, 0);
|
||||
|
||||
if (user_backed_iter(iter))
|
||||
dio_flags |= IOMAP_DIO_USER_BACKED;
|
||||
|
||||
bio = bio_alloc_bioset(iomi.iomap.bdev,
|
||||
bio = bio_alloc_bioset(iomi->iomap.bdev,
|
||||
bio_iov_vecs_to_alloc(iter, BIO_MAX_VECS),
|
||||
REQ_OP_READ, GFP_KERNEL, &iomap_dio_simple_pool);
|
||||
sr = container_of(bio, struct iomap_dio_simple, bio);
|
||||
sr->iocb = iocb;
|
||||
sr->dio_flags = dio_flags;
|
||||
sr->dio_flags = 0;
|
||||
|
||||
bio->bi_iter.bi_sector = iomap_sector(&iomi.iomap, iomi.pos);
|
||||
bio->bi_iter.bi_sector = iomap_sector(&iomi->iomap, iomi->pos);
|
||||
bio->bi_ioprio = iocb->ki_ioprio;
|
||||
|
||||
ret = bio_iov_iter_get_pages(bio, iter, alignment - 1);
|
||||
if (unlikely(ret))
|
||||
goto out_bio_put;
|
||||
|
||||
if (bio->bi_iter.bi_size != count) {
|
||||
if (bio->bi_iter.bi_size != iomi->len) {
|
||||
iov_iter_revert(iter, bio->bi_iter.bi_size);
|
||||
ret = -ENOTBLK;
|
||||
goto out_bio_release_pages;
|
||||
}
|
||||
|
||||
sr->size = bio->bi_iter.bi_size;
|
||||
|
||||
if (dio_flags & IOMAP_DIO_USER_BACKED)
|
||||
if (user_backed_iter(iter)) {
|
||||
bio_set_pages_dirty(bio);
|
||||
sr->dio_flags |= IOMAP_DIO_USER_BACKED;
|
||||
}
|
||||
|
||||
if (iocb->ki_flags & IOCB_NOWAIT)
|
||||
bio->bi_opf |= REQ_NOWAIT;
|
||||
if ((iocb->ki_flags & IOCB_HIPRI) && !wait_for_completion) {
|
||||
|
||||
if (is_sync_kiocb(iocb)) {
|
||||
submit_bio_wait(bio);
|
||||
return iomap_dio_simple_complete(sr);
|
||||
}
|
||||
|
||||
if ((iocb->ki_flags & IOCB_HIPRI)) {
|
||||
bio->bi_opf |= REQ_POLLED;
|
||||
WRITE_ONCE(iocb->private, bio);
|
||||
}
|
||||
|
||||
if (ops->iomap_end)
|
||||
ops->iomap_end(inode, iomi.pos, count, count, iomi.flags,
|
||||
&iomi.iomap);
|
||||
|
||||
if (!wait_for_completion) {
|
||||
bio->bi_end_io = iomap_dio_simple_end_io;
|
||||
submit_bio(bio);
|
||||
trace_iomap_dio_rw_queued(inode, iomi.pos, count);
|
||||
return -EIOCBQUEUED;
|
||||
}
|
||||
|
||||
submit_bio_wait(bio);
|
||||
return iomap_dio_simple_complete(sr);
|
||||
bio->bi_end_io = iomap_dio_simple_end_io;
|
||||
submit_bio(bio);
|
||||
trace_iomap_dio_rw_queued(iomi->inode, iocb->ki_pos, iomi->len);
|
||||
return -EIOCBQUEUED;
|
||||
|
||||
out_bio_release_pages:
|
||||
bio_release_pages(bio, false);
|
||||
out_bio_put:
|
||||
bio_put(bio);
|
||||
out_iomap_end:
|
||||
if (ops->iomap_end)
|
||||
ops->iomap_end(inode, iomi.pos, count, 0, iomi.flags,
|
||||
&iomi.iomap);
|
||||
inode_dio_end(inode);
|
||||
out_dio_end:
|
||||
inode_dio_end(iomi->inode);
|
||||
return ret;
|
||||
}
|
||||
|
||||
ssize_t
|
||||
iomap_dio_rw(struct kiocb *iocb, struct iov_iter *iter,
|
||||
const struct iomap_ops *ops, const struct iomap_dio_ops *dops,
|
||||
unsigned int dio_flags, void *private, size_t done_before)
|
||||
{
|
||||
struct iomap_dio *dio;
|
||||
ssize_t ret;
|
||||
|
||||
if (iomap_dio_simple_supported(iocb, iter, dops, dio_flags,
|
||||
done_before)) {
|
||||
ret = iomap_dio_simple(iocb, iter, ops, private, dio_flags);
|
||||
if (ret != -ENOTBLK)
|
||||
return ret;
|
||||
}
|
||||
|
||||
dio = __iomap_dio_rw(iocb, iter, ops, dops, dio_flags, private,
|
||||
done_before);
|
||||
if (IS_ERR_OR_NULL(dio))
|
||||
return PTR_ERR_OR_ZERO(dio);
|
||||
return iomap_dio_complete(dio);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(iomap_dio_rw);
|
||||
EXPORT_SYMBOL_GPL(__iomap_dio_read_simple);
|
||||
|
||||
static int __init iomap_dio_init(void)
|
||||
{
|
||||
|
||||
@@ -251,8 +251,6 @@ xfs_file_dio_read(
|
||||
struct iov_iter *to)
|
||||
{
|
||||
struct xfs_inode *ip = XFS_I(file_inode(iocb->ki_filp));
|
||||
unsigned int dio_flags = 0;
|
||||
const struct iomap_dio_ops *dio_ops = NULL;
|
||||
ssize_t ret;
|
||||
|
||||
trace_xfs_file_direct_read(iocb, to);
|
||||
@@ -266,11 +264,15 @@ xfs_file_dio_read(
|
||||
if (ret)
|
||||
return ret;
|
||||
if (mapping_stable_writes(iocb->ki_filp->f_mapping)) {
|
||||
dio_ops = &xfs_dio_read_bounce_ops;
|
||||
dio_flags |= IOMAP_DIO_BOUNCE;
|
||||
ret = iomap_dio_rw(iocb, to, &xfs_read_iomap_ops,
|
||||
&xfs_dio_read_bounce_ops, IOMAP_DIO_BOUNCE,
|
||||
NULL, 0);
|
||||
} else {
|
||||
ret = iomap_dio_read_simple(iocb, to, xfs_read_iomap_begin);
|
||||
if (ret == -ENOTBLK)
|
||||
ret = iomap_dio_rw(iocb, to, &xfs_read_iomap_ops, NULL,
|
||||
0, NULL, 0);
|
||||
}
|
||||
ret = iomap_dio_rw(iocb, to, &xfs_read_iomap_ops, dio_ops, dio_flags,
|
||||
NULL, 0);
|
||||
xfs_iunlock(ip, XFS_IOLOCK_SHARED);
|
||||
|
||||
return ret;
|
||||
|
||||
@@ -2173,7 +2173,7 @@ const struct iomap_ops xfs_buffered_write_iomap_ops = {
|
||||
.iomap_end = xfs_buffered_write_iomap_end,
|
||||
};
|
||||
|
||||
static int
|
||||
int
|
||||
xfs_read_iomap_begin(
|
||||
struct inode *inode,
|
||||
loff_t offset,
|
||||
|
||||
@@ -49,6 +49,10 @@ xfs_aligned_fsb_count(
|
||||
return count_fsb;
|
||||
}
|
||||
|
||||
int xfs_read_iomap_begin(struct inode *inode, loff_t offset,
|
||||
loff_t length, unsigned flags, struct iomap *iomap,
|
||||
struct iomap *srcmap);
|
||||
|
||||
extern const struct iomap_ops xfs_buffered_write_iomap_ops;
|
||||
extern const struct iomap_ops xfs_direct_write_iomap_ops;
|
||||
extern const struct iomap_ops xfs_zoned_direct_write_iomap_ops;
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
#include <linux/mm_types.h>
|
||||
#include <linux/blkdev.h>
|
||||
#include <linux/folio_batch.h>
|
||||
#include <linux/pagemap.h>
|
||||
|
||||
struct address_space;
|
||||
struct fiemap_extent_info;
|
||||
@@ -675,6 +676,71 @@ struct iomap_dio *__iomap_dio_rw(struct kiocb *iocb, struct iov_iter *iter,
|
||||
ssize_t iomap_dio_complete(struct iomap_dio *dio);
|
||||
void iomap_dio_bio_end_io(struct bio *bio);
|
||||
|
||||
/*
|
||||
* Fast path for small, block-aligned direct I/Os that map to a single
|
||||
* contiguous on-disk extent.
|
||||
*
|
||||
* @iter must describe a non-empty READ no larger than the inode block size:
|
||||
* writes, zero-length I/O, and larger requests need the generic iomap direct
|
||||
* I/O path.
|
||||
*
|
||||
* Does not support iomap_dio_ops, dio_flags, done_before or private data.
|
||||
* The range must also stay within i_size and encrypted inodes must use the
|
||||
* generic iomap direct I/O path.
|
||||
*
|
||||
* -ENOTBLK indicates the generic path must be used by the caller instead.
|
||||
* Any other errno is a real result and is propagated as-is, in particular
|
||||
* -EAGAIN for IOCB_NOWAIT must reach the caller.
|
||||
*
|
||||
* The caller can only provide an iomap begin handler, and the iterator
|
||||
* is never advanced.
|
||||
*/
|
||||
ssize_t __iomap_dio_read_simple(struct kiocb *iocb, struct iov_iter *iter,
|
||||
struct iomap_iter *iomi);
|
||||
static __always_inline ssize_t iomap_dio_read_simple(struct kiocb *iocb,
|
||||
struct iov_iter *iter, iomap_iter_begin_fn begin)
|
||||
{
|
||||
struct iomap_iter iomi = {
|
||||
.inode = file_inode(iocb->ki_filp),
|
||||
.pos = iocb->ki_pos,
|
||||
.len = iov_iter_count(iter),
|
||||
.flags = IOMAP_DIRECT,
|
||||
};
|
||||
ssize_t ret;
|
||||
|
||||
if (!iomi.len)
|
||||
return 0;
|
||||
|
||||
/*
|
||||
* Simple dio is an optimization for small IO. Filter out large IO
|
||||
* early as it's the most common case to fail for typical direct IO
|
||||
* workloads.
|
||||
*/
|
||||
if (iomi.len > iomi.inode->i_sb->s_blocksize)
|
||||
return -ENOTBLK;
|
||||
if (iocb->ki_pos + iomi.len > i_size_read(iomi.inode))
|
||||
return -ENOTBLK;
|
||||
if (IS_ENCRYPTED(iomi.inode))
|
||||
return -ENOTBLK;
|
||||
|
||||
ret = kiocb_write_and_wait(iocb, iomi.len);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
if (iocb->ki_flags & IOCB_NOWAIT)
|
||||
iomi.flags |= IOMAP_NOWAIT;
|
||||
|
||||
inode_dio_begin(iomi.inode);
|
||||
ret = begin(iomi.inode, iomi.pos, iomi.len, iomi.flags, &iomi.iomap,
|
||||
&iomi.srcmap);
|
||||
if (ret) {
|
||||
inode_dio_end(iomi.inode);
|
||||
return ret;
|
||||
}
|
||||
|
||||
return __iomap_dio_read_simple(iocb, iter, &iomi);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_SWAP
|
||||
struct file;
|
||||
struct swap_info_struct;
|
||||
|
||||
Reference in New Issue
Block a user