Skip to content
Commit 85b088e9 authored by Michal Nazarewicz's avatar Michal Nazarewicz Committed by Ingo Molnar
Browse files

sched/fair: Avoid integer overflow



sa->runnable_avg_sum is of type u32 but after shifting it by NICE_0_SHIFT
bits it is promoted to u64.  This of course makes no sense, since the
result will never be more then 32-bit long.  Casting sa->runnable_avg_sum
to u64 before it is shifted, fixes this problem.

Reviewed-by: default avatarBen Segall <bsegall@google.com>
Signed-off-by: default avatarMichal Nazarewicz <mina86@mina86.com>
Signed-off-by: default avatarPeter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1384112521-25177-1-git-send-email-mpn@google.com


Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent 911b2898
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