Commit ef0e9180 authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'x86-fixes-for-linus' of...

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

* 'x86-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
  x86, cacheinfo: Turn off L3 cache index disable feature in virtualized environments
  x86, k8: Fix build error when K8_NB is disabled
  x86, amd: Check X86_FEATURE_OSVW bit before accessing OSVW MSRs
  x86: Fix fake apicid to node mapping for numa emulation
parents 4fc4c3ce 7f284d3c
...@@ -16,11 +16,16 @@ extern int k8_numa_init(unsigned long start_pfn, unsigned long end_pfn); ...@@ -16,11 +16,16 @@ extern int k8_numa_init(unsigned long start_pfn, unsigned long end_pfn);
extern int k8_scan_nodes(void); extern int k8_scan_nodes(void);
#ifdef CONFIG_K8_NB #ifdef CONFIG_K8_NB
extern int num_k8_northbridges;
static inline struct pci_dev *node_to_k8_nb_misc(int node) static inline struct pci_dev *node_to_k8_nb_misc(int node)
{ {
return (node < num_k8_northbridges) ? k8_northbridges[node] : NULL; return (node < num_k8_northbridges) ? k8_northbridges[node] : NULL;
} }
#else #else
#define num_k8_northbridges 0
static inline struct pci_dev *node_to_k8_nb_misc(int node) static inline struct pci_dev *node_to_k8_nb_misc(int node)
{ {
return NULL; return NULL;
......
...@@ -340,6 +340,10 @@ amd_check_l3_disable(int index, struct _cpuid4_info_regs *this_leaf) ...@@ -340,6 +340,10 @@ amd_check_l3_disable(int index, struct _cpuid4_info_regs *this_leaf)
(boot_cpu_data.x86_mask < 0x1))) (boot_cpu_data.x86_mask < 0x1)))
return; return;
/* not in virtualized environments */
if (num_k8_northbridges == 0)
return;
this_leaf->can_disable = true; this_leaf->can_disable = true;
this_leaf->l3_indices = amd_calc_l3_indices(); this_leaf->l3_indices = amd_calc_l3_indices();
} }
......
...@@ -546,11 +546,13 @@ static int __cpuinit check_c1e_idle(const struct cpuinfo_x86 *c) ...@@ -546,11 +546,13 @@ static int __cpuinit check_c1e_idle(const struct cpuinfo_x86 *c)
* check OSVW bit for CPUs that are not affected * check OSVW bit for CPUs that are not affected
* by erratum #400 * by erratum #400
*/ */
rdmsrl(MSR_AMD64_OSVW_ID_LENGTH, val); if (cpu_has(c, X86_FEATURE_OSVW)) {
if (val >= 2) { rdmsrl(MSR_AMD64_OSVW_ID_LENGTH, val);
rdmsrl(MSR_AMD64_OSVW_STATUS, val); if (val >= 2) {
if (!(val & BIT(1))) rdmsrl(MSR_AMD64_OSVW_STATUS, val);
goto no_c1e_idle; if (!(val & BIT(1)))
goto no_c1e_idle;
}
} }
return 1; return 1;
} }
......
...@@ -461,7 +461,8 @@ void __init acpi_fake_nodes(const struct bootnode *fake_nodes, int num_nodes) ...@@ -461,7 +461,8 @@ void __init acpi_fake_nodes(const struct bootnode *fake_nodes, int num_nodes)
* node, it must now point to the fake node ID. * node, it must now point to the fake node ID.
*/ */
for (j = 0; j < MAX_LOCAL_APIC; j++) for (j = 0; j < MAX_LOCAL_APIC; j++)
if (apicid_to_node[j] == nid) if (apicid_to_node[j] == nid &&
fake_apicid_to_node[j] == NUMA_NO_NODE)
fake_apicid_to_node[j] = i; fake_apicid_to_node[j] = i;
} }
for (i = 0; i < num_nodes; i++) for (i = 0; i < num_nodes; i++)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment