From: Guenter Roeck <linux@roeck-us.net>
To: Douglas Anderson <dianders@chromium.org>
Cc: Thomas Gleixner <tglx@linutronix.de>,
John Stultz <john.stultz@linaro.org>,
Andreas Mohr <andi@lisas.de>,
briannorris@chromium.org, huangtao@rock-chips.com,
tony.xie@rock-chips.com, linux-rockchip@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [v2] timers: Fix usleep_range() in the context of wake_up_process()
Date: Wed, 12 Oct 2016 09:03:45 -0700 [thread overview]
Message-ID: <20161012160309.GA19146@roeck-us.net> (raw)
In-Reply-To: <1476133442-17757-1-git-send-email-dianders@chromium.org>
On Mon, Oct 10, 2016 at 02:04:02PM -0700, Douglas Anderson wrote:
> Users of usleep_range() expect that it will _never_ return in less time
> than the minimum passed parameter. However, nothing in any of the code
> ensures this. Specifically:
>
> usleep_range() => do_usleep_range() => schedule_hrtimeout_range() =>
> schedule_hrtimeout_range_clock() just ends up calling schedule() with an
> appropriate timeout set using the hrtimer. If someone else happens to
> wake up our task then we'll happily return from usleep_range() early.
>
> msleep() already has code to handle this case since it will loop as long
> as there was still time left. usleep_range() had no such loop.
>
> The problem is is easily demonstrated with a small bit of test code:
>
> static int usleep_test_task(void *data)
> {
> atomic_t *done = data;
> ktime_t start, end;
>
> start = ktime_get();
> usleep_range(50000, 100000);
> end = ktime_get();
> pr_info("Requested 50000 - 100000 us. Actually slept for %llu us\n",
> (unsigned long long)ktime_to_us(ktime_sub(end, start)));
> atomic_set(done, 1);
>
> return 0;
> }
>
> static void run_usleep_test(void)
> {
> struct task_struct *t;
> atomic_t done;
>
> atomic_set(&done, 0);
>
> t = kthread_run(usleep_test_task, &done, "usleep_test_task");
> while (!atomic_read(&done)) {
> wake_up_process(t);
> udelay(1000);
> }
> kthread_stop(t);
> }
>
> If you run the above code without this patch you get things like:
> Requested 50000 - 100000 us. Actually slept for 967 us
>
> If you run the above code _with_ this patch, you get:
> Requested 50000 - 100000 us. Actually slept for 50001 us
>
> Presumably this problem was not detected before because:
> - It's not terribly common to use wake_up_process() directly.
> - Other ways for processes to wake up are not typically mixed with
> usleep_range().
> - There aren't lots of places that use usleep_range(), since many people
> call either msleep() or udelay().
>
> Reported-by: Tao Huang <huangtao@rock-chips.com>
> Signed-off-by: Douglas Anderson <dianders@chromium.org>
> Reviewed-by: Brian Norris <briannorris@chromium.org>
> Reviewed-by: Andreas Mohr <andim2@users.sf.net>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
The following drivers may expect the function to be interruptible.
drivers/iio/accel/kxcjk-1013.c: kxcjk1013_runtime_resume()
drivers/iio/accel/bmc150-accel-core.c:bmc150_accel_runtime_resume()
drivers/iio/accel/mma8452.c:mma8452_runtime_resume()
drivers/iio/accel/mma9551_core.c:mma9551_sleep()
kernel/trace/ring_buffer.c:rb_test()
A possible solution might be to introduce usleep_range_interruptible()
and use it there.
Note:
drivers/scsi/mvumi.c:mvumi_rescan_bus() uses msleep() but should possibly
use msleep_interruptible() instead.
Guenter
next prev parent reply other threads:[~2016-10-12 16:05 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-10 21:04 [PATCH v2] timers: Fix usleep_range() in the context of wake_up_process() Douglas Anderson
2016-10-10 22:39 ` Doug Anderson
2016-10-11 7:14 ` Thomas Gleixner
2016-10-11 16:33 ` Doug Anderson
2016-10-12 8:56 ` Mark Brown
2016-10-11 18:25 ` Andreas Mohr
2016-10-12 13:11 ` Thomas Gleixner
2016-10-12 17:39 ` Doug Anderson
2016-10-11 20:34 ` Heiko Stuebner
2016-10-11 18:54 ` Brian Norris
2016-10-11 19:30 ` Andreas Mohr
2016-10-11 20:02 ` Doug Anderson
2016-10-11 20:40 ` Andreas Mohr
2016-10-12 16:03 ` Guenter Roeck [this message]
2016-10-12 16:27 ` [v2] " Doug Anderson
2016-10-12 16:53 ` Guenter Roeck
2016-10-18 13:44 ` [PATCH v2] " Daniel Kurtz
2016-10-18 20:29 ` Doug Anderson
2016-10-20 8:57 ` Daniel Kurtz
2016-10-20 9:51 ` Thomas Gleixner
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=20161012160309.GA19146@roeck-us.net \
--to=linux@roeck-us.net \
--cc=andi@lisas.de \
--cc=briannorris@chromium.org \
--cc=dianders@chromium.org \
--cc=huangtao@rock-chips.com \
--cc=john.stultz@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=tglx@linutronix.de \
--cc=tony.xie@rock-chips.com \
/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