]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/i386/cpu.c
xnu-4570.71.2.tar.gz
[apple/xnu.git] / osfmk / i386 / cpu.c
index fc9fcc43e3df915111373207f772e541f646542a..84cf0661559e8d8c9d0c8c6c1f2e97ef722af98e 100644 (file)
@@ -155,7 +155,7 @@ cpu_exit_wait(
         * a timeout if long-running interrupt were to occur here.
         */
        intrs_enabled = ml_set_interrupts_enabled(FALSE);
         * a timeout if long-running interrupt were to occur here.
         */
        intrs_enabled = ml_set_interrupts_enabled(FALSE);
-       simple_lock(&x86_topo_lock);
+       mp_safe_spin_lock(&x86_topo_lock);
        /* Set a generous timeout of several seconds (in TSC ticks) */
        tsc_timeout = rdtsc64() + (10ULL * 1000 * 1000 * 1000);
        while ((cdp->lcpu.state != LCPU_HALT)
        /* Set a generous timeout of several seconds (in TSC ticks) */
        tsc_timeout = rdtsc64() + (10ULL * 1000 * 1000 * 1000);
        while ((cdp->lcpu.state != LCPU_HALT)
@@ -167,7 +167,7 @@ cpu_exit_wait(
            if (rdtsc64() > tsc_timeout)
                panic("cpu_exit_wait(%d) timeout", cpu);
            ml_set_interrupts_enabled(FALSE);
            if (rdtsc64() > tsc_timeout)
                panic("cpu_exit_wait(%d) timeout", cpu);
            ml_set_interrupts_enabled(FALSE);
-           simple_lock(&x86_topo_lock);
+           mp_safe_spin_lock(&x86_topo_lock);
        }
        simple_unlock(&x86_topo_lock);
        ml_set_interrupts_enabled(intrs_enabled);
        }
        simple_unlock(&x86_topo_lock);
        ml_set_interrupts_enabled(intrs_enabled);
@@ -185,8 +185,8 @@ cpu_machine_init(
        ml_init_interrupt();
 
 #if CONFIG_VMX
        ml_init_interrupt();
 
 #if CONFIG_VMX
-       /* for every CPU, get the VT specs */
-       vmx_get_specs();
+       /* initialize VMX for every CPU */
+       vmx_cpu_init();
 #endif
 }
 
 #endif
 }
 
@@ -199,7 +199,7 @@ cpu_processor_alloc(boolean_t is_boot_cpu)
        if (is_boot_cpu)
                return &processor_master;
 
        if (is_boot_cpu)
                return &processor_master;
 
-       ret = kmem_alloc(kernel_map, (vm_offset_t *) &proc, sizeof(*proc));
+       ret = kmem_alloc(kernel_map, (vm_offset_t *) &proc, sizeof(*proc), VM_KERN_MEMORY_OSFMK);
        if (ret != KERN_SUCCESS)
                return NULL;
 
        if (ret != KERN_SUCCESS)
                return NULL;