mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
sched: remove double unlikely from schedule()
Combine two unlikely's Signed-off-by: Roel Kluin <12o3l@tiscali.nl> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
2070ee01d3
commit
23e3c3cd2e
1 changed files with 1 additions and 1 deletions
|
@ -3882,7 +3882,7 @@ need_resched_nonpreemptible:
|
|||
|
||||
if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
|
||||
if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
|
||||
unlikely(signal_pending(prev)))) {
|
||||
signal_pending(prev))) {
|
||||
prev->state = TASK_RUNNING;
|
||||
} else {
|
||||
deactivate_task(rq, prev, 1);
|
||||
|
|
Loading…
Reference in a new issue