]> Git Repo - qemu.git/blobdiff - hw/i386/acpi-build.c
pc: acpi: clarify why possible LAPIC entries must be present in MADT
[qemu.git] / hw / i386 / acpi-build.c
index 8736917f0b9a2bc2bb2b10ac6481a2e221792ff3..0a5acb3828612feb0f7cccf14feffef58ced2afc 100644 (file)
@@ -360,6 +360,12 @@ build_madt(GArray *table_data, GArray *linker, PCMachineState *pcms)
         if (apic_ids->cpus[i].cpu != NULL) {
             apic->flags = cpu_to_le32(1);
         } else {
+            /* ACPI spec says that LAPIC entry for non present
+             * CPU may be omitted from MADT or it must be marked
+             * as disabled. However omitting non present CPU from
+             * MADT breaks hotplug on linux. So possible CPUs
+             * should be put in MADT but kept disabled.
+             */
             apic->flags = cpu_to_le32(0);
         }
     }
This page took 0.02356 seconds and 4 git commands to generate.