writeback: bdi_writeback_task() must set task state before calling schedule()
Calling schedule without setting the task state to non-running will
return immediately, so ensure that we set it properly and check our
sleep conditions after doing so.
This is a fixup for commit 69b62d01
.
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
This commit is contained in:
parent
7c8a3554c6
commit
f9eadbbd42
1 changed files with 7 additions and 2 deletions
|
@ -978,8 +978,13 @@ int bdi_writeback_task(struct bdi_writeback *wb)
|
||||||
if (dirty_writeback_interval) {
|
if (dirty_writeback_interval) {
|
||||||
wait_jiffies = msecs_to_jiffies(dirty_writeback_interval * 10);
|
wait_jiffies = msecs_to_jiffies(dirty_writeback_interval * 10);
|
||||||
schedule_timeout_interruptible(wait_jiffies);
|
schedule_timeout_interruptible(wait_jiffies);
|
||||||
} else
|
} else {
|
||||||
|
set_current_state(TASK_INTERRUPTIBLE);
|
||||||
|
if (list_empty_careful(&wb->bdi->work_list) &&
|
||||||
|
!kthread_should_stop())
|
||||||
schedule();
|
schedule();
|
||||||
|
__set_current_state(TASK_RUNNING);
|
||||||
|
}
|
||||||
|
|
||||||
try_to_freeze();
|
try_to_freeze();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue