public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix overflow when HZ is smaller than 60
@ 2014-01-24 17:21 Mikulas Patocka
  2014-01-24 21:41 ` [PATCH v2] " Mikulas Patocka
  0 siblings, 1 reply; 3+ messages in thread
From: Mikulas Patocka @ 2014-01-24 17:21 UTC (permalink / raw)
  To: John Stultz, Thomas Gleixner; +Cc: linux-kernel

When compiling for the IA-64 ski emulator, HZ is set to 32 because the
emulation is slow and we don't want to waste too many cycles processing
timers. Alpha also has an option to set HZ to 32.

This causes integer underflow in
kernel/time/jiffies.c:
kernel/time/jiffies.c:66:2: warning: large integer implicitly truncated to unsigned type [-Woverflow]
  .mult  = NSEC_PER_JIFFY << JIFFIES_SHIFT, /* details above */
  ^

This patch reduces the JIFFIES_SHIFT value to avoid the overflow.

Signed-off-by: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Cc: stable@vger.kernel.org

---
 kernel/time/jiffies.c |    6 ++++++
 1 file changed, 6 insertions(+)

Index: linux-2.6-ia64/kernel/time/jiffies.c
===================================================================
--- linux-2.6-ia64.orig/kernel/time/jiffies.c	2014-01-24 17:48:48.000000000 +0100
+++ linux-2.6-ia64/kernel/time/jiffies.c	2014-01-24 18:14:51.000000000 +0100
@@ -51,7 +51,13 @@
  * HZ shrinks, so values greater than 8 overflow 32bits when
  * HZ=100.
  */
+#if HZ < 30
+#define JIFFIES_SHIFT	6
+#elif HZ < 60
+#define JIFFIES_SHIFT	7
+#else
 #define JIFFIES_SHIFT	8
+#endif
 
 static cycle_t jiffies_read(struct clocksource *cs)
 {

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

end of thread, other threads:[~2014-02-06 15:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-24 17:21 [PATCH] Fix overflow when HZ is smaller than 60 Mikulas Patocka
2014-01-24 21:41 ` [PATCH v2] " Mikulas Patocka
2014-02-06 15:04   ` [tip:timers/urgent] time: " tip-bot for Mikulas Patocka

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