diff options
author | David Fries <david@fries.net> | 2008-02-06 04:38:04 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-06 13:41:10 -0500 |
commit | 6ffc787a4492ac627315aaeafdfdc0a5c3028582 (patch) | |
tree | bb557076ead94695cd148c4b7b065d44e77e62a3 /kernel | |
parent | 82f560874e88bd1fd8c98a6254d65a1dffab3876 (diff) |
system timer: fix crash in <100Hz system timer
The kernel has a divide by zero crash when trying to run the system timer
less than 100Hz. The problem is x/(HZ/USER_HZ) and related. Now
x*(USER_HZ/HZ) will be used if HZ<USER_HZ.
I'm running the Linux kernel under qemu and went to run a slower system
timer to take less CPU (and battery) on the host. I found that the kernel
paniced under emulation because of a divide by zero in three places. Here
is the patch. The base git was updated today 01-05-2008. I went for a
20Hz system time by adding config HZ_20 etc to kernel/Kconfig.hz. With
this patch I verified the system timer by looking at /proc/interrupts.
[akpm@linux-foundation.org: partially clean up the macro maze]
Signed-off-by: David Fries <david@fries.net>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/time.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/kernel/time.c b/kernel/time.c index 4064c0566e77..be5c8cb93582 100644 --- a/kernel/time.c +++ b/kernel/time.c | |||
@@ -566,7 +566,11 @@ EXPORT_SYMBOL(jiffies_to_timeval); | |||
566 | clock_t jiffies_to_clock_t(long x) | 566 | clock_t jiffies_to_clock_t(long x) |
567 | { | 567 | { |
568 | #if (TICK_NSEC % (NSEC_PER_SEC / USER_HZ)) == 0 | 568 | #if (TICK_NSEC % (NSEC_PER_SEC / USER_HZ)) == 0 |
569 | # if HZ < USER_HZ | ||
570 | return x * (USER_HZ / HZ); | ||
571 | # else | ||
569 | return x / (HZ / USER_HZ); | 572 | return x / (HZ / USER_HZ); |
573 | # endif | ||
570 | #else | 574 | #else |
571 | u64 tmp = (u64)x * TICK_NSEC; | 575 | u64 tmp = (u64)x * TICK_NSEC; |
572 | do_div(tmp, (NSEC_PER_SEC / USER_HZ)); | 576 | do_div(tmp, (NSEC_PER_SEC / USER_HZ)); |
@@ -599,7 +603,12 @@ EXPORT_SYMBOL(clock_t_to_jiffies); | |||
599 | u64 jiffies_64_to_clock_t(u64 x) | 603 | u64 jiffies_64_to_clock_t(u64 x) |
600 | { | 604 | { |
601 | #if (TICK_NSEC % (NSEC_PER_SEC / USER_HZ)) == 0 | 605 | #if (TICK_NSEC % (NSEC_PER_SEC / USER_HZ)) == 0 |
606 | # if HZ < USER_HZ | ||
607 | x *= USER_HZ; | ||
608 | do_div(x, HZ); | ||
609 | # else | ||
602 | do_div(x, HZ / USER_HZ); | 610 | do_div(x, HZ / USER_HZ); |
611 | # endif | ||
603 | #else | 612 | #else |
604 | /* | 613 | /* |
605 | * There are better ways that don't overflow early, | 614 | * There are better ways that don't overflow early, |
@@ -611,7 +620,6 @@ u64 jiffies_64_to_clock_t(u64 x) | |||
611 | #endif | 620 | #endif |
612 | return x; | 621 | return x; |
613 | } | 622 | } |
614 | |||
615 | EXPORT_SYMBOL(jiffies_64_to_clock_t); | 623 | EXPORT_SYMBOL(jiffies_64_to_clock_t); |
616 | 624 | ||
617 | u64 nsec_to_clock_t(u64 x) | 625 | u64 nsec_to_clock_t(u64 x) |
@@ -646,7 +654,6 @@ u64 get_jiffies_64(void) | |||
646 | } while (read_seqretry(&xtime_lock, seq)); | 654 | } while (read_seqretry(&xtime_lock, seq)); |
647 | return ret; | 655 | return ret; |
648 | } | 656 | } |
649 | |||
650 | EXPORT_SYMBOL(get_jiffies_64); | 657 | EXPORT_SYMBOL(get_jiffies_64); |
651 | #endif | 658 | #endif |
652 | 659 | ||