diff options
| author | Gu Zheng | 2014-10-22 05:24:25 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin | 2014-11-02 12:44:11 +0100 |
| commit | 1be6b511a6a6f0d87b57725cf8d5caefcff3cc9a (patch) | |
| tree | 9f9bf23c659c345ee019ecefc8753fc9f05984ea /include | |
| parent | acpi: create separate file for TCPA log (diff) | |
| download | qemu-1be6b511a6a6f0d87b57725cf8d5caefcff3cc9a.tar.gz qemu-1be6b511a6a6f0d87b57725cf8d5caefcff3cc9a.tar.xz qemu-1be6b511a6a6f0d87b57725cf8d5caefcff3cc9a.zip | |
acpi/cpu: add cpu hotplug callback function to match hotplug_handler API
Add cpu hotplug callback function (acpi_cpu_plug_cb) to match hotplug_handler API.
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Gu Zheng <guz.fnst@cn.fujitsu.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/hw/acpi/cpu_hotplug.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/hw/acpi/cpu_hotplug.h b/include/hw/acpi/cpu_hotplug.h index 9e5d30c9df..5dca8d72e6 100644 --- a/include/hw/acpi/cpu_hotplug.h +++ b/include/hw/acpi/cpu_hotplug.h @@ -20,6 +20,9 @@ typedef struct AcpiCpuHotplug { uint8_t sts[ACPI_GPE_PROC_LEN]; } AcpiCpuHotplug; +void acpi_cpu_plug_cb(ACPIREGS *ar, qemu_irq irq, + AcpiCpuHotplug *g, DeviceState *dev, Error **errp); + void AcpiCpuHotplug_add(ACPIGPE *gpe, AcpiCpuHotplug *g, CPUState *cpu); void AcpiCpuHotplug_init(MemoryRegion *parent, Object *owner, |
