summaryrefslogtreecommitdiffstats
path: root/include/hw/acpi
diff options
context:
space:
mode:
authorPaolo Bonzini2020-10-07 18:23:56 +0200
committerPaolo Bonzini2020-10-12 17:50:22 +0200
commit22fb6eb571387172f41878866f4438b6bae21f0e (patch)
tree759479e8e9fd997d2a7791caf0e6278ff4cce91a /include/hw/acpi
parentexec: split out non-softmmu-specific parts (diff)
downloadqemu-22fb6eb571387172f41878866f4438b6bae21f0e.tar.gz
qemu-22fb6eb571387172f41878866f4438b6bae21f0e.tar.xz
qemu-22fb6eb571387172f41878866f4438b6bae21f0e.zip
qom: fix objects with improper parent type
Some objects accidentally inherit ObjectClass instead of Object. They compile silently but may crash after downcasting. In this patch, we introduce a coccinelle script to find broken declarations and fix them manually with proper base type. Signed-off-by: Sergey Nizovtsev <snizovtsev@gmail.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/hw/acpi')
-rw-r--r--include/hw/acpi/vmgenid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/acpi/vmgenid.h b/include/hw/acpi/vmgenid.h
index d50fbacb8e..cb4ad37fc5 100644
--- a/include/hw/acpi/vmgenid.h
+++ b/include/hw/acpi/vmgenid.h
@@ -19,7 +19,7 @@
OBJECT_DECLARE_SIMPLE_TYPE(VmGenIdState, VMGENID)
struct VmGenIdState {
- DeviceClass parent_obj;
+ DeviceState parent_obj;
QemuUUID guid; /* The 128-bit GUID seen by the guest */
uint8_t vmgenid_addr_le[8]; /* Address of the GUID (little-endian) */
};