Files
linux/kernel
Mateusz Guzik 9f8d487481 sched: Fix possible divide by zero in avg_atom() calculation
commit b0ab99e773 upstream.

proc_sched_show_task() does:

  if (nr_switches)
	do_div(avg_atom, nr_switches);

nr_switches is unsigned long and do_div truncates it to 32 bits, which
means it can test non-zero on e.g. x86-64 and be truncated to zero for
division.

Fix the problem by using div64_ul() instead.

As a side effect calculations of avg_atom for big nr_switches are now correct.

Signed-off-by: Mateusz Guzik <mguzik@redhat.com>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Link: http://lkml.kernel.org/r/1402750809-31991-1-git-send-email-mguzik@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
2014-07-29 17:01:47 +02:00
..
2013-04-22 07:09:06 -07:00
2012-12-20 17:40:19 -08:00
2013-09-13 15:09:52 +02:00
2013-05-05 00:16:35 -04:00
2014-01-09 12:25:07 -08:00
2014-07-16 11:31:17 +02:00
2013-09-11 15:58:27 -07:00
2014-06-06 11:40:22 +02:00