2022-05-25 05:59:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
|
#include <linux/errno.h>
|
|
|
|
|
#include <linux/file.h>
|
2023-12-01 00:57:35 +00:00
|
|
|
#include <linux/io_uring/cmd.h>
|
2022-07-15 12:16:22 -07:00
|
|
|
#include <linux/security.h>
|
2022-09-30 11:57:39 +05:30
|
|
|
#include <linux/nospec.h>
|
2022-05-25 05:59:19 -06:00
|
|
|
|
|
|
|
|
#include <uapi/linux/io_uring.h>
|
|
|
|
|
|
|
|
|
|
#include "io_uring.h"
|
2024-03-20 15:19:44 -06:00
|
|
|
#include "alloc_cache.h"
|
2022-09-30 11:57:38 +05:30
|
|
|
#include "rsrc.h"
|
2022-05-25 05:59:19 -06:00
|
|
|
#include "uring_cmd.h"
|
2025-06-16 10:46:27 +01:00
|
|
|
#include "poll.h"
|
2022-05-25 05:59:19 -06:00
|
|
|
|
2025-03-21 18:04:33 +00:00
|
|
|
void io_cmd_cache_free(const void *entry)
|
|
|
|
|
{
|
|
|
|
|
struct io_async_cmd *ac = (struct io_async_cmd *)entry;
|
|
|
|
|
|
|
|
|
|
io_vec_free(&ac->vec);
|
|
|
|
|
kfree(ac);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-18 20:41:58 -06:00
|
|
|
static void io_req_uring_cleanup(struct io_kiocb *req, unsigned int issue_flags)
|
|
|
|
|
{
|
|
|
|
|
struct io_uring_cmd *ioucmd = io_kiocb_to_cmd(req, struct io_uring_cmd);
|
2025-03-19 06:12:48 +00:00
|
|
|
struct io_async_cmd *ac = req->async_data;
|
2024-03-18 20:41:58 -06:00
|
|
|
|
|
|
|
|
if (issue_flags & IO_URING_F_UNLOCKED)
|
|
|
|
|
return;
|
2025-03-21 18:04:33 +00:00
|
|
|
|
|
|
|
|
io_alloc_cache_vec_kasan(&ac->vec);
|
|
|
|
|
if (ac->vec.nr > IO_VEC_CACHE_SOFT_CAP)
|
|
|
|
|
io_vec_free(&ac->vec);
|
|
|
|
|
|
2025-07-08 14:22:12 -06:00
|
|
|
if (io_alloc_cache_put(&req->ctx->cmd_cache, ac)) {
|
2024-03-18 20:41:58 -06:00
|
|
|
ioucmd->sqe = NULL;
|
|
|
|
|
req->async_data = NULL;
|
2025-03-21 18:04:33 +00:00
|
|
|
req->flags &= ~(REQ_F_ASYNC_DATA|REQ_F_NEED_CLEANUP);
|
2024-03-18 20:41:58 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-21 18:04:33 +00:00
|
|
|
void io_uring_cmd_cleanup(struct io_kiocb *req)
|
|
|
|
|
{
|
|
|
|
|
io_req_uring_cleanup(req, 0);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-18 22:00:23 +00:00
|
|
|
bool io_uring_try_cancel_uring_cmd(struct io_ring_ctx *ctx,
|
2024-11-03 10:22:43 -07:00
|
|
|
struct io_uring_task *tctx, bool cancel_all)
|
2024-03-18 22:00:23 +00:00
|
|
|
{
|
|
|
|
|
struct hlist_node *tmp;
|
|
|
|
|
struct io_kiocb *req;
|
|
|
|
|
bool ret = false;
|
|
|
|
|
|
|
|
|
|
lockdep_assert_held(&ctx->uring_lock);
|
|
|
|
|
|
|
|
|
|
hlist_for_each_entry_safe(req, tmp, &ctx->cancelable_uring_cmd,
|
|
|
|
|
hash_node) {
|
|
|
|
|
struct io_uring_cmd *cmd = io_kiocb_to_cmd(req,
|
|
|
|
|
struct io_uring_cmd);
|
|
|
|
|
struct file *file = req->file;
|
|
|
|
|
|
io_uring: move struct io_kiocb from task_struct to io_uring_task
Rather than store the task_struct itself in struct io_kiocb, store
the io_uring specific task_struct. The life times are the same in terms
of io_uring, and this avoids doing some dereferences through the
task_struct. For the hot path of putting local task references, we can
deref req->tctx instead, which we'll need anyway in that function
regardless of whether it's local or remote references.
This is mostly straight forward, except the original task PF_EXITING
check needs a bit of tweaking. task_work is _always_ run from the
originating task, except in the fallback case, where it's run from a
kernel thread. Replace the potentially racy (in case of fallback work)
checks for req->task->flags with current->flags. It's either the still
the original task, in which case PF_EXITING will be sane, or it has
PF_KTHREAD set, in which case it's fallback work. Both cases should
prevent moving forward with the given request.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
2024-11-03 10:23:38 -07:00
|
|
|
if (!cancel_all && req->tctx != tctx)
|
2024-03-18 22:00:23 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (cmd->flags & IORING_URING_CMD_CANCELABLE) {
|
2024-03-18 22:00:25 +00:00
|
|
|
file->f_op->uring_cmd(cmd, IO_URING_F_CANCEL |
|
|
|
|
|
IO_URING_F_COMPLETE_DEFER);
|
2024-03-18 22:00:23 +00:00
|
|
|
ret = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
io_submit_flush_completions(ctx);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-28 20:43:25 +08:00
|
|
|
static void io_uring_cmd_del_cancelable(struct io_uring_cmd *cmd,
|
|
|
|
|
unsigned int issue_flags)
|
|
|
|
|
{
|
|
|
|
|
struct io_kiocb *req = cmd_to_io_kiocb(cmd);
|
|
|
|
|
struct io_ring_ctx *ctx = req->ctx;
|
|
|
|
|
|
|
|
|
|
if (!(cmd->flags & IORING_URING_CMD_CANCELABLE))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
cmd->flags &= ~IORING_URING_CMD_CANCELABLE;
|
|
|
|
|
io_ring_submit_lock(ctx, issue_flags);
|
|
|
|
|
hlist_del(&req->hash_node);
|
|
|
|
|
io_ring_submit_unlock(ctx, issue_flags);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Mark this command as concelable, then io_uring_try_cancel_uring_cmd()
|
|
|
|
|
* will try to cancel this issued command by sending ->uring_cmd() with
|
|
|
|
|
* issue_flags of IO_URING_F_CANCEL.
|
|
|
|
|
*
|
|
|
|
|
* The command is guaranteed to not be done when calling ->uring_cmd()
|
|
|
|
|
* with IO_URING_F_CANCEL, but it is driver's responsibility to deal
|
|
|
|
|
* with race between io_uring canceling and normal completion.
|
|
|
|
|
*/
|
|
|
|
|
void io_uring_cmd_mark_cancelable(struct io_uring_cmd *cmd,
|
|
|
|
|
unsigned int issue_flags)
|
|
|
|
|
{
|
|
|
|
|
struct io_kiocb *req = cmd_to_io_kiocb(cmd);
|
|
|
|
|
struct io_ring_ctx *ctx = req->ctx;
|
|
|
|
|
|
|
|
|
|
if (!(cmd->flags & IORING_URING_CMD_CANCELABLE)) {
|
|
|
|
|
cmd->flags |= IORING_URING_CMD_CANCELABLE;
|
|
|
|
|
io_ring_submit_lock(ctx, issue_flags);
|
|
|
|
|
hlist_add_head(&req->hash_node, &ctx->cancelable_uring_cmd);
|
|
|
|
|
io_ring_submit_unlock(ctx, issue_flags);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
EXPORT_SYMBOL_GPL(io_uring_cmd_mark_cancelable);
|
|
|
|
|
|
2025-02-16 19:25:04 -07:00
|
|
|
static void io_uring_cmd_work(struct io_kiocb *req, io_tw_token_t tw)
|
2022-05-25 05:59:19 -06:00
|
|
|
{
|
2022-08-11 09:11:15 +02:00
|
|
|
struct io_uring_cmd *ioucmd = io_kiocb_to_cmd(req, struct io_uring_cmd);
|
2024-11-04 16:12:04 +00:00
|
|
|
unsigned int flags = IO_URING_F_COMPLETE_DEFER;
|
|
|
|
|
|
2025-01-15 15:40:48 +00:00
|
|
|
if (io_should_terminate_tw())
|
2024-11-04 16:12:04 +00:00
|
|
|
flags |= IO_URING_F_TASK_DEAD;
|
2024-03-18 22:00:25 +00:00
|
|
|
|
2024-03-18 22:00:30 +00:00
|
|
|
/* task_work executor checks the deffered list completion */
|
2024-11-04 16:12:04 +00:00
|
|
|
ioucmd->task_work_cb(ioucmd, flags);
|
2022-05-25 05:59:19 -06:00
|
|
|
}
|
|
|
|
|
|
2023-05-15 13:54:42 +01:00
|
|
|
void __io_uring_cmd_do_in_task(struct io_uring_cmd *ioucmd,
|
|
|
|
|
void (*task_work_cb)(struct io_uring_cmd *, unsigned),
|
|
|
|
|
unsigned flags)
|
2022-05-25 05:59:19 -06:00
|
|
|
{
|
|
|
|
|
struct io_kiocb *req = cmd_to_io_kiocb(ioucmd);
|
|
|
|
|
|
2025-06-16 10:46:27 +01:00
|
|
|
if (WARN_ON_ONCE(req->flags & REQ_F_APOLL_MULTISHOT))
|
|
|
|
|
return;
|
|
|
|
|
|
2022-05-25 05:59:19 -06:00
|
|
|
ioucmd->task_work_cb = task_work_cb;
|
|
|
|
|
req->io_task_work.func = io_uring_cmd_work;
|
2023-05-15 13:54:42 +01:00
|
|
|
__io_req_task_work_add(req, flags);
|
|
|
|
|
}
|
|
|
|
|
EXPORT_SYMBOL_GPL(__io_uring_cmd_do_in_task);
|
|
|
|
|
|
2022-05-25 05:59:19 -06:00
|
|
|
static inline void io_req_set_cqe32_extra(struct io_kiocb *req,
|
|
|
|
|
u64 extra1, u64 extra2)
|
|
|
|
|
{
|
2023-08-24 23:53:25 +01:00
|
|
|
req->big_cqe.extra1 = extra1;
|
|
|
|
|
req->big_cqe.extra2 = extra2;
|
2022-05-25 05:59:19 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Called by consumers of io_uring_cmd, if they originally returned
|
|
|
|
|
* -EIOCBQUEUED upon receiving the command.
|
|
|
|
|
*/
|
2024-12-03 11:31:05 +01:00
|
|
|
void io_uring_cmd_done(struct io_uring_cmd *ioucmd, ssize_t ret, u64 res2,
|
2023-03-20 20:01:25 -06:00
|
|
|
unsigned issue_flags)
|
2022-05-25 05:59:19 -06:00
|
|
|
{
|
|
|
|
|
struct io_kiocb *req = cmd_to_io_kiocb(ioucmd);
|
|
|
|
|
|
2025-06-16 10:46:27 +01:00
|
|
|
if (WARN_ON_ONCE(req->flags & REQ_F_APOLL_MULTISHOT))
|
|
|
|
|
return;
|
|
|
|
|
|
2023-09-28 20:43:25 +08:00
|
|
|
io_uring_cmd_del_cancelable(ioucmd, issue_flags);
|
|
|
|
|
|
2022-05-25 05:59:19 -06:00
|
|
|
if (ret < 0)
|
|
|
|
|
req_set_fail(req);
|
|
|
|
|
|
2022-08-03 20:07:57 +08:00
|
|
|
io_req_set_res(req, ret, 0);
|
2022-05-25 05:59:19 -06:00
|
|
|
if (req->ctx->flags & IORING_SETUP_CQE32)
|
|
|
|
|
io_req_set_cqe32_extra(req, res2, 0);
|
2024-03-18 20:41:58 -06:00
|
|
|
io_req_uring_cleanup(req, issue_flags);
|
2023-04-12 12:07:36 -06:00
|
|
|
if (req->ctx->flags & IORING_SETUP_IOPOLL) {
|
2022-08-23 21:44:41 +05:30
|
|
|
/* order with io_iopoll_req_issued() checking ->iopoll_complete */
|
|
|
|
|
smp_store_release(&req->iopoll_completed, 1);
|
2024-03-18 22:00:25 +00:00
|
|
|
} else if (issue_flags & IO_URING_F_COMPLETE_DEFER) {
|
|
|
|
|
if (WARN_ON_ONCE(issue_flags & IO_URING_F_UNLOCKED))
|
|
|
|
|
return;
|
2024-03-18 22:00:24 +00:00
|
|
|
io_req_complete_defer(req);
|
2023-04-12 12:07:36 -06:00
|
|
|
} else {
|
2024-03-18 22:00:24 +00:00
|
|
|
req->io_task_work.func = io_req_task_complete;
|
|
|
|
|
io_req_task_work_add(req);
|
2023-04-12 12:07:36 -06:00
|
|
|
}
|
2022-05-25 05:59:19 -06:00
|
|
|
}
|
|
|
|
|
EXPORT_SYMBOL_GPL(io_uring_cmd_done);
|
|
|
|
|
|
2025-06-03 14:00:27 -06:00
|
|
|
int io_uring_cmd_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
|
2022-05-25 05:59:19 -06:00
|
|
|
{
|
2022-08-11 09:11:15 +02:00
|
|
|
struct io_uring_cmd *ioucmd = io_kiocb_to_cmd(req, struct io_uring_cmd);
|
2025-03-19 06:12:48 +00:00
|
|
|
struct io_async_cmd *ac;
|
2022-05-25 05:59:19 -06:00
|
|
|
|
2025-06-03 14:00:27 -06:00
|
|
|
if (sqe->__pad1)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
|
|
ioucmd->flags = READ_ONCE(sqe->uring_cmd_flags);
|
|
|
|
|
if (ioucmd->flags & ~IORING_URING_CMD_MASK)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
|
|
if (ioucmd->flags & IORING_URING_CMD_FIXED)
|
|
|
|
|
req->buf_index = READ_ONCE(sqe->buf_index);
|
|
|
|
|
|
|
|
|
|
ioucmd->cmd_op = READ_ONCE(sqe->cmd_op);
|
|
|
|
|
|
2025-03-19 06:12:48 +00:00
|
|
|
ac = io_uring_alloc_async_data(&req->ctx->cmd_cache, req);
|
|
|
|
|
if (!ac)
|
io_uring/uring_cmd: defer SQE copying until it's needed
The previous commit turned on async data for uring_cmd, and did the
basic conversion of setting everything up on the prep side. However, for
a lot of use cases, -EIOCBQUEUED will get returned on issue, as the
operation got successfully queued. For that case, a persistent SQE isn't
needed, as it's just used for issue.
Unless execution goes async immediately, defer copying the double SQE
until it's necessary.
This greatly reduces the overhead of such commands, as evidenced by
a perf diff from before and after this change:
10.60% -8.58% [kernel.vmlinux] [k] io_uring_cmd_prep
where the prep side drops from 10.60% to ~2%, which is more expected.
Performance also rises from ~113M IOPS to ~122M IOPS, bringing us back
to where it was before the async command prep.
Tested-by: Anuj Gupta <anuj20.g@samsung.com>
Reviewed-by: Anuj Gupta <anuj20.g@samsung.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
2024-03-20 15:23:47 -06:00
|
|
|
return -ENOMEM;
|
2025-06-05 11:39:17 -06:00
|
|
|
ioucmd->sqe = sqe;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void io_uring_cmd_sqe_copy(struct io_kiocb *req)
|
|
|
|
|
{
|
|
|
|
|
struct io_uring_cmd *ioucmd = io_kiocb_to_cmd(req, struct io_uring_cmd);
|
|
|
|
|
struct io_async_cmd *ac = req->async_data;
|
io_uring/uring_cmd: defer SQE copying until it's needed
The previous commit turned on async data for uring_cmd, and did the
basic conversion of setting everything up on the prep side. However, for
a lot of use cases, -EIOCBQUEUED will get returned on issue, as the
operation got successfully queued. For that case, a persistent SQE isn't
needed, as it's just used for issue.
Unless execution goes async immediately, defer copying the double SQE
until it's necessary.
This greatly reduces the overhead of such commands, as evidenced by
a perf diff from before and after this change:
10.60% -8.58% [kernel.vmlinux] [k] io_uring_cmd_prep
where the prep side drops from 10.60% to ~2%, which is more expected.
Performance also rises from ~113M IOPS to ~122M IOPS, bringing us back
to where it was before the async command prep.
Tested-by: Anuj Gupta <anuj20.g@samsung.com>
Reviewed-by: Anuj Gupta <anuj20.g@samsung.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
2024-03-20 15:23:47 -06:00
|
|
|
|
2025-06-05 11:39:17 -06:00
|
|
|
/* Should not happen, as REQ_F_SQE_COPIED covers this */
|
|
|
|
|
if (WARN_ON_ONCE(ioucmd->sqe == ac->sqes))
|
|
|
|
|
return;
|
|
|
|
|
memcpy(ac->sqes, ioucmd->sqe, uring_sqe_size(req->ctx));
|
2025-03-31 08:55:47 +01:00
|
|
|
ioucmd->sqe = ac->sqes;
|
2022-05-25 05:59:19 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int io_uring_cmd(struct io_kiocb *req, unsigned int issue_flags)
|
|
|
|
|
{
|
2022-08-11 09:11:15 +02:00
|
|
|
struct io_uring_cmd *ioucmd = io_kiocb_to_cmd(req, struct io_uring_cmd);
|
2022-05-25 05:59:19 -06:00
|
|
|
struct io_ring_ctx *ctx = req->ctx;
|
|
|
|
|
struct file *file = req->file;
|
|
|
|
|
int ret;
|
|
|
|
|
|
2023-03-08 09:26:13 -07:00
|
|
|
if (!file->f_op->uring_cmd)
|
2022-05-25 05:59:19 -06:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
2022-07-15 12:16:22 -07:00
|
|
|
ret = security_uring_cmd(ioucmd);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
2022-05-25 05:59:19 -06:00
|
|
|
if (ctx->flags & IORING_SETUP_SQE128)
|
|
|
|
|
issue_flags |= IO_URING_F_SQE128;
|
|
|
|
|
if (ctx->flags & IORING_SETUP_CQE32)
|
|
|
|
|
issue_flags |= IO_URING_F_CQE32;
|
2025-02-24 12:42:20 +00:00
|
|
|
if (io_is_compat(ctx))
|
2023-10-16 06:47:43 -07:00
|
|
|
issue_flags |= IO_URING_F_COMPAT;
|
2022-08-23 21:44:41 +05:30
|
|
|
if (ctx->flags & IORING_SETUP_IOPOLL) {
|
2023-03-08 09:26:13 -07:00
|
|
|
if (!file->f_op->uring_cmd_iopoll)
|
|
|
|
|
return -EOPNOTSUPP;
|
2022-05-25 05:59:19 -06:00
|
|
|
issue_flags |= IO_URING_F_IOPOLL;
|
2022-08-23 21:44:41 +05:30
|
|
|
req->iopoll_completed = 0;
|
2025-05-12 13:20:25 +08:00
|
|
|
if (ctx->flags & IORING_SETUP_HYBRID_IOPOLL) {
|
|
|
|
|
/* make sure every req only blocks once */
|
|
|
|
|
req->flags &= ~REQ_F_IOPOLL_STATE;
|
|
|
|
|
req->iopoll_start = ktime_get_ns();
|
|
|
|
|
}
|
2022-08-23 21:44:41 +05:30
|
|
|
}
|
2022-05-25 05:59:19 -06:00
|
|
|
|
|
|
|
|
ret = file->f_op->uring_cmd(ioucmd, issue_flags);
|
2025-07-08 14:22:10 -06:00
|
|
|
if (ret == -EAGAIN) {
|
|
|
|
|
ioucmd->flags |= IORING_URING_CMD_REISSUE;
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
if (ret == -EIOCBQUEUED)
|
2025-02-13 08:24:23 -07:00
|
|
|
return ret;
|
2024-03-18 20:41:58 -06:00
|
|
|
if (ret < 0)
|
|
|
|
|
req_set_fail(req);
|
|
|
|
|
io_req_uring_cleanup(req, issue_flags);
|
|
|
|
|
io_req_set_res(req, ret, 0);
|
2025-05-08 14:48:33 -06:00
|
|
|
return IOU_COMPLETE;
|
2022-05-25 05:59:19 -06:00
|
|
|
}
|
2022-09-30 11:57:38 +05:30
|
|
|
|
|
|
|
|
int io_uring_cmd_import_fixed(u64 ubuf, unsigned long len, int rw,
|
2025-02-28 15:15:13 -07:00
|
|
|
struct iov_iter *iter,
|
|
|
|
|
struct io_uring_cmd *ioucmd,
|
2025-02-24 13:31:09 -08:00
|
|
|
unsigned int issue_flags)
|
2022-09-30 11:57:38 +05:30
|
|
|
{
|
|
|
|
|
struct io_kiocb *req = cmd_to_io_kiocb(ioucmd);
|
|
|
|
|
|
2025-05-23 10:04:46 +01:00
|
|
|
if (WARN_ON_ONCE(!(ioucmd->flags & IORING_URING_CMD_FIXED)))
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
2025-02-24 13:31:10 -08:00
|
|
|
return io_import_reg_buf(req, iter, ubuf, len, rw, issue_flags);
|
2022-09-30 11:57:38 +05:30
|
|
|
}
|
|
|
|
|
EXPORT_SYMBOL_GPL(io_uring_cmd_import_fixed);
|
2023-06-27 06:44:24 -07:00
|
|
|
|
2025-03-21 18:04:34 +00:00
|
|
|
int io_uring_cmd_import_fixed_vec(struct io_uring_cmd *ioucmd,
|
|
|
|
|
const struct iovec __user *uvec,
|
|
|
|
|
size_t uvec_segs,
|
|
|
|
|
int ddir, struct iov_iter *iter,
|
|
|
|
|
unsigned issue_flags)
|
|
|
|
|
{
|
|
|
|
|
struct io_kiocb *req = cmd_to_io_kiocb(ioucmd);
|
|
|
|
|
struct io_async_cmd *ac = req->async_data;
|
|
|
|
|
int ret;
|
|
|
|
|
|
2025-05-23 10:04:46 +01:00
|
|
|
if (WARN_ON_ONCE(!(ioucmd->flags & IORING_URING_CMD_FIXED)))
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
2025-03-21 18:04:34 +00:00
|
|
|
ret = io_prep_reg_iovec(req, &ac->vec, uvec, uvec_segs);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
|
|
return io_import_reg_vec(ddir, iter, req, &ac->vec, uvec_segs,
|
|
|
|
|
issue_flags);
|
|
|
|
|
}
|
|
|
|
|
EXPORT_SYMBOL_GPL(io_uring_cmd_import_fixed_vec);
|
|
|
|
|
|
2024-09-11 17:34:37 +01:00
|
|
|
void io_uring_cmd_issue_blocking(struct io_uring_cmd *ioucmd)
|
|
|
|
|
{
|
|
|
|
|
struct io_kiocb *req = cmd_to_io_kiocb(ioucmd);
|
|
|
|
|
|
|
|
|
|
io_req_queue_iowq(req);
|
|
|
|
|
}
|
2025-06-16 10:46:27 +01:00
|
|
|
|
|
|
|
|
int io_cmd_poll_multishot(struct io_uring_cmd *cmd,
|
|
|
|
|
unsigned int issue_flags, __poll_t mask)
|
|
|
|
|
{
|
|
|
|
|
struct io_kiocb *req = cmd_to_io_kiocb(cmd);
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
if (likely(req->flags & REQ_F_APOLL_MULTISHOT))
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
req->flags |= REQ_F_APOLL_MULTISHOT;
|
|
|
|
|
mask &= ~EPOLLONESHOT;
|
|
|
|
|
|
|
|
|
|
ret = io_arm_apoll(req, issue_flags, mask);
|
|
|
|
|
return ret == IO_APOLL_OK ? -EIOCBQUEUED : -ECANCELED;
|
|
|
|
|
}
|
2025-06-16 10:46:28 +01:00
|
|
|
|
|
|
|
|
bool io_uring_cmd_post_mshot_cqe32(struct io_uring_cmd *cmd,
|
|
|
|
|
unsigned int issue_flags,
|
|
|
|
|
struct io_uring_cqe cqe[2])
|
|
|
|
|
{
|
|
|
|
|
struct io_kiocb *req = cmd_to_io_kiocb(cmd);
|
|
|
|
|
|
|
|
|
|
if (WARN_ON_ONCE(!(issue_flags & IO_URING_F_MULTISHOT)))
|
|
|
|
|
return false;
|
|
|
|
|
return io_req_post_cqe32(req, cqe);
|
|
|
|
|
}
|