diff options
| author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2019-10-21 16:31:31 +0200 |
|---|---|---|
| committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2020-01-07 16:50:09 +0400 |
| commit | 1e419ee68fa545421e3a6d5ea32d04e9a20dfbf2 (patch) | |
| tree | 146036e88b4a3689cf2f7aaf76f872712d0449f4 /util/id.c | |
| parent | a35c6ccc06536e076d5a23c51d67458e3546672c (diff) | |
| download | focaccia-qemu-1e419ee68fa545421e3a6d5ea32d04e9a20dfbf2.tar.gz focaccia-qemu-1e419ee68fa545421e3a6d5ea32d04e9a20dfbf2.zip | |
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 'util/id.c')
| -rw-r--r-- | util/id.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/id.c b/util/id.c index af1c5f1b81..5addb4460e 100644 --- a/util/id.c +++ b/util/id.c @@ -34,6 +34,7 @@ bool id_wellformed(const char *id) static const char *const id_subsys_str[ID_MAX] = { [ID_QDEV] = "qdev", [ID_BLOCK] = "block", + [ID_CHR] = "chr", }; /* |