aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/platform/uv/tlb_uv.c
diff options
context:
space:
mode:
authorcpw@sgi.com <cpw@sgi.com>2011-06-21 08:21:28 -0400
committerIngo Molnar <mingo@elte.hu>2011-06-21 08:50:32 -0400
commit9c9153db22870c3f37add83bea30500fcc268a73 (patch)
treed588b8868b05766ef144cbce3eee9f6c2df2253a /arch/x86/platform/uv/tlb_uv.c
parentb18fb2c04ac46885f5b0226cd945e763eae51567 (diff)
x86, UV: Allow for non-consecutive sockets
Fix for the topology in which there is a socket 1 on a blade with no socket 0. Only call make_per_cpu_thp() for present sockets. We have only seen this fail for internal configurations. Signed-off-by: Cliff Wickman <cpw@sgi.com> Link: http://lkml.kernel.org/r/20110621122242.363757364@sgi.com Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/platform/uv/tlb_uv.c')
-rw-r--r--arch/x86/platform/uv/tlb_uv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/platform/uv/tlb_uv.c b/arch/x86/platform/uv/tlb_uv.c
index 34be65093309..7623b08eab1e 100644
--- a/arch/x86/platform/uv/tlb_uv.c
+++ b/arch/x86/platform/uv/tlb_uv.c
@@ -1752,10 +1752,10 @@ static int __init summarize_uvhub_sockets(int nuvhubs,
1752 sdp = &bdp->socket[socket]; 1752 sdp = &bdp->socket[socket];
1753 if (scan_sock(sdp, bdp, &smaster, &hmaster)) 1753 if (scan_sock(sdp, bdp, &smaster, &hmaster))
1754 return 1; 1754 return 1;
1755 make_per_cpu_thp(smaster);
1755 } 1756 }
1756 socket++; 1757 socket++;
1757 socket_mask = (socket_mask >> 1); 1758 socket_mask = (socket_mask >> 1);
1758 make_per_cpu_thp(smaster);
1759 } 1759 }
1760 } 1760 }
1761 return 0; 1761 return 0;