From: Andreas Hindborg <a.hindborg@kernel.org>
To: FUJITA Tomonori <tomo@flapping.org>
Cc: tomo@flapping.org, aliceryhl@google.com, arve@android.com,
boqun@kernel.org, brauner@kernel.org, cmllamas@google.com,
gary@garyguo.net, gregkh@linuxfoundation.org, ojeda@kernel.org,
tkjos@android.com, acourbot@nvidia.com, anna-maria@linutronix.de,
bjorn3_gh@protonmail.com, dakr@kernel.org,
daniel.almeida@collabora.com, frederic@kernel.org,
jstultz@google.com, lossin@kernel.org, lyude@redhat.com,
sboyd@kernel.org, tamird@kernel.org, tglx@kernel.org,
tmgross@umich.edu, work@onurozkan.dev,
rust-for-linux@vger.kernel.org, fujita.tomonori@gmail.com
Subject: Re: [PATCH v2 1/4] rust: time: add jiffies conversion helpers to Delta
Date: Wed, 15 Jul 2026 15:33:59 +0200 [thread overview]
Message-ID: <87cxwogywo.fsf@kernel.org> (raw)
In-Reply-To: <20260715.212021.485543459172925773.tomo@flapping.org>
FUJITA Tomonori <tomo@flapping.org> writes:
> On Wed, 15 Jul 2026 08:57:03 +0200
> Andreas Hindborg <a.hindborg@kernel.org> wrote:
>
>> "FUJITA Tomonori" <tomo@flapping.org> writes:
>>
>>> From: FUJITA Tomonori <fujita.tomonori@gmail.com>
>>>
>>> Callers that hand a timeout to some C APIs need conversion between
>>> Delta and jiffies.
>>>
>>> Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
>>> ---
>>> rust/kernel/time.rs | 30 ++++++++++++++++++++++++++++++
>>> 1 file changed, 30 insertions(+)
>>>
>>> diff --git a/rust/kernel/time.rs b/rust/kernel/time.rs
>>> index 363e93cbb139..cd054ea5df02 100644
>>> --- a/rust/kernel/time.rs
>>> +++ b/rust/kernel/time.rs
>>> @@ -377,6 +377,20 @@ impl Delta {
>>> /// A span of time equal to zero.
>>> pub const ZERO: Self = Self { nanos: 0 };
>>>
>>> + /// Create a new [`Delta`] from a number of jiffies.
>>> + ///
>>> + /// If `jiffies` is large enough that the corresponding number of nanoseconds
>>> + /// would overflow an `i64`, the result saturates to `i64::MAX` nanoseconds.
>>> + /// The exact threshold depends on `CONFIG_HZ`.
>>> + #[inline]
>>> + pub fn from_jiffies(jiffies: u64) -> Self {
>>> + let nanos = (u128::from(jiffies) * NSEC_PER_SEC as u128 / u128::from(bindings::HZ))
>>> + .min(i64::MAX as u128);
>>
>> In general for this patch, why are some widening operations using `from`
>> and others use `as u128`? Is it not possible to use into/form for all
>> the widening operations?
>
> When NSEC_PER_SEC % HZ != 0, we need to multiply jiffies *
> NSEC_PER_SEC before dividing by HZ.
>
> What the C side does is:
>
> u64 jiffies64_to_nsecs(u64 j)
> {
> #if !(NSEC_PER_SEC % HZ)
> return (NSEC_PER_SEC / HZ) * j;
> # else
> return div_u64(j * HZ_TO_NSEC_NUM, HZ_TO_NSEC_DEN);
> #endif
> }
>
> We could replicate this with a cfg/the C side's const-eval
> computing. But I think using u128/i128 is simpler. What do you think?
I think widening to 128 bits is fine. My question is why `NSEC_PER_SEC
as u128` instead of `u128::from(NSEC_PER_SEC)`?
Best regards,
Andreas Hindborg
next prev parent reply other threads:[~2026-07-15 13:34 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-12 23:52 [PATCH v2 0/4] rust: use Delta instead of raw jiffies for timeouts and delays FUJITA Tomonori
2026-07-12 23:52 ` [PATCH v2 1/4] rust: time: add jiffies conversion helpers to Delta FUJITA Tomonori
2026-07-15 6:57 ` Andreas Hindborg
2026-07-15 12:20 ` FUJITA Tomonori
2026-07-15 13:33 ` Andreas Hindborg [this message]
2026-07-15 14:22 ` Miguel Ojeda
2026-07-15 14:38 ` Gary Guo
2026-07-12 23:52 ` [PATCH v2 2/4] rust: sync: use Delta for CondVar timeout API FUJITA Tomonori
2026-07-12 23:52 ` [PATCH v2 3/4] rust: workqueue: use Delta for enqueue_delayed's delay parameter FUJITA Tomonori
2026-07-13 8:59 ` Alice Ryhl
2026-07-13 9:07 ` Onur Özkan
2026-07-13 9:40 ` FUJITA Tomonori
2026-07-13 11:55 ` Gary Guo
2026-07-13 12:17 ` FUJITA Tomonori
2026-07-12 23:52 ` [PATCH v2 4/4] rust: time: remove unused Jiffies/Msecs helpers FUJITA Tomonori
2026-07-15 6:58 ` Andreas Hindborg
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=87cxwogywo.fsf@kernel.org \
--to=a.hindborg@kernel.org \
--cc=acourbot@nvidia.com \
--cc=aliceryhl@google.com \
--cc=anna-maria@linutronix.de \
--cc=arve@android.com \
--cc=bjorn3_gh@protonmail.com \
--cc=boqun@kernel.org \
--cc=brauner@kernel.org \
--cc=cmllamas@google.com \
--cc=dakr@kernel.org \
--cc=daniel.almeida@collabora.com \
--cc=frederic@kernel.org \
--cc=fujita.tomonori@gmail.com \
--cc=gary@garyguo.net \
--cc=gregkh@linuxfoundation.org \
--cc=jstultz@google.com \
--cc=lossin@kernel.org \
--cc=lyude@redhat.com \
--cc=ojeda@kernel.org \
--cc=rust-for-linux@vger.kernel.org \
--cc=sboyd@kernel.org \
--cc=tamird@kernel.org \
--cc=tglx@kernel.org \
--cc=tkjos@android.com \
--cc=tmgross@umich.edu \
--cc=tomo@flapping.org \
--cc=work@onurozkan.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