aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/genx2apic_uv_x.c
diff options
context:
space:
mode:
authorRuss Anderson <rja@sgi.com>2008-10-21 15:09:51 -0400
committerIngo Molnar <mingo@elte.hu>2008-10-22 02:38:58 -0400
commitb0f209898f1a177bd503d49215b8c6628797a81c (patch)
treeef91fd16a082921f480ede15029d9ea51cd57827 /arch/x86/kernel/genx2apic_uv_x.c
parent2515ddc6db8eb49a79f0fe5e67ff09ac7c81eab4 (diff)
x86, uv: use consistent names for region size and conherence id on x86 and ia64
Use consistent names for region size and conherence id on x86 and ia64. The SGI xp drivers are used on both ia64 and x86. Using the same names (sn_coherency_id, sn_region_size) simplies the driver code. Signed-off-by: Russ Anderson <rja@sgi.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/genx2apic_uv_x.c')
-rw-r--r--arch/x86/kernel/genx2apic_uv_x.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/genx2apic_uv_x.c b/arch/x86/kernel/genx2apic_uv_x.c
index bfd532843df..6cf35c8bd63 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);