diff options
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r-- | arch/x86/kernel/bios_uv.c | 8 | ||||
-rw-r--r-- | arch/x86/kernel/genx2apic_uv_x.c | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/arch/x86/kernel/bios_uv.c b/arch/x86/kernel/bios_uv.c index f0dfe6f17e7e..7cefb7170e75 100644 --- a/arch/x86/kernel/bios_uv.c +++ b/arch/x86/kernel/bios_uv.c | |||
@@ -69,10 +69,10 @@ s64 uv_bios_call_reentrant(enum uv_bios_cmd which, u64 a1, u64 a2, u64 a3, | |||
69 | 69 | ||
70 | long sn_partition_id; | 70 | long sn_partition_id; |
71 | EXPORT_SYMBOL_GPL(sn_partition_id); | 71 | EXPORT_SYMBOL_GPL(sn_partition_id); |
72 | long uv_coherency_id; | 72 | long sn_coherency_id; |
73 | EXPORT_SYMBOL_GPL(uv_coherency_id); | 73 | EXPORT_SYMBOL_GPL(sn_coherency_id); |
74 | long uv_region_size; | 74 | long sn_region_size; |
75 | EXPORT_SYMBOL_GPL(uv_region_size); | 75 | EXPORT_SYMBOL_GPL(sn_region_size); |
76 | int uv_type; | 76 | int uv_type; |
77 | 77 | ||
78 | 78 | ||
diff --git a/arch/x86/kernel/genx2apic_uv_x.c b/arch/x86/kernel/genx2apic_uv_x.c index bfd532843df6..6cf35c8bd636 100644 --- a/arch/x86/kernel/genx2apic_uv_x.c +++ b/arch/x86/kernel/genx2apic_uv_x.c | |||
@@ -429,7 +429,7 @@ void __init uv_system_init(void) | |||
429 | 429 | ||
430 | uv_bios_init(); | 430 | uv_bios_init(); |
431 | uv_bios_get_sn_info(0, &uv_type, &sn_partition_id, | 431 | uv_bios_get_sn_info(0, &uv_type, &sn_partition_id, |
432 | &uv_coherency_id, &uv_region_size); | 432 | &sn_coherency_id, &sn_region_size); |
433 | uv_rtc_init(); | 433 | uv_rtc_init(); |
434 | 434 | ||
435 | for_each_present_cpu(cpu) { | 435 | for_each_present_cpu(cpu) { |
@@ -451,7 +451,7 @@ void __init uv_system_init(void) | |||
451 | uv_cpu_hub_info(cpu)->gpa_mask = (1 << (m_val + n_val)) - 1; | 451 | uv_cpu_hub_info(cpu)->gpa_mask = (1 << (m_val + n_val)) - 1; |
452 | uv_cpu_hub_info(cpu)->gnode_upper = gnode_upper; | 452 | uv_cpu_hub_info(cpu)->gnode_upper = gnode_upper; |
453 | uv_cpu_hub_info(cpu)->global_mmr_base = mmr_base; | 453 | uv_cpu_hub_info(cpu)->global_mmr_base = mmr_base; |
454 | uv_cpu_hub_info(cpu)->coherency_domain_number = uv_coherency_id; | 454 | uv_cpu_hub_info(cpu)->coherency_domain_number = sn_coherency_id; |
455 | uv_node_to_blade[nid] = blade; | 455 | uv_node_to_blade[nid] = blade; |
456 | uv_cpu_to_blade[cpu] = blade; | 456 | uv_cpu_to_blade[cpu] = blade; |
457 | max_pnode = max(pnode, max_pnode); | 457 | max_pnode = max(pnode, max_pnode); |