[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 09/17] hw/pci-bridge: expose _test parameter in SHPC_
From: |
Michael S. Tsirkin |
Subject: |
[Qemu-devel] [PULL 09/17] hw/pci-bridge: expose _test parameter in SHPC_VMSTATE() |
Date: |
Fri, 26 Jun 2015 15:46:06 +0200 |
From: Laszlo Ersek <address@hidden>
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 <address@hidden>
Cc: Marcel Apfelbaum <address@hidden>
Signed-off-by: Laszlo Ersek <address@hidden>
Reviewed-by: Michael S. Tsirkin <address@hidden>
Signed-off-by: Michael S. Tsirkin <address@hidden>
---
include/hw/pci/shpc.h | 5 +++--
hw/pci-bridge/pci_bridge_dev.c | 2 +-
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/include/hw/pci/shpc.h b/include/hw/pci/shpc.h
index 9bbea39..14015af 100644
--- a/include/hw/pci/shpc.h
+++ b/include/hw/pci/shpc.h
@@ -51,7 +51,8 @@ void shpc_device_hot_unplug_request_cb(HotplugHandler
*hotplug_dev,
DeviceState *dev, Error **errp);
extern VMStateInfo shpc_vmstate_info;
-#define SHPC_VMSTATE(_field, _type) \
- VMSTATE_BUFFER_UNSAFE_INFO(_field, _type, 0, shpc_vmstate_info, 0)
+#define SHPC_VMSTATE(_field, _type, _test) \
+ VMSTATE_BUFFER_UNSAFE_INFO_TEST(_field, _type, _test, 0, \
+ shpc_vmstate_info, 0)
#endif
diff --git a/hw/pci-bridge/pci_bridge_dev.c b/hw/pci-bridge/pci_bridge_dev.c
index e966d2e..44e2cba 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()
}
};
--
MST
- [Qemu-devel] [PULL 00/17] virtio, pci fixes, enhancements, Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 01/17] virito-pci: fix OVERRUN problem, Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 02/17] qdev: fix OVERFLOW_BEFORE_WIDEN, Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 03/17] balloon: add a feature bit to let Guest OS deflate balloon on oom, Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 04/17] vhost: correctly pass error to caller in vhost_dev_enable_notifiers(), Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 05/17] MAINTAINERS: add ACPI entry, Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 06/17] pc: cleanup and convert TMP ACPI device description to AML API, Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 07/17] add pci-bridge-seat, Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 08/17] migration: introduce VMSTATE_BUFFER_UNSAFE_INFO_TEST(), Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 09/17] hw/pci-bridge: expose _test parameter in SHPC_VMSTATE(),
Michael S. Tsirkin <=
- [Qemu-devel] [PULL 10/17] hw/pci-bridge: add macro for "chassis_nr" property, Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 11/17] hw/pci-bridge: add macro for "msi" property, Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 12/17] hw/pci: introduce shpc_present() helper function, Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 13/17] hw/pci-bridge: introduce "shpc" property, Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 15/17] hw/core: explicit OFW unit address callback for SysBusDeviceClass, Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 14/17] hw/pci-bridge: disable SHPC in PXB, Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 16/17] hw/pci-bridge: format special OFW unit address for PXB host, Michael S. Tsirkin, 2015/06/26
- [Qemu-devel] [PULL 17/17] Fix glib_subprocess test, Michael S. Tsirkin, 2015/06/26