diff options
| author | Gerd Hoffmann <kraxel@redhat.com> | 2009-09-25 21:42:49 +0200 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-05 09:32:49 -0500 |
| commit | ef80b466230021da9fe490175cd542a58dcabe94 (patch) | |
| tree | 1a17d701f6a3734339af97830f4a7e2b196f096e /hw/qdev.h | |
| parent | 7101174e5cd37ed57fadbba9515f2f3e15aec47d (diff) | |
| download | focaccia-qemu-ef80b466230021da9fe490175cd542a58dcabe94.tar.gz focaccia-qemu-ef80b466230021da9fe490175cd542a58dcabe94.zip | |
store a pointer to QemuOpts in DeviceState, release it when zapping a device.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/qdev.h')
| -rw-r--r-- | hw/qdev.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/qdev.h b/hw/qdev.h index ca7c21a3bd..7da78378bf 100644 --- a/hw/qdev.h +++ b/hw/qdev.h @@ -29,6 +29,7 @@ enum DevState { struct DeviceState { const char *id; enum DevState state; + QemuOpts *opts; int hotplugged; DeviceInfo *info; BusState *parent_bus; |