]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
NEWS: document new bhyve features for 12.3.0 master
authorRoman Bogorodskiy <bogorodskiy@gmail.com>
Sun, 26 Apr 2026 11:20:08 +0000 (13:20 +0200)
committerRoman Bogorodskiy <bogorodskiy@gmail.com>
Mon, 27 Apr 2026 08:53:36 +0000 (10:53 +0200)
Signed-off-by: Roman Bogorodskiy <bogorodskiy@gmail.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
NEWS.rst

index 478cc6e925e0bbdd8dcdb668450ad70c7ec78580..56e344776b1bb7e1547d31f06ca4fc66b54a72b8 100644 (file)
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -17,6 +17,28 @@ v12.3.0 (unreleased)
 
 * **New features**
 
+  * bhyve: Add blkiotune support
+
+    The bhyve driver now supports guest I/O throttling configuration::
+
+     <blkiotune>
+       <device>
+         <path>*</path>
+         <read_iops_sec>20000</read_iops_sec>
+         <write_iops_sec>20000</write_iops_sec>
+         <read_bytes_sec>10000</read_bytes_sec>
+         <write_bytes_sec>10000</write_bytes_sec>
+       </device>
+     </blkiotune>
+
+    It uses the ``rctl(4)`` framework to apply these limits.
+
+  * bhyve: Implement ``virDomainInterfaceAddresses()`` and ``virDomainGetHostname()``
+
+    The bhyve driver now implements APIs allowing to fetch address of
+    VM's interfaces (accessible via ``virsh domifaddr``) and the hostname
+    of the VM (``virsh domhostname``).
+
 * **Improvements**
 
 * **Bug fixes**