]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
NEWS: document new hotplug enable/disable option on pci-root controller
authorAni Sinha <ani@anisinha.ca>
Fri, 1 Oct 2021 09:29:48 +0000 (14:59 +0530)
committerLaine Stump <laine@redhat.com>
Fri, 1 Oct 2021 21:18:25 +0000 (17:18 -0400)
A new 'target' subelement of the pci-root controller has been
introduced having a 'hotplug' property. This property can be used to
turn off or turn on the ability to hotplug/unplug devices to the slots
of the pci-root.

The new element can be used like this:

<controller type='pci' model='pci-root'>
   <target hotplug='off'/>
</controller>

This will turn off hotplug capability on the pci-root ports. To turn
the capability on, we set hotplug='on' above (which is also the
default).

Signed-off-by: Ani Sinha <ani@anisinha.ca>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Laine Stump <laine@redhat.com>
NEWS.rst

index 068a90d3832913fd16e76cc77306a8d7d2eea8be..76d2375e97a33ace7329f8042036b905d32c6f1f 100644 (file)
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -24,6 +24,14 @@ v7.9.0 (unreleased)
     ``virDomainUpdateDeviceFlags()`` API to adjust amount of memory or ``virsh
     update-memory-device`` for convenience.
 
+  * qemu: support disabling hotplug of devices on the pci-root controller
+
+    the <target hotplug='on|off'/> option is now supported for the
+    pci-root controller on i440fx-based (x86 "pc") machinetypes. This
+    can be used to disable hotplug/unplug of devices from this
+    controller. The default behavior is unchanged (hotplug is
+    allowed).
+
 * **Improvements**
 
 * **Bug fixes**