master
c 31 lines 828 Bytes
Raw
1 #include "qemu/osdep.h"
2 #include "migration/vmstate.h"
3 #include "hw/acpi/cpu.h"
4
5 /* Following stubs are all related to ACPI cpu hotplug */
6 const VMStateDescription vmstate_cpu_hotplug;
7
8 void cpu_hotplug_hw_init(MemoryRegion *as, Object *owner,
9 CPUHotplugState *state, hwaddr base_addr)
10 {
11 }
12
13 void acpi_cpu_ospm_status(CPUHotplugState *cpu_st, ACPIOSTInfoList ***list)
14 {
15 }
16
17 void acpi_cpu_plug_cb(HotplugHandler *hotplug_dev,
18 CPUHotplugState *cpu_st, DeviceState *dev, Error **errp)
19 {
20 }
21
22 void acpi_cpu_unplug_cb(CPUHotplugState *cpu_st,
23 DeviceState *dev, Error **errp)
24 {
25 }
26
27 void acpi_cpu_unplug_request_cb(HotplugHandler *hotplug_dev,
28 CPUHotplugState *cpu_st,
29 DeviceState *dev, Error **errp)
30 {
31 }