]> git.proxmox.com Git - mirror_qemu.git/commit
serial: register vmsd with DeviceClass
authorMarc-André Lureau <marcandre.lureau@redhat.com>
Mon, 21 Oct 2019 22:32:41 +0000 (00:32 +0200)
committerMarc-André Lureau <marcandre.lureau@redhat.com>
Tue, 7 Jan 2020 12:50:42 +0000 (16:50 +0400)
commit4cc017e505df7e5344e4dfe7fc17711117c5f11f
tree65b8366ac493b84dd8bddd1b6ceab3eba576acc4
parent7781b88ee458ff933459503ade0b0a6ddaad08de
serial: register vmsd with DeviceClass

Migration from old to new code works, however the other way fails for
devices that use serial_init/serial_mm_init with "base", used as
instance_id previously.

(with qdev_set_legacy_instance_id, the alias_id is only used in
savevm.c:find_se(), and thus can only be used to match against
"legacy" instance id values. On new code, instance_id is generated
incrementally from 0 with calculate_new_instance_id(), based on
"qdev-path/vmsd-name")

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: xiaoqiang zhao <zxq_yx_007@163.com>
hw/char/serial.c