Merge branch 'linus' into x86/delay
authorIngo Molnar <mingo@elte.hu>
Wed, 25 Jun 2008 10:30:10 +0000 (12:30 +0200)
committerIngo Molnar <mingo@elte.hu>
Wed, 25 Jun 2008 10:30:10 +0000 (12:30 +0200)
Conflicts:

arch/x86/kernel/tsc_32.c

Signed-off-by: Ingo Molnar <mingo@elte.hu>
1  2 
arch/x86/kernel/tsc_32.c

@@@ -402,13 -404,9 +405,10 @@@ static inline void check_geode_tsc_reli
  void __init tsc_init(void)
  {
        int cpu;
 +      u64 lpj;
  
-       if (!cpu_has_tsc || tsc_disabled) {
-               /* Disable the TSC in case of !cpu_has_tsc */
-               tsc_disabled = 1;
+       if (!cpu_has_tsc || tsc_disabled > 0)
                return;
-       }
  
        cpu_khz = calculate_cpu_khz();
        tsc_khz = cpu_khz;
                return;
        }
  
 +      lpj = ((u64)tsc_khz * 1000);
 +      do_div(lpj, HZ);
 +      lpj_fine = lpj;
 +
+       /* now allow native_sched_clock() to use rdtsc */
+       tsc_disabled = 0;
        printk("Detected %lu.%03lu MHz processor.\n",
                                (unsigned long)cpu_khz / 1000,
                                (unsigned long)cpu_khz % 1000);