All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Work around for periodic do_gettimeofday hang
@ 2004-11-24 16:49 James Bottomley
  2004-11-24 19:13 ` Arjan van de Ven
  2004-11-25 15:47 ` Alan Cox
  0 siblings, 2 replies; 11+ messages in thread
From: James Bottomley @ 2004-11-24 16:49 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Linux Kernel

On the voyager systems particularly (but also on some of my slower
parisc boxes) I periodically get hangs where the system just seems to
stop (although it does remain able to execute alt-sysrq).  The traces
always seem to implicate do_gettimeofday in the xtime seqlock.

I've not been able to trace an exact cause for this, but it does seem to
be pretty much eliminated by lowering the clock speed to 100HZ.  I
propose the following patch to do this for the slower intel processors
(basically pentiums and below)

James

--

Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>

===== include/asm-i386/param.h 1.6 vs edited =====
--- 1.6/include/asm-i386/param.h	2004-06-24 03:55:46 -05:00
+++ edited/include/asm-i386/param.h	2004-11-22 18:36:42 -06:00
@@ -1,8 +1,15 @@
 #ifndef _ASMi386_PARAM_H
 #define _ASMi386_PARAM_H
 
+#include <linux/config.h>
+
 #ifdef __KERNEL__
-# define HZ		1000		/* Internal kernel timer frequency */
+# if defined(CONFIG_M386) || defined(CONFIG_M486) || defined(CONFIG_M586) \
+     || defined(CONFIG_M586TSC) || defined(CONFIG_M586MMX)
+#  define HZ		100
+# else
+#  define HZ		1000		/* Internal kernel timer frequency */
+# endif
 # define USER_HZ	100		/* .. some user interfaces are in "ticks" */
 # define CLOCKS_PER_SEC		(USER_HZ)	/* like times() */
 #endif


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

end of thread, other threads:[~2004-11-27 22:38 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-24 16:49 [PATCH] Work around for periodic do_gettimeofday hang James Bottomley
2004-11-24 19:13 ` Arjan van de Ven
2004-11-25  4:27   ` James Bottomley
2004-11-25  4:33     ` Andrew Morton
2004-11-25  4:40       ` James Bottomley
2004-11-25  8:20       ` Arjan van de Ven
2004-11-27 22:38         ` Lee Revell
2004-11-25 11:18     ` Roman Zippel
2004-11-25 13:42     ` Jan Engelhardt
2004-11-25 15:47 ` Alan Cox
2004-11-25 17:33   ` James Bottomley

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.