Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull x86 fixes from Ingo Molnar:
"A CR4-shadow 32-bit init fix, plus two typo fixes"

* 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86: Init per-cpu shadow copy of CR4 on 32-bit CPUs too
x86/platform/intel-mid: Fix trivial printk message typo in intel_mid_arch_setup()
x86/cpu/intel: Fix trivial typo in intel_tlb_table[]

+9 -3
+6
arch/x86/kernel/cpu/common.c
··· 1396 1396 1397 1397 wait_for_master_cpu(cpu); 1398 1398 1399 + /* 1400 + * Initialize the CR4 shadow before doing anything that could 1401 + * try to read it. 1402 + */ 1403 + cr4_init_shadow(); 1404 + 1399 1405 show_ucode_info_early(); 1400 1406 1401 1407 printk(KERN_INFO "Initializing CPU#%d\n", cpu);
+2 -2
arch/x86/kernel/cpu/intel.c
··· 565 565 { 0xb2, TLB_INST_4K, 64, " TLB_INST 4KByte pages, 4-way set associative" }, 566 566 { 0xb3, TLB_DATA_4K, 128, " TLB_DATA 4 KByte pages, 4-way set associative" }, 567 567 { 0xb4, TLB_DATA_4K, 256, " TLB_DATA 4 KByte pages, 4-way associative" }, 568 - { 0xb5, TLB_INST_4K, 64, " TLB_INST 4 KByte pages, 8-way set ssociative" }, 569 - { 0xb6, TLB_INST_4K, 128, " TLB_INST 4 KByte pages, 8-way set ssociative" }, 568 + { 0xb5, TLB_INST_4K, 64, " TLB_INST 4 KByte pages, 8-way set associative" }, 569 + { 0xb6, TLB_INST_4K, 128, " TLB_INST 4 KByte pages, 8-way set associative" }, 570 570 { 0xba, TLB_DATA_4K, 64, " TLB_DATA 4 KByte pages, 4-way associative" }, 571 571 { 0xc0, TLB_DATA_4K_4M, 8, " TLB_DATA 4 KByte and 4 MByte pages, 4-way associative" }, 572 572 { 0xc1, STLB_4K_2M, 1024, " STLB 4 KByte and 2 MByte pages, 8-way associative" },
+1 -1
arch/x86/platform/intel-mid/intel-mid.c
··· 130 130 intel_mid_ops = get_intel_mid_ops[__intel_mid_cpu_chip](); 131 131 else { 132 132 intel_mid_ops = get_intel_mid_ops[INTEL_MID_CPU_CHIP_PENWELL](); 133 - pr_info("ARCH: Uknown SoC, assuming PENWELL!\n"); 133 + pr_info("ARCH: Unknown SoC, assuming PENWELL!\n"); 134 134 } 135 135 136 136 out: