Skip to content

Commit 97c96e9

Browse files
Dylan Yudakenaxboe
Dylan Yudaken
authored andcommitted
io_uring: simplify __io_uring_add_tctx_node
Remove submitter parameter from __io_uring_add_tctx_node. It was only called from one place, and we can do that logic in that one place. Signed-off-by: Dylan Yudaken <[email protected]> Fixes: 97bbdc0 ("io_uring: add IORING_SETUP_SINGLE_ISSUER") Signed-off-by: Jens Axboe <[email protected]>
1 parent 9d84bb4 commit 97c96e9

File tree

3 files changed

+25
-13
lines changed

3 files changed

+25
-13
lines changed

io_uring/io_uring.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3355,7 +3355,7 @@ static int io_uring_install_fd(struct io_ring_ctx *ctx, struct file *file)
33553355
if (fd < 0)
33563356
return fd;
33573357

3358-
ret = __io_uring_add_tctx_node(ctx, false);
3358+
ret = __io_uring_add_tctx_node(ctx);
33593359
if (ret) {
33603360
put_unused_fd(fd);
33613361
return ret;

io_uring/tctx.c

+20-10
Original file line numberDiff line numberDiff line change
@@ -105,18 +105,12 @@ static int io_register_submitter(struct io_ring_ctx *ctx)
105105
return ret;
106106
}
107107

108-
int __io_uring_add_tctx_node(struct io_ring_ctx *ctx, bool submitter)
108+
int __io_uring_add_tctx_node(struct io_ring_ctx *ctx)
109109
{
110110
struct io_uring_task *tctx = current->io_uring;
111111
struct io_tctx_node *node;
112112
int ret;
113113

114-
if ((ctx->flags & IORING_SETUP_SINGLE_ISSUER) && submitter) {
115-
ret = io_register_submitter(ctx);
116-
if (ret)
117-
return ret;
118-
}
119-
120114
if (unlikely(!tctx)) {
121115
ret = io_uring_alloc_task_context(current, ctx);
122116
if (unlikely(ret))
@@ -150,8 +144,24 @@ int __io_uring_add_tctx_node(struct io_ring_ctx *ctx, bool submitter)
150144
list_add(&node->ctx_node, &ctx->tctx_list);
151145
mutex_unlock(&ctx->uring_lock);
152146
}
153-
if (submitter)
154-
tctx->last = ctx;
147+
return 0;
148+
}
149+
150+
int __io_uring_add_tctx_node_from_submit(struct io_ring_ctx *ctx)
151+
{
152+
int ret;
153+
154+
if (ctx->flags & IORING_SETUP_SINGLE_ISSUER) {
155+
ret = io_register_submitter(ctx);
156+
if (ret)
157+
return ret;
158+
}
159+
160+
ret = __io_uring_add_tctx_node(ctx);
161+
if (ret)
162+
return ret;
163+
164+
current->io_uring->last = ctx;
155165
return 0;
156166
}
157167

@@ -259,7 +269,7 @@ int io_ringfd_register(struct io_ring_ctx *ctx, void __user *__arg,
259269
return -EINVAL;
260270

261271
mutex_unlock(&ctx->uring_lock);
262-
ret = __io_uring_add_tctx_node(ctx, false);
272+
ret = __io_uring_add_tctx_node(ctx);
263273
mutex_lock(&ctx->uring_lock);
264274
if (ret)
265275
return ret;

io_uring/tctx.h

+4-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ struct io_tctx_node {
99
int io_uring_alloc_task_context(struct task_struct *task,
1010
struct io_ring_ctx *ctx);
1111
void io_uring_del_tctx_node(unsigned long index);
12-
int __io_uring_add_tctx_node(struct io_ring_ctx *ctx, bool submitter);
12+
int __io_uring_add_tctx_node(struct io_ring_ctx *ctx);
13+
int __io_uring_add_tctx_node_from_submit(struct io_ring_ctx *ctx);
1314
void io_uring_clean_tctx(struct io_uring_task *tctx);
1415

1516
void io_uring_unreg_ringfd(void);
@@ -27,5 +28,6 @@ static inline int io_uring_add_tctx_node(struct io_ring_ctx *ctx)
2728

2829
if (likely(tctx && tctx->last == ctx))
2930
return 0;
30-
return __io_uring_add_tctx_node(ctx, true);
31+
32+
return __io_uring_add_tctx_node_from_submit(ctx);
3133
}

0 commit comments

Comments
 (0)