[PATCH v2] io_uring: remove WRITE_ONCE() in io_uring_create()

Caleb Sander Mateos posted 1 patch 4 weeks ago
io_uring/io_uring.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
[PATCH v2] io_uring: remove WRITE_ONCE() in io_uring_create()
Posted by Caleb Sander Mateos 4 weeks ago
There's no need to use WRITE_ONCE() to set ctx->submitter_task in
io_uring_create() since no other task can access the io_ring_ctx until a
file descriptor is associated with it. So use a normal assignment
instead of WRITE_ONCE().

Signed-off-by: Caleb Sander Mateos <csander@purestorage.com>
---
 io_uring/io_uring.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/io_uring/io_uring.c b/io_uring/io_uring.c
index 6c07efac977c..20dfa5ef75dc 100644
--- a/io_uring/io_uring.c
+++ b/io_uring/io_uring.c
@@ -3889,12 +3889,17 @@ static __cold int io_uring_create(unsigned entries, struct io_uring_params *p,
 		ret = -EFAULT;
 		goto err;
 	}
 
 	if (ctx->flags & IORING_SETUP_SINGLE_ISSUER
-	    && !(ctx->flags & IORING_SETUP_R_DISABLED))
-		WRITE_ONCE(ctx->submitter_task, get_task_struct(current));
+	    && !(ctx->flags & IORING_SETUP_R_DISABLED)) {
+		/*
+		 * Unlike io_register_enable_rings(), don't need WRITE_ONCE()
+		 * since ctx isn't yet accessible from other tasks
+		 */
+		ctx->submitter_task = get_task_struct(current);
+	}
 
 	file = io_uring_get_file(ctx);
 	if (IS_ERR(file)) {
 		ret = PTR_ERR(file);
 		goto err;
-- 
2.45.2
Re: [PATCH v2] io_uring: remove WRITE_ONCE() in io_uring_create()
Posted by Jens Axboe 3 weeks, 6 days ago
On Thu, 04 Sep 2025 10:12:22 -0600, Caleb Sander Mateos wrote:
> There's no need to use WRITE_ONCE() to set ctx->submitter_task in
> io_uring_create() since no other task can access the io_ring_ctx until a
> file descriptor is associated with it. So use a normal assignment
> instead of WRITE_ONCE().
> 
> 

Applied, thanks!

[1/1] io_uring: remove WRITE_ONCE() in io_uring_create()
      (no commit info)

Best regards,
-- 
Jens Axboe