mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
kernel/watchdog.c: add comment to watchdog() exit path
Revelation from Peter. Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Don Zickus <dzickus@redhat.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Thomas Gleixner <tglx@tglx.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
4501980aae
commit
b60f796c4c
1 changed files with 4 additions and 0 deletions
|
@ -349,6 +349,10 @@ static int watchdog(void *unused)
|
||||||
|
|
||||||
set_current_state(TASK_INTERRUPTIBLE);
|
set_current_state(TASK_INTERRUPTIBLE);
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
|
* Drop the policy/priority elevation during thread exit to avoid a
|
||||||
|
* scheduling latency spike.
|
||||||
|
*/
|
||||||
__set_current_state(TASK_RUNNING);
|
__set_current_state(TASK_RUNNING);
|
||||||
sched_setscheduler(current, SCHED_NORMAL, ¶m);
|
sched_setscheduler(current, SCHED_NORMAL, ¶m);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue