mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2] sched/fair: fix mul overflow on 32-bit systems
@ 2015-12-14 12:47 Andrey Ryabinin
  2015-12-14 14:35 ` Peter Zijlstra
  2016-01-06 18:47 ` [tip:sched/core] sched/fair: Fix multiplication " tip-bot for Andrey Ryabinin
  0 siblings, 2 replies; 3+ messages in thread
From: Andrey Ryabinin @ 2015-12-14 12:47 UTC (permalink / raw)
  To: mingo, peterz
  Cc: bsegall, dietmar.eggemann, linux-kernel, yuyang.du, pjt,
	morten.rasmussen, Andrey Ryabinin

Make 'r' 64-bit type to avoid overflow in 'r * LOAD_AVG_MAX'
on 32-bit systems:
	UBSAN: Undefined behaviour in kernel/sched/fair.c:2785:18
	signed integer overflow:
	87950 * 47742 cannot be represented in type 'int'

Fixes: 9d89c257dfb9 ("sched/fair: Rewrite runnable load and utilization average tracking")
Signed-off-by: Andrey Ryabinin <aryabinin@virtuozzo.com>
---
 Changes since v1:
  - Removed wrong second hunk. Anyway, if fix for util_avg is needed,
    it deserves a separte patch.
    
 kernel/sched/fair.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index 90e26b1..cfdc0e6 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -2689,7 +2689,7 @@ static inline int update_cfs_rq_load_avg(u64 now, struct cfs_rq *cfs_rq)
 	int decayed, removed = 0;
 
 	if (atomic_long_read(&cfs_rq->removed_load_avg)) {
-		long r = atomic_long_xchg(&cfs_rq->removed_load_avg, 0);
+		s64 r = atomic_long_xchg(&cfs_rq->removed_load_avg, 0);
 		sa->load_avg = max_t(long, sa->load_avg - r, 0);
 		sa->load_sum = max_t(s64, sa->load_sum - r * LOAD_AVG_MAX, 0);
 		removed = 1;
-- 
2.4.10


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-01-06 18:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-14 12:47 [PATCH v2] sched/fair: fix mul overflow on 32-bit systems Andrey Ryabinin
2015-12-14 14:35 ` Peter Zijlstra
2016-01-06 18:47 ` [tip:sched/core] sched/fair: Fix multiplication " tip-bot for Andrey Ryabinin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome