work around the remaining race condition in the tsc sched stuff
[openwrt.git] / target / linux / linux-2.4 / patches / ar7 / 006-sched_use_tsc.patch
index 73d177b..5b64310 100644 (file)
@@ -1,7 +1,7 @@
 diff -urN linux.old/arch/mips/kernel/time.c linux.dev/arch/mips/kernel/time.c
 --- linux.old/arch/mips/kernel/time.c  2005-11-14 11:06:38.661262000 +0100
-+++ linux.dev/arch/mips/kernel/time.c  2005-11-14 11:10:42.856523250 +0100
-@@ -151,6 +151,16 @@
++++ linux.dev/arch/mips/kernel/time.c  2005-11-15 20:02:50.059676750 +0100
+@@ -151,6 +151,27 @@
  unsigned int (*mips_hpt_read)(void);
  void (*mips_hpt_init)(unsigned int);
  
@@ -10,15 +10,26 @@ diff -urN linux.old/arch/mips/kernel/time.c linux.dev/arch/mips/kernel/time.c
 +      return timerhi;
 +}
 +
++static __u64 tscll_last = 0;
++
 +extern __u64 get_tscll(void)
 +{
++      __u64 h = (__u64) timerhi;
 +      __u32 c = read_c0_count();
-+      return ((((__u64) timerhi) + (c < timerlo)) << 32) | ((__u64) ((__u32) c));
++
++      h <<= 32;
++      h += c;
++
++      while (h < tscll_last)
++              h += (((__u64) 1) << 32);
++
++      tscll_last = h;
++      return h;       
 +}
  
  /*
   * timeofday services, for syscalls.
-@@ -761,3 +771,5 @@
+@@ -761,3 +782,5 @@
  EXPORT_SYMBOL(to_tm);
  EXPORT_SYMBOL(rtc_set_time);
  EXPORT_SYMBOL(rtc_get_time);
This page took 0.021527 seconds and 4 git commands to generate.