mirror of
https://github.com/qemu/qemu.git
synced 2024-12-13 05:33:34 +08:00
s390x/pci: mark zpci devices as unmigratable
We currently don't migrate any state for zpci devices, which are coupled with standard pci devices. This means funny things happen when we e.g. try to migrate with a virtio-pci device but the s390x- specific zpci state is not migrated (vfio-pci is not affected, as it is not migratable anyway.) Until this is fixed, mark zpci devices as unmigratable. Reported-by: David Hildenbrand <david@redhat.com> Reviewed-by: David Hildenbrand <david@redhat.com> Reviewed-by: Collin Walling <walling@linux.ibm.com> Signed-off-by: Cornelia Huck <cohuck@redhat.com>
This commit is contained in:
parent
9f2a46b111
commit
aede5d5dfc
@ -1253,6 +1253,15 @@ static Property s390_pci_device_properties[] = {
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
static const VMStateDescription s390_pci_device_vmstate = {
|
||||
.name = TYPE_S390_PCI_DEVICE,
|
||||
/*
|
||||
* TODO: add state handling here, so migration works at least with
|
||||
* emulated pci devices on s390x
|
||||
*/
|
||||
.unmigratable = 1,
|
||||
};
|
||||
|
||||
static void s390_pci_device_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||
@ -1263,6 +1272,7 @@ static void s390_pci_device_class_init(ObjectClass *klass, void *data)
|
||||
dc->bus_type = TYPE_S390_PCI_BUS;
|
||||
dc->realize = s390_pci_device_realize;
|
||||
dc->props = s390_pci_device_properties;
|
||||
dc->vmsd = &s390_pci_device_vmstate;
|
||||
}
|
||||
|
||||
static const TypeInfo s390_pci_device_info = {
|
||||
|
Loading…
Reference in New Issue
Block a user