Skip to content

Commit

Permalink
[PATCH] sched: fix signed comparisons of long long
Browse files Browse the repository at this point in the history
Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Ingo Molnar authored and Linus Torvalds committed Apr 18, 2005
1 parent 9a9947b commit 238628e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kernel/sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -2648,9 +2648,9 @@ asmlinkage void __sched schedule(void)

schedstat_inc(rq, sched_cnt);
now = sched_clock();
if (likely((long long)now - prev->timestamp < NS_MAX_SLEEP_AVG)) {
if (likely((long long)(now - prev->timestamp) < NS_MAX_SLEEP_AVG)) {
run_time = now - prev->timestamp;
if (unlikely((long long)now - prev->timestamp < 0))
if (unlikely((long long)(now - prev->timestamp) < 0))
run_time = 0;
} else
run_time = NS_MAX_SLEEP_AVG;
Expand Down Expand Up @@ -2728,7 +2728,7 @@ asmlinkage void __sched schedule(void)

if (!rt_task(next) && next->activated > 0) {
unsigned long long delta = now - next->timestamp;
if (unlikely((long long)now - next->timestamp < 0))
if (unlikely((long long)(now - next->timestamp) < 0))
delta = 0;

if (next->activated == 1)
Expand Down

0 comments on commit 238628e

Please sign in to comment.