summaryrefslogtreecommitdiff
path: root/hw/core
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2017-03-28 11:22:10 +0200
committerJuan Quintela <quintela@redhat.com>2017-04-21 12:25:40 +0200
commit21def24a5a58ad0ea9f7b02c084387e71b11ff1b (patch)
tree3e348c59fc83db9d162cba36de3d2c30f9383027 /hw/core
parent9bed84c19138bd161e9a6157a93ae0b25b5f7a71 (diff)
downloadqemu-21def24a5a58ad0ea9f7b02c084387e71b11ff1b.zip
qdev: Export qdev_hot_removed
I need to move qdev_unplug to qdev-monitor in the following patch, and it needs access to this variable. Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: zhanghailiang <zhang.zhanghailiang@huawei.com>
Diffstat (limited to 'hw/core')
-rw-r--r--hw/core/qdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/core/qdev.c b/hw/core/qdev.c
index 6fa46b5245..c26cf84cd3 100644
--- a/hw/core/qdev.c
+++ b/hw/core/qdev.c
@@ -41,7 +41,7 @@
bool qdev_hotplug = false;
static bool qdev_hot_added = false;
-static bool qdev_hot_removed = false;
+bool qdev_hot_removed = false;
const VMStateDescription *qdev_get_vmsd(DeviceState *dev)
{