]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/x86/xen/smp.c
xen64: set up syscall and sysenter entrypoints for 64-bit
[linux-2.6-omap-h63xx.git] / arch / x86 / xen / smp.c
index 800bb2191e2a37858f954fb27bc7c61cb25b8420..f702199312a5b82c5d580f5987d6dc33e4c50e4d 100644 (file)
@@ -69,6 +69,7 @@ static __cpuinit void cpu_bringup_and_idle(void)
        preempt_disable();
 
        xen_enable_sysenter();
+       xen_enable_syscall();
 
        cpu = smp_processor_id();
        smp_store_cpu_info(cpu);
@@ -155,8 +156,10 @@ static void __init xen_fill_possible_map(void)
 
        for (i = 0; i < NR_CPUS; i++) {
                rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL);
-               if (rc >= 0)
+               if (rc >= 0) {
+                       num_processors++;
                        cpu_set(i, cpu_possible_map);
+               }
        }
 }