mirror of https://github.com/xemu-project/xemu.git
pc: Eliminate PcGuestInfo struct
The struct is not used for anything, now. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
dd4c2f01ab
commit
e4e8ba04c2
|
@ -1183,9 +1183,8 @@ void pc_machine_done(Notifier *notifier, void *data)
|
||||||
acpi_setup();
|
acpi_setup();
|
||||||
}
|
}
|
||||||
|
|
||||||
PcGuestInfo *pc_guest_info_init(PCMachineState *pcms)
|
void pc_guest_info_init(PCMachineState *pcms)
|
||||||
{
|
{
|
||||||
PcGuestInfo *guest_info = &pcms->acpi_guest_info;
|
|
||||||
int i, j;
|
int i, j;
|
||||||
|
|
||||||
pcms->apic_id_limit = pc_apic_id_limit(max_cpus);
|
pcms->apic_id_limit = pc_apic_id_limit(max_cpus);
|
||||||
|
@ -1213,7 +1212,6 @@ PcGuestInfo *pc_guest_info_init(PCMachineState *pcms)
|
||||||
|
|
||||||
pcms->machine_done.notify = pc_machine_done;
|
pcms->machine_done.notify = pc_machine_done;
|
||||||
qemu_add_machine_init_done_notifier(&pcms->machine_done);
|
qemu_add_machine_init_done_notifier(&pcms->machine_done);
|
||||||
return guest_info;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* setup pci memory address space mapping into system address space */
|
/* setup pci memory address space mapping into system address space */
|
||||||
|
|
|
@ -33,10 +33,6 @@
|
||||||
#define kvm_ioapic_in_kernel() 0
|
#define kvm_ioapic_in_kernel() 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Machine info for ACPI build: */
|
|
||||||
struct PcGuestInfo {
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PCMachineState:
|
* PCMachineState:
|
||||||
* @acpi_dev: link to ACPI PM device that performs ACPI hotplug handling
|
* @acpi_dev: link to ACPI PM device that performs ACPI hotplug handling
|
||||||
|
@ -49,7 +45,6 @@ struct PCMachineState {
|
||||||
|
|
||||||
/* State for other subsystems/APIs: */
|
/* State for other subsystems/APIs: */
|
||||||
MemoryHotplugState hotplug_memory;
|
MemoryHotplugState hotplug_memory;
|
||||||
PcGuestInfo acpi_guest_info;
|
|
||||||
Notifier machine_done;
|
Notifier machine_done;
|
||||||
|
|
||||||
/* Pointers to devices and objects: */
|
/* Pointers to devices and objects: */
|
||||||
|
@ -233,7 +228,7 @@ void pc_cpus_init(PCMachineState *pcms);
|
||||||
void pc_hot_add_cpu(const int64_t id, Error **errp);
|
void pc_hot_add_cpu(const int64_t id, Error **errp);
|
||||||
void pc_acpi_init(const char *default_dsdt);
|
void pc_acpi_init(const char *default_dsdt);
|
||||||
|
|
||||||
PcGuestInfo *pc_guest_info_init(PCMachineState *pcms);
|
void pc_guest_info_init(PCMachineState *pcms);
|
||||||
|
|
||||||
#define PCI_HOST_PROP_PCI_HOLE_START "pci-hole-start"
|
#define PCI_HOST_PROP_PCI_HOLE_START "pci-hole-start"
|
||||||
#define PCI_HOST_PROP_PCI_HOLE_END "pci-hole-end"
|
#define PCI_HOST_PROP_PCI_HOLE_END "pci-hole-end"
|
||||||
|
|
Loading…
Reference in New Issue