Skip to content

Commit 52a5a22

Browse files
committed
Merge tag 'io_uring-6.13-20250111' of git://git.kernel.dk/linux
Pull io_uring fixes from Jens Axboe: - Fix for multishot timeout updates only using the updated value for the first invocation, not subsequent ones - Silence a false positive lockdep warning - Fix the eventfd signaling and putting RCU logic - Fix fault injected SQPOLL setup not clearing the task pointer in the error path - Fix local task_work looking at the SQPOLL thread rather than just signaling the safe variant. Again one of those theoretical issues, which should be closed up none the less. * tag 'io_uring-6.13-20250111' of git://git.kernel.dk/linux: io_uring: don't touch sqd->thread off tw add io_uring/sqpoll: zero sqd->thread on tctx errors io_uring/eventfd: ensure io_eventfd_signal() defers another RCU period io_uring: silence false positive warnings io_uring/timeout: fix multishot updates
2 parents 5716236 + bd2703b commit 52a5a22

File tree

5 files changed

+20
-18
lines changed

5 files changed

+20
-18
lines changed

io_uring/eventfd.c

+7-9
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,18 @@ static void io_eventfd_free(struct rcu_head *rcu)
3333
kfree(ev_fd);
3434
}
3535

36-
static void io_eventfd_do_signal(struct rcu_head *rcu)
36+
static void io_eventfd_put(struct io_ev_fd *ev_fd)
3737
{
38-
struct io_ev_fd *ev_fd = container_of(rcu, struct io_ev_fd, rcu);
39-
40-
eventfd_signal_mask(ev_fd->cq_ev_fd, EPOLL_URING_WAKE);
41-
4238
if (refcount_dec_and_test(&ev_fd->refs))
43-
io_eventfd_free(rcu);
39+
call_rcu(&ev_fd->rcu, io_eventfd_free);
4440
}
4541

46-
static void io_eventfd_put(struct io_ev_fd *ev_fd)
42+
static void io_eventfd_do_signal(struct rcu_head *rcu)
4743
{
48-
if (refcount_dec_and_test(&ev_fd->refs))
49-
call_rcu(&ev_fd->rcu, io_eventfd_free);
44+
struct io_ev_fd *ev_fd = container_of(rcu, struct io_ev_fd, rcu);
45+
46+
eventfd_signal_mask(ev_fd->cq_ev_fd, EPOLL_URING_WAKE);
47+
io_eventfd_put(ev_fd);
5048
}
5149

5250
static void io_eventfd_release(struct io_ev_fd *ev_fd, bool put_ref)

io_uring/io_uring.c

+1-4
Original file line numberDiff line numberDiff line change
@@ -1226,10 +1226,7 @@ static void io_req_normal_work_add(struct io_kiocb *req)
12261226

12271227
/* SQPOLL doesn't need the task_work added, it'll run it itself */
12281228
if (ctx->flags & IORING_SETUP_SQPOLL) {
1229-
struct io_sq_data *sqd = ctx->sq_data;
1230-
1231-
if (sqd->thread)
1232-
__set_notify_signal(sqd->thread);
1229+
__set_notify_signal(tctx->task);
12331230
return;
12341231
}
12351232

io_uring/io_uring.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,9 @@ static inline void io_lockdep_assert_cq_locked(struct io_ring_ctx *ctx)
125125
#if defined(CONFIG_PROVE_LOCKING)
126126
lockdep_assert(in_task());
127127

128+
if (ctx->flags & IORING_SETUP_DEFER_TASKRUN)
129+
lockdep_assert_held(&ctx->uring_lock);
130+
128131
if (ctx->flags & IORING_SETUP_IOPOLL) {
129132
lockdep_assert_held(&ctx->uring_lock);
130133
} else if (!ctx->task_complete) {
@@ -136,9 +139,7 @@ static inline void io_lockdep_assert_cq_locked(struct io_ring_ctx *ctx)
136139
* Not from an SQE, as those cannot be submitted, but via
137140
* updating tagged resources.
138141
*/
139-
if (percpu_ref_is_dying(&ctx->refs))
140-
lockdep_assert(current_work());
141-
else
142+
if (!percpu_ref_is_dying(&ctx->refs))
142143
lockdep_assert(current == ctx->submitter_task);
143144
}
144145
#endif

io_uring/sqpoll.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,12 @@ static int io_sq_thread(void *data)
268268
DEFINE_WAIT(wait);
269269

270270
/* offload context creation failed, just exit */
271-
if (!current->io_uring)
271+
if (!current->io_uring) {
272+
mutex_lock(&sqd->lock);
273+
sqd->thread = NULL;
274+
mutex_unlock(&sqd->lock);
272275
goto err_out;
276+
}
273277

274278
snprintf(buf, sizeof(buf), "iou-sqp-%d", sqd->task_pid);
275279
set_task_comm(current, buf);

io_uring/timeout.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -427,10 +427,12 @@ static int io_timeout_update(struct io_ring_ctx *ctx, __u64 user_data,
427427

428428
timeout->off = 0; /* noseq */
429429
data = req->async_data;
430+
data->ts = *ts;
431+
430432
list_add_tail(&timeout->list, &ctx->timeout_list);
431433
hrtimer_init(&data->timer, io_timeout_get_clock(data), mode);
432434
data->timer.function = io_timeout_fn;
433-
hrtimer_start(&data->timer, timespec64_to_ktime(*ts), mode);
435+
hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), mode);
434436
return 0;
435437
}
436438

0 commit comments

Comments
 (0)