summaryrefslogtreecommitdiffstats
path: root/include/hw
diff options
context:
space:
mode:
authorKevin Wolf2021-10-08 15:34:35 +0200
committerKevin Wolf2021-10-15 16:06:35 +0200
commit163f384752dd9125ce7eb1b2edf00b23f0a54557 (patch)
tree59527155773e38b387748fd2c195618daf25d3ea /include/hw
parentqdev: Avoid using string visitor for properties (diff)
downloadqemu-163f384752dd9125ce7eb1b2edf00b23f0a54557.tar.gz
qemu-163f384752dd9125ce7eb1b2edf00b23f0a54557.tar.xz
qemu-163f384752dd9125ce7eb1b2edf00b23f0a54557.zip
qdev: Make DeviceState.id independent of QemuOpts
DeviceState.id is a pointer to a string that is stored in the QemuOpts object DeviceState.opts and freed together with it. We want to create devices without going through QemuOpts in the future, so make this a separately allocated string. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Message-Id: <20211008133442.141332-9-kwolf@redhat.com> Reviewed-by: Damien Hedde <damien.hedde@greensocs.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Tested-by: Peter Krempa <pkrempa@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'include/hw')
-rw-r--r--include/hw/qdev-core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/qdev-core.h b/include/hw/qdev-core.h
index 4ff19c714b..5a073fc368 100644
--- a/include/hw/qdev-core.h
+++ b/include/hw/qdev-core.h
@@ -176,7 +176,7 @@ struct DeviceState {
Object parent_obj;
/*< public >*/
- const char *id;
+ char *id;
char *canonical_path;
bool realized;
bool pending_deleted_event;