Commit 6e317c32 authored by Alexander Popov's avatar Alexander Popov Committed by Thomas Gleixner

timer: Improve the comment describing schedule_timeout()

When working commit 6dcd5d7a, a mistake was noticed by Linus:
schedule_timeout() was called without setting the task state to anything
particular.

It calls the scheduler, but doesn't delay anything, because the task stays
runnable. That happens because sched_submit_work() does nothing for tasks
in TASK_RUNNING state.

That turned out to be the intended behavior. Adding a WARN() is not useful
as the task could be woken up right after setting the state and before
reaching schedule_timeout().

Improve the comment about schedule_timeout() and describe that more
explicitly.
Signed-off-by: default avatarAlexander Popov <alex.popov@linux.com>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20200117225900.16340-1-alex.popov@linux.com
parent e876f0b6
...@@ -1828,21 +1828,23 @@ static void process_timeout(struct timer_list *t) ...@@ -1828,21 +1828,23 @@ static void process_timeout(struct timer_list *t)
* schedule_timeout - sleep until timeout * schedule_timeout - sleep until timeout
* @timeout: timeout value in jiffies * @timeout: timeout value in jiffies
* *
* Make the current task sleep until @timeout jiffies have * Make the current task sleep until @timeout jiffies have elapsed.
* elapsed. The routine will return immediately unless * The function behavior depends on the current task state
* the current task state has been set (see set_current_state()). * (see also set_current_state() description):
* *
* You can set the task state as follows - * %TASK_RUNNING - the scheduler is called, but the task does not sleep
* at all. That happens because sched_submit_work() does nothing for
* tasks in %TASK_RUNNING state.
* *
* %TASK_UNINTERRUPTIBLE - at least @timeout jiffies are guaranteed to * %TASK_UNINTERRUPTIBLE - at least @timeout jiffies are guaranteed to
* pass before the routine returns unless the current task is explicitly * pass before the routine returns unless the current task is explicitly
* woken up, (e.g. by wake_up_process())". * woken up, (e.g. by wake_up_process()).
* *
* %TASK_INTERRUPTIBLE - the routine may return early if a signal is * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
* delivered to the current task or the current task is explicitly woken * delivered to the current task or the current task is explicitly woken
* up. * up.
* *
* The current task state is guaranteed to be TASK_RUNNING when this * The current task state is guaranteed to be %TASK_RUNNING when this
* routine returns. * routine returns.
* *
* Specifying a @timeout value of %MAX_SCHEDULE_TIMEOUT will schedule * Specifying a @timeout value of %MAX_SCHEDULE_TIMEOUT will schedule
...@@ -1850,7 +1852,7 @@ static void process_timeout(struct timer_list *t) ...@@ -1850,7 +1852,7 @@ static void process_timeout(struct timer_list *t)
* value will be %MAX_SCHEDULE_TIMEOUT. * value will be %MAX_SCHEDULE_TIMEOUT.
* *
* Returns 0 when the timer has expired otherwise the remaining time in * Returns 0 when the timer has expired otherwise the remaining time in
* jiffies will be returned. In all cases the return value is guaranteed * jiffies will be returned. In all cases the return value is guaranteed
* to be non-negative. * to be non-negative.
*/ */
signed long __sched schedule_timeout(signed long timeout) signed long __sched schedule_timeout(signed long timeout)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment