]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
Merge branches 'x86/mmio', 'x86/delay', 'x86/idle', 'x86/oprofile', 'x86/debug',...
authorIngo Molnar <mingo@elte.hu>
Tue, 8 Jul 2008 07:46:15 +0000 (09:46 +0200)
committerIngo Molnar <mingo@elte.hu>
Tue, 8 Jul 2008 07:46:15 +0000 (09:46 +0200)
1  2  3  4  5  6  7 
Documentation/kernel-parameters.txt
MAINTAINERS
arch/x86/Kconfig
arch/x86/kernel/Makefile
arch/x86/kernel/entry_64.S
arch/x86/kernel/pci-dma.c
arch/x86/kernel/tsc_32.c
arch/x86/mm/fault.c
include/asm-x86/cpufeature.h
include/asm-x86/gart.h

Simple merge
diff --cc MAINTAINERS
Simple merge
index 5d2858119930d1db7c5c13580cc831b627132b48,dcbec34154cf99ad24e840d4246a2a5037771c18,e0edaaa6920af63832979a04d4f525acafe64e8a,52e18e6d2ba0aae955bf1624e8370e18229fb861,e0edaaa6920af63832979a04d4f525acafe64e8a,e0edaaa6920af63832979a04d4f525acafe64e8a,b120cffae1ee3e600e75b3b80b9969cb2b71701c..7dc46ba26fbf56c8ab0bb152ab42f126d8f62bfb
@@@@@@@@ -411,14 -410,10 -411,14 -410,10 -411,14 -411,14 -411,14 +411,14 @@@@@@@@ config PARAVIR
          over full virtualization.  However, when run without a hypervisor
          the kernel is theoretically slower and slightly larger.
       
 + +   config PARAVIRT_CLOCK
 + +    bool
 + +    default n
 + +   
       endif
       
 ------config MEMTEST_BOOTPARAM
 ------ bool "Memtest boot parameter"
 ++++++config MEMTEST
 ++++++ bool "Memtest"
        depends on X86_64
        default y
        help
Simple merge
Simple merge
Simple merge
index 774a5a83c29661c1b25cba7d7beec48c1f273d95,068759db63ddebca0ed5561a1306a302dc38f474,0065426f1511a056f589375382ba88e256f2380a,65b70637ad9796d8256b9305c4dfd4ed3c378e6d,65b70637ad9796d8256b9305c4dfd4ed3c378e6d,65b70637ad9796d8256b9305c4dfd4ed3c378e6d,65b70637ad9796d8256b9305c4dfd4ed3c378e6d..6240922e497c30aa9a96a1982fe73a2a698ed5eb
@@@@@@@@ -403,9 -401,12 -405,10 -404,9 -404,9 -404,9 -404,9 +404,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);
Simple merge
Simple merge
Simple merge