]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
rust: Add read_poll_timeout function
authorFUJITA Tomonori <fujita.tomonori@gmail.com>
Thu, 21 Aug 2025 00:20:55 +0000 (09:20 +0900)
committerDanilo Krummrich <dakr@kernel.org>
Thu, 21 Aug 2025 19:09:48 +0000 (21:09 +0200)
commit349a64256534aa2c73787b22f7bc0517a211cdab
tree2b91ce01eab02ce423c4f7f2fcd087d2d1751c63
parent842aedc3907deb154eedb88c7e4c3278c9b33701
rust: Add read_poll_timeout function

Add read_poll_timeout function which polls periodically until a
condition is met, an error occurs, or the timeout is reached.

The C's read_poll_timeout (include/linux/iopoll.h) is a complicated
macro and a simple wrapper for Rust doesn't work. So this implements
the same functionality in Rust.

The C version uses usleep_range() while the Rust version uses
fsleep(), which uses the best sleep method so it works with spans that
usleep_range() doesn't work nicely with.

The sleep_before_read argument isn't supported since there is no user
for now. It's rarely used in the C version.

Reviewed-by: Andreas Hindborg <a.hindborg@kernel.org>
Reviewed-by: Fiona Behrens <me@kloenk.dev>
Reviewed-by: Alexandre Courbot <acourbot@nvidia.com>
Tested-by: Alexandre Courbot <acourbot@nvidia.com>
Reviewed-by: Daniel Almeida <daniel.almeida@collabora.com>
Tested-by: Daniel Almeida <daniel.almeida@collabora.com>
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
Link: https://lore.kernel.org/r/20250821002055.3654160-3-fujita.tomonori@gmail.com
[ Fix a minor typo and add missing backticks. - Danilo ]
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
rust/kernel/io.rs
rust/kernel/io/poll.rs [new file with mode: 0644]