]> git.proxmox.com Git - mirror_qemu.git/commit - hw/pc_piix.c
xen: implement unplug protocol in xen_platform
authorStefano Stabellini <stefano.stabellini@eu.citrix.com>
Mon, 18 Jul 2011 06:07:02 +0000 (06:07 +0000)
committerAlexander Graf <agraf@suse.de>
Tue, 26 Jul 2011 05:02:17 +0000 (07:02 +0200)
commit679f4f8b178e7c66fbc2f39c905374ee8663d5d8
treea7d65c3fd79b4c6c75f23736e8c1ac640feecd8d
parent834e76ea1cc3f6fb261fe6a40f7571600bcb25b1
xen: implement unplug protocol in xen_platform

The unplug protocol is necessary to support PV drivers in the guest: the
drivers expect to be able to "unplug" emulated disks and nics before
initializing the Xen PV interfaces.
It is responsibility of the guest to make sure that the unplug is done
before the emulated devices or the PV interface start to be used.

We use pci_for_each_device to walk the PCI bus, identify the devices and
disks that we want to disable and dynamically unplug them.

Changes in v2:

- use PCI_CLASS constants;

- replace pci_unplug_device with qdev_unplug;

- do not import hw/ide/internal.h in xen_platform.c;

Changes in v3:

- introduce piix3-ide-xen, that support hot-unplug;

- move the unplug code to hw/ide/piix.c;

- just call qdev_unplug from xen_platform.c to unplug the IDE disks;

Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Acked-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
hw/ide.h
hw/ide/piix.c
hw/pc_piix.c
hw/xen_platform.c