From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: Anna-Maria Behnsen <anna-maria@linutronix.de>,
linux-kernel@vger.kernel.org
Cc: Andrew Morton <akpm@linux-foundation.org>,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Subject: [PATCH v1 1/1] iopoll: Use fsleep() instead of usleep_range()
Date: Fri, 2 May 2025 16:43:45 +0300 [thread overview]
Message-ID: <20250502134346.4146857-1-andriy.shevchenko@linux.intel.com> (raw)
Use fsleep() instead of usleep_range() to improve small time delays
by avoiding the timer use. With this, use slightly bigger initial
delays then was passed to usleep_range().
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
include/linux/iopoll.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/iopoll.h b/include/linux/iopoll.h
index 91324c331a4b..fca50f117fae 100644
--- a/include/linux/iopoll.h
+++ b/include/linux/iopoll.h
@@ -41,7 +41,7 @@
ktime_t __timeout = ktime_add_us(ktime_get(), __timeout_us); \
might_sleep_if((__sleep_us) != 0); \
if (sleep_before_read && __sleep_us) \
- usleep_range((__sleep_us >> 2) + 1, __sleep_us); \
+ fsleep((__sleep_us >> 1) + 1); \
for (;;) { \
(val) = op(args); \
if (cond) \
@@ -52,7 +52,7 @@
break; \
} \
if (__sleep_us) \
- usleep_range((__sleep_us >> 2) + 1, __sleep_us); \
+ fsleep((__sleep_us >> 1) + 1); \
cpu_relax(); \
} \
(cond) ? 0 : -ETIMEDOUT; \
--
2.47.2
next reply other threads:[~2025-05-02 13:44 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-02 13:43 Andy Shevchenko [this message]
2025-06-13 8:48 ` [PATCH v1 1/1] iopoll: Use fsleep() instead of usleep_range() Andy Shevchenko
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=20250502134346.4146857-1-andriy.shevchenko@linux.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=akpm@linux-foundation.org \
--cc=anna-maria@linutronix.de \
--cc=linux-kernel@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.