aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2019-10-21 16:31:31 +0200
committerMarc-André Lureau <marcandre.lureau@redhat.com>2020-01-07 16:50:09 +0400
commit1e419ee68fa545421e3a6d5ea32d04e9a20dfbf2 (patch)
tree146036e88b4a3689cf2f7aaf76f872712d0449f4 /include
parenta35c6ccc06536e076d5a23c51d67458e3546672c (diff)
chardev: generate an internal id when none given
Internally, qemu may create chardev without ID. Those will not be looked up with qemu_chr_find(), which prevents using qdev_prop_set_chr(). Use id_generate(), to generate an internal name (prefixed with #), so no conflict exist with user-named chardev. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: xiaoqiang zhao <zxq_yx_007@163.com>
Diffstat (limited to 'include')
-rw-r--r--include/qemu/id.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/qemu/id.h b/include/qemu/id.h
index 40c70103e4..b55c406e69 100644
--- a/include/qemu/id.h
+++ b/include/qemu/id.h
@@ -4,6 +4,7 @@
typedef enum IdSubSystems {
ID_QDEV,
ID_BLOCK,
+ ID_CHR,
ID_MAX /* last element, used as array size */
} IdSubSystems;