From: sashiko-bot@kernel.org
To: "Ankur Arora" <ankur.a.arora@oracle.com>
Cc: bpf@vger.kernel.org
Subject: Re: [PATCH v15 01/16] asm-generic: barrier: Add smp_cond_load_relaxed_timeout()
Date: Mon, 31 Aug 2026 21:50:35 +0000 [thread overview]
Message-ID: <20260831215035.745441F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260831202251.305046-2-ankur.a.arora@oracle.com>
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
- [High] Unconditional 1 microsecond hardware stall for very short or zero timeouts.
- [High] Redundant clock evaluation delays loop exit upon successful hardware wakeup.
- [Low] Implicit dependency on `NSEC_PER_USEC` without including time headers.
--
commit b4e52f4320fa73ae0869ca7d777ad60945812b82
Author: Ankur Arora <ankur.a.arora@oracle.com>
asm-generic: barrier: Add smp_cond_load_relaxed_timeout()
This commit introduces smp_cond_load_relaxed_timeout() which extends
smp_cond_load_relaxed() to allow waiting for a duration. It defers the costly
time evaluation to the slow path to minimize the fast path penalty, using
cpu_poll_relax() to yield between condition checks.
> diff --git a/include/asm-generic/barrier.h b/include/asm-generic/barrier.h
> index b99cb57dfcccc..8c37de1929443 100644
> --- a/include/asm-generic/barrier.h
> +++ b/include/asm-generic/barrier.h
[ ... ]
> +#ifndef smp_cond_load_relaxed_timeout
> +#define __smp_cond_load_relaxed_timeout(ptr, cond_expr, \
> + time_expr_ns, timeout_ns) \
> +({ \
> + typeof(ptr) __PTR = (ptr); \
> + __unqual_scalar_typeof(*(ptr)) VAL; \
> + u32 __scl_count = 0, __scl_spin = SMP_TIMEOUT_POLL_COUNT; \
> + s64 __scl_timeout = NSEC_PER_USEC; \
[Severity: Low]
Does this introduce an implicit dependency on NSEC_PER_USEC without including
the required time headers?
Callers using this macro in files that do not include <linux/time64.h> or
<vdso/time64.h> might face build failures.
> + s64 __scl_time_now, __scl_time_end = 0; \
> + \
> + for (;;) { \
> + VAL = READ_ONCE(*__PTR); \
> + if (cond_expr) \
> + break; \
> + cpu_poll_relax(__PTR, VAL, (u64)__scl_timeout); \
[Severity: High]
Does this unconditionally initiate a 1us hardware stall on the first iteration,
even if the user requested a zero or very short timeout?
When timeout_ns is less than 1000ns, __scl_timeout is still initially set to
NSEC_PER_USEC. On architectures with precise waits (like ARM64 wfet), this
could force the CPU to sleep for 1 microsecond, degrading fast-path polling
performance.
> + if (++__scl_count < __scl_spin) \
> + continue; \
> + __scl_time_now = (s64)(time_expr_ns); \
[Severity: High]
Is it necessary to unconditionally evaluate the clock after waking up?
When cpu_poll_relax() wakes up because the lock was released, evaluating
time_expr_ns (which could be an expensive clock read) adds latency to the lock
handoff before checking the condition again.
Would it be better to re-evaluate the condition immediately after waking up,
bypassing the time check if the condition is met?
[ ... ]
> +#define smp_cond_load_relaxed_timeout(ptr, cond_expr, \
> + time_expr_ns, timeout_ns) \
> +({ \
> + __unqual_scalar_typeof(*(ptr)) VAL; \
> + s64 __scl_timeout_ns = (s64)(timeout_ns); \
> + \
> + if (__scl_timeout_ns < 0) \
[Severity: High]
Should this condition also include the zero timeout case?
By using __scl_timeout_ns < 0, a timeout of exactly 0 is passed to
__smp_cond_load_relaxed_timeout(), falling through to the slow path and
triggering the 1 microsecond delay discussed above.
> + VAL = READ_ONCE(*(ptr)); \
> + else \
> + VAL = __smp_cond_load_relaxed_timeout(ptr, cond_expr, \
> + time_expr_ns, \
> + __scl_timeout_ns);\
> + (typeof(*(ptr)))VAL; \
> +})
> +#endif
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260831202251.305046-1-ankur.a.arora@oracle.com?part=1
next prev parent reply other threads:[~2026-08-31 21:50 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-31 20:22 [PATCH v15 00/16] barrier: Add smp_cond_load_{relaxed,acquire}_timeout() Ankur Arora
2026-08-31 20:22 ` [PATCH v15 01/16] asm-generic: barrier: Add smp_cond_load_relaxed_timeout() Ankur Arora
2026-08-31 21:50 ` sashiko-bot [this message]
2026-08-31 20:22 ` [PATCH v15 02/16] arm64: barrier: Support smp_cond_load_relaxed_timeout() Ankur Arora
2026-08-31 21:59 ` sashiko-bot
2026-09-01 3:55 ` Ankur Arora
2026-08-31 20:22 ` [PATCH v15 03/16] arm64/delay: move, fixup usecs_to_cycles() Ankur Arora
2026-08-31 22:06 ` sashiko-bot
2026-08-31 20:22 ` [PATCH v15 04/16] arm64: support WFET in smp_cond_load_relaxed_timeout() Ankur Arora
2026-08-31 21:16 ` bot+bpf-ci
2026-08-31 22:19 ` sashiko-bot
2026-08-31 20:22 ` [PATCH v15 05/16] arm64: rqspinlock: Remove private copy of smp_cond_load_acquire_timewait() Ankur Arora
2026-08-31 20:22 ` [PATCH v15 06/16] asm-generic: barrier: Add smp_cond_load_acquire_timeout() Ankur Arora
2026-08-31 21:17 ` bot+bpf-ci
2026-08-31 22:36 ` sashiko-bot
2026-08-31 20:22 ` [PATCH v15 07/16] atomic: Add atomic_cond_read_*_timeout() Ankur Arora
2026-08-31 21:16 ` bot+bpf-ci
2026-08-31 22:47 ` sashiko-bot
2026-08-31 20:22 ` [PATCH v15 08/16] locking/atomic: scripts: build atomic_long_cond_read_*_timeout() Ankur Arora
2026-08-31 20:22 ` [PATCH v15 09/16] bpf/rqspinlock: switch check_timeout() to a clock interface Ankur Arora
2026-08-31 21:16 ` bot+bpf-ci
2026-08-31 20:22 ` [PATCH v15 10/16] bpf/rqspinlock: Use smp_cond_load_acquire_timeout() Ankur Arora
2026-08-31 21:31 ` bot+bpf-ci
2026-08-31 20:22 ` [PATCH v15 11/16] sched: add need-resched timed wait interface Ankur Arora
2026-08-31 20:22 ` [PATCH v15 12/16] cpuidle/poll_state: Wait for need-resched via tif_need_resched_relaxed_wait() Ankur Arora
2026-08-31 23:20 ` sashiko-bot
2026-09-01 4:46 ` Ankur Arora
2026-08-31 20:22 ` [PATCH v15 13/16] arm64/delay: enable testing smp_cond_load_relaxed_timeout() Ankur Arora
2026-08-31 21:16 ` bot+bpf-ci
2026-08-31 23:28 ` sashiko-bot
2026-09-01 4:53 ` Ankur Arora
2026-08-31 20:22 ` [PATCH v15 14/16] barrier: add tests for smp_cond_load_*_timeout() Ankur Arora
2026-08-31 21:17 ` bot+bpf-ci
2026-08-31 20:22 ` [PATCH v15 15/16] barrier: timeout validity checks for smp_cond_load_relaxed_timeout() Ankur Arora
2026-08-31 21:16 ` bot+bpf-ci
2026-08-31 20:22 ` [PATCH v15 16/16] barrier: timeout validity checks for smp_cond_load_acquire_timeout() Ankur Arora
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=20260831215035.745441F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=ankur.a.arora@oracle.com \
--cc=bpf@vger.kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
/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