diff options
author | Laszlo Ersek <lersek@redhat.com> | 2015-06-19 04:40:09 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2015-06-23 22:57:47 +0200 |
commit | 0034e56209c1333bfca53356ce82663d801a15c5 (patch) | |
tree | 646e03c170a44d33b6715f65e9ae1cc5a101931c /hw/pci-bridge | |
parent | 9df0b0e09c48ad543e6d12ee0c17d1857f83d3ca (diff) | |
download | qemu-0034e56209c1333bfca53356ce82663d801a15c5.tar.gz qemu-0034e56209c1333bfca53356ce82663d801a15c5.tar.bz2 qemu-0034e56209c1333bfca53356ce82663d801a15c5.zip |
hw/pci-bridge: expose _test parameter in SHPC_VMSTATE()
Change the signature of the function-like macro SHPC_VMSTATE(), so that we
can produce and expect this field conditionally in the migration stream,
starting with an upcoming patch.
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Marcel Apfelbaum <marcel@redhat.com>
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/pci-bridge')
-rw-r--r-- | hw/pci-bridge/pci_bridge_dev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pci-bridge/pci_bridge_dev.c b/hw/pci-bridge/pci_bridge_dev.c index e966d2e9a8..44e2cbaf82 100644 --- a/hw/pci-bridge/pci_bridge_dev.c +++ b/hw/pci-bridge/pci_bridge_dev.c @@ -132,7 +132,7 @@ static const VMStateDescription pci_bridge_dev_vmstate = { .name = "pci_bridge", .fields = (VMStateField[]) { VMSTATE_PCI_DEVICE(parent_obj, PCIBridge), - SHPC_VMSTATE(shpc, PCIDevice), + SHPC_VMSTATE(shpc, PCIDevice, NULL), VMSTATE_END_OF_LIST() } }; |