mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
a <controller type='pci'...> element can now have a "hotplug"
attribute in the <target> subelement. This is intended to control
whether or not the slot(s) of the controller support
hotplugging/unplugging a device:
<controller type='pci' model='pcie-root-port'>
<target hotplug='off'/>
</controller>
The default value of hotplug is "on".
Since support for configuring such an option is hypervisor-dependent
(and will vary among different types of PCI controllers even on a
single hypervisor), no validation is done in this patch - that
validation will be done in the patch that wires support for the
setting into the hypervisor.
Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
<domain type='qemu'>
|
|
<name>guest</name>
|
|
<uuid>11dbdcdd-4c3b-482b-8903-9bdb8c0a2774</uuid>
|
|
<memory unit='KiB'>2097152</memory>
|
|
<currentMemory unit='KiB'>2097152</currentMemory>
|
|
<vcpu placement='static'>2</vcpu>
|
|
<os>
|
|
<type arch='x86_64' machine='q35'>hvm</type>
|
|
</os>
|
|
<devices>
|
|
<emulator>/usr/bin/qemu-system-x86_64</emulator>
|
|
<controller type='pci' index='0' model='pcie-root'/>
|
|
<controller type='pci' index='1' model='pcie-root-port'/>
|
|
<controller type='pci' index='2' model='pcie-root-port'>
|
|
<target hotplug='off'/>
|
|
</controller>
|
|
<controller type='pci' index='3' model='pcie-root-port'>
|
|
<model name='ioh3420'/>
|
|
<target hotplug='off'/>
|
|
</controller>
|
|
<controller type='pci' index='4' model='pcie-switch-upstream-port'/>
|
|
<controller type='pci' index='5' model='pcie-switch-downstream-port'>
|
|
<target hotplug='off'/>
|
|
</controller>
|
|
<controller type='pci' index='6' model='pcie-switch-downstream-port'>
|
|
<target hotplug='on'/>
|
|
</controller>
|
|
<controller type='pci' index='7' model='pcie-switch-downstream-port'/>
|
|
<controller type='pci' index='8' model='pcie-switch-downstream-port'>
|
|
<model name='xio3130-downstream'/>
|
|
<target chassis='30' port='0x27'/>
|
|
</controller>
|
|
<memballoon model='none'/>
|
|
</devices>
|
|
</domain>
|