]> git.proxmox.com Git - mirror_qemu.git/commit - hw/pc_piix.c
pc: Fix CMOS info for drives defined with -device
authorMarkus Armbruster <armbru@redhat.com>
Thu, 24 Jun 2010 17:58:20 +0000 (19:58 +0200)
committerKevin Wolf <kwolf@redhat.com>
Fri, 2 Jul 2010 11:18:02 +0000 (13:18 +0200)
commitc0897e0cb94e83ec1098867b81870e4f51f225b9
treee9476e69b210a42620ea84a8b2e24983ce521398
parent57c888664b5eb7edbbce4be98cb1406aa0d85c2b
pc: Fix CMOS info for drives defined with -device

Drives defined with -drive if=ide get get created along with the IDE
controller, inside machine->init().  That's before cmos_init().
Drives defined with -device get created during generic device init.
That's after cmos_init().  Because of that, CMOS has no information on
them (type, geometry, translation).  Older versions of Windows such as
XP reportedly choke on that.

Split off the part of CMOS initialization that needs to know about
-device devices, and turn it into a reset handler, so it runs after
device creation.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
hw/ide.h
hw/ide/qdev.c
hw/pc.c
hw/pc.h
hw/pc_piix.c