diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2008-07-08 18:06:56 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-16 05:01:31 -0400 |
commit | 4560a2947e32670fc6ede108c2b032c396180649 (patch) | |
tree | 9fa2a4b8dee382065f1a127d123aaaba89436d2d /arch/x86/xen/smp.c | |
parent | ce803e705f1cbdd2703e83061622089b5b4a5417 (diff) |
xen: set num_processors
Someone's got to do it.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Cc: Stephen Tweedie <sct@redhat.com>
Cc: Eduardo Habkost <ehabkost@redhat.com>
Cc: Mark McLoughlin <markmc@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/xen/smp.c')
-rw-r--r-- | arch/x86/xen/smp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/xen/smp.c b/arch/x86/xen/smp.c index 800bb2191e2a..8310ca0ea375 100644 --- a/arch/x86/xen/smp.c +++ b/arch/x86/xen/smp.c | |||
@@ -155,8 +155,10 @@ static void __init xen_fill_possible_map(void) | |||
155 | 155 | ||
156 | for (i = 0; i < NR_CPUS; i++) { | 156 | for (i = 0; i < NR_CPUS; i++) { |
157 | rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL); | 157 | rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL); |
158 | if (rc >= 0) | 158 | if (rc >= 0) { |
159 | num_processors++; | ||
159 | cpu_set(i, cpu_possible_map); | 160 | cpu_set(i, cpu_possible_map); |
161 | } | ||
160 | } | 162 | } |
161 | } | 163 | } |
162 | 164 | ||