]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - kernel/sched_clock.c
MIPS: IP28: Change to build with -mr10k-cache-barrier=store
[karo-tx-linux.git] / kernel / sched_clock.c
index 819f17ac796efeeee1068efe3e6a27ac952d3a16..e1d16c9a76806ef945e4271a9cfcef9ac1a0a0d9 100644 (file)
@@ -38,7 +38,8 @@
  */
 unsigned long long __attribute__((weak)) sched_clock(void)
 {
-       return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ);
+       return (unsigned long long)(jiffies - INITIAL_JIFFIES)
+                                       * (NSEC_PER_SEC / HZ);
 }
 
 static __read_mostly int sched_clock_running;