Rust for Linux List
 help / color / mirror / Atom feed
From: "Gary Guo" <gary@garyguo.net>
To: "FUJITA Tomonori" <tomo@flapping.org>, <gary@garyguo.net>
Cc: <a.hindborg@kernel.org>, <aliceryhl@google.com>,
	<arve@android.com>, <boqun@kernel.org>, <brauner@kernel.org>,
	<cmllamas@google.com>, <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 v5 4/7] rust: time: add Delta::to_jiffies() for timeout conversion
Date: Fri, 07 Aug 2026 13:59:20 +0100	[thread overview]
Message-ID: <DKIQAE0F6ZVF.3BFDX69JGNUI8@garyguo.net> (raw)
In-Reply-To: <20260807.213837.477414639891260460.tomo@flapping.org>

On Fri Aug 7, 2026 at 1:38 PM BST, FUJITA Tomonori wrote:
> On Thu, 06 Aug 2026 12:50:55 +0100
> "Gary Guo" <gary@garyguo.net> wrote:
>
>> On Thu Aug 6, 2026 at 8:32 AM BST, FUJITA Tomonori wrote:
>>> From: FUJITA Tomonori <fujita.tomonori@gmail.com>
>>>
>>> Add Delta<Nsec>::to_jiffies() conversion that rounds up so the
>>> resulting timeout is never shorter than the requested span, clamps a
>>> negative span to an immediate timeout, and saturates an overlong span
>>> to the kernel's MAX_JIFFY_OFFSET "wait forever" value.
>>>
>>> Reviewed-by: Gary Guo <gary@garyguo.net>
>>> Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
>>> ---
>>>  rust/kernel/time.rs | 21 +++++++++++++++++++++
>>>  1 file changed, 21 insertions(+)
>>>
>>> diff --git a/rust/kernel/time.rs b/rust/kernel/time.rs
>>> index 9d65a6c1992a..5844ee985a7b 100644
>>> --- a/rust/kernel/time.rs
>>> +++ b/rust/kernel/time.rs
>>> @@ -551,6 +551,27 @@ pub fn as_millis_ceil(self) -> i64 {
>>>          }
>>>      }
>>>  
>>> +    /// Convert this span to a [`Delta<Jiffy>`] suitable for use as a timeout.
>>> +    ///
>>> +    /// The value is rounded up to the next whole jiffy, so the resulting
>>> +    /// timeout is never shorter than `self` (as `msecs_to_jiffies()` does).
>>> +    /// A negative span clamps to zero jiffies (an immediate timeout).
>>> +    #[inline]
>>> +    pub fn to_jiffies(self) -> Delta<Jiffy> {
>>> +        let msecs = self.as_millis_ceil();
>>> +
>>> +        // CAST: `msecs` is clamped to `0..=c_uint::MAX`, so it is non-negative and
>>> +        // fits in `c_uint`.
>>> +        let msecs = msecs.clamp(0, i64::from(crate::ffi::c_uint::MAX)) as crate::ffi::c_uint;
>>> +
>>> +        // SAFETY: `__msecs_to_jiffies()` is always safe to call.
>>> +        let jiffies = unsafe { bindings::__msecs_to_jiffies(msecs) };
>>> +
>>> +        // CAST: `__msecs_to_jiffies()` returns a value in `0..=MAX_JIFFY_OFFSET`, i.e.
>>> +        // `((LONG_MAX >> 1) - 1)`, which is non-negative and well within `isize`.
>>> +        Delta::<Jiffy>::from_jiffies(jiffies as isize)
>>> +    }
>> 
>> This should be using nsec_to_jiffies?
>
> nsecs_to_jiffies() is documented as unsuitable here, time.c says:
>
>     Unlike {m,u}secs_to_jiffies, type of input is not unsigned int but
>     u64.  And this doesn't return MAX_JIFFY_OFFSET since this function
>     is designed for scheduler, not for use in device drivers to
>     calculate timeout value.
>
> It also truncates, so it's not suitable for a timeout.
>
> __msecs_to_jiffies() is the timeout-oriented helper: it rounds up and
> saturates to MAX_JIFFY_OFFSET, which is what a timeout wants.

Which sounds like is what exactly is suitable here. What you want should be a
different named function that does the ceiling and clamping?

Best,
Gary

  reply	other threads:[~2026-08-07 12:59 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-06  7:32 [PATCH v5 0/7] rust: use Delta instead of raw jiffies for timeouts and delays FUJITA Tomonori
2026-08-06  7:32 ` [PATCH v5 1/7] rust: time: make Delta generic over its time unit FUJITA Tomonori
2026-08-06  9:44   ` Andreas Hindborg
2026-08-07 12:10     ` FUJITA Tomonori
2026-08-06  7:32 ` [PATCH v5 2/7] rust: time: add jiffies time unit for Delta FUJITA Tomonori
2026-08-06  7:32 ` [PATCH v5 3/7] rust: time: add Delta::as_millis_ceil() FUJITA Tomonori
2026-08-06  9:47   ` Andreas Hindborg
2026-08-07 13:26     ` FUJITA Tomonori
2026-08-06  7:32 ` [PATCH v5 4/7] rust: time: add Delta::to_jiffies() for timeout conversion FUJITA Tomonori
2026-08-06  9:50   ` Andreas Hindborg
2026-08-07 12:15     ` FUJITA Tomonori
2026-08-06 11:50   ` Gary Guo
2026-08-07 12:38     ` FUJITA Tomonori
2026-08-07 12:59       ` Gary Guo [this message]
2026-08-07 13:13         ` FUJITA Tomonori
2026-08-06  7:32 ` [PATCH v5 5/7] rust: workqueue: take a Delta<Jiffy> for the enqueue delay FUJITA Tomonori
2026-08-06  7:32 ` [PATCH v5 6/7] rust: sync: condvar: use Delta<Jiffy> for timeout and result FUJITA Tomonori
2026-08-06  7:32 ` [PATCH v5 7/7] rust: time: remove unused Jiffies/Msecs helpers FUJITA Tomonori

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=DKIQAE0F6ZVF.3BFDX69JGNUI8@garyguo.net \
    --to=gary@garyguo.net \
    --cc=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=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