From: Peter Zijlstra <[email protected]>
To: Jens Axboe <[email protected]>
Cc: "Jann Horn" <[email protected]>,
"Thomas Gleixner" <[email protected]>,
"Ingo Molnar" <[email protected]>,
"Darren Hart" <[email protected]>,
"Davidlohr Bueso" <[email protected]>,
"André Almeida" <[email protected]>,
"kernel list" <[email protected]>,
"Pavel Begunkov" <[email protected]>,
io-uring <[email protected]>
Subject: Re: futex+io_uring: futex_q::task can maybe be dangling (but is not actually accessed, so it's fine)
Date: Mon, 13 Jan 2025 15:38:32 +0100 [thread overview]
Message-ID: <[email protected]> (raw)
In-Reply-To: <[email protected]>
On Fri, Jan 10, 2025 at 08:33:34PM -0700, Jens Axboe wrote:
> @@ -548,7 +549,7 @@ void __futex_queue(struct futex_q *q, struct futex_hash_bucket *hb)
>
> plist_node_init(&q->list, prio);
> plist_add(&q->list, &hb->chain);
> - q->task = current;
> + q->task = task;
> }
>
> /**
The alternative is, I suppose, to move the q->task assignment out to
these two callsites instead. Thomas, any opinions?
> @@ -303,7 +304,7 @@ extern int futex_unqueue(struct futex_q *q);
> static inline void futex_queue(struct futex_q *q, struct futex_hash_bucket *hb)
> __releases(&hb->lock)
> {
> - __futex_queue(q, hb);
> + __futex_queue(q, hb, current);
> spin_unlock(&hb->lock);
> }
>
> diff --git a/kernel/futex/pi.c b/kernel/futex/pi.c
> index d62cca5ed8f4..635c7d5d4222 100644
> --- a/kernel/futex/pi.c
> +++ b/kernel/futex/pi.c
> @@ -982,7 +982,7 @@ int futex_lock_pi(u32 __user *uaddr, unsigned int flags, ktime_t *time, int tryl
> /*
> * Only actually queue now that the atomic ops are done:
> */
> - __futex_queue(&q, hb);
> + __futex_queue(&q, hb, current);
>
> if (trylock) {
> ret = rt_mutex_futex_trylock(&q.pi_state->pi_mutex);
>
> --
> Jens Axboe
next prev parent reply other threads:[~2025-01-13 14:38 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-10 22:26 futex+io_uring: futex_q::task can maybe be dangling (but is not actually accessed, so it's fine) Jann Horn
2025-01-11 3:33 ` Jens Axboe
2025-01-13 13:53 ` Jann Horn
2025-01-13 14:38 ` Peter Zijlstra [this message]
2025-01-13 14:41 ` Jens Axboe
2025-01-15 10:20 ` Thomas Gleixner
2025-01-15 15:23 ` Jens Axboe
2025-01-15 15:32 ` Jens Axboe
2025-01-15 17:05 ` Thomas Gleixner
2025-01-15 17:07 ` Jens Axboe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250113143832.GH5388@noisy.programming.kicks-ass.net \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox