Sophie

Sophie

distrib > Mageia > 6 > x86_64 > by-pkgid > 13f578376e4e807e78e7ef322e364e58 > files > 191

libvirt-docs-3.10.0-1.5.mga6.x86_64.rpm

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
  <!--
        This file is autogenerated from news.html.in
        Do not edit this file. Changes will be lost.
      -->
  <!--
        This page was generated at Mon Dec  4 17:10:14 UTC 2017.
      -->
  <head>
    <meta charset="UTF-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1"/>
    <link rel="stylesheet" type="text/css" href="main.css"/>
    <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/>
    <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/>
    <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/>
    <link rel="manifest" href="/manifest.json"/>
    <meta name="theme-color" content="#ffffff"/>
    <title>libvirt: Releases</title>
    <meta name="description" content="libvirt, virtualization, virtualization API"/>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <script type="text/javascript">
      <!--
          
      function init() {
      window.addEventListener('scroll', function(e){
              var distanceY = window.pageYOffset || document.documentElement.scrollTop,
              shrinkOn = 94
              home = document.getElementById("home");
              links = document.getElementById("jumplinks");
              search = document.getElementById("search");
              body = document.getElementById("body");
              if (distanceY > shrinkOn) {
                  if (home.className != "navhide") {
                      body.className = "navhide"
                      home.className = "navhide"
                      links.className = "navhide"
                      search.className = "navhide"
                  }
              } else {
                  if (home.className == "navhide") {
                      body.className = ""
                      home.className = ""
                      links.className = ""
                      search.className = ""
                  }
              }
      });
      }
      window.onload = init();
           
          -->
    </script>
  </head>
  <body>
    <div id="body">
      <div id="content">
        <h1>Releases</h1>
        <p>This is the list of official releases for libvirt, along with an
        overview of the changes introduced by each of them.</p>
        <p>For a more fine-grained view, use the
        <a href="https://libvirt.org/git/?p=libvirt.git;a=log">git log</a>.
        </p>
        <h3>
          <strong>v3.10.0 (2017-12-04)</strong>
        </h3>
        <ul>
          <li>
            <strong>New features</strong>
            <ul>
              <li>
          conf: Support defining distances between virtual NUMA cells
        <br/>
          A NUMA hardware architecture supports the notion of distances
          between NUMA cells. This can now be specified using the
          <code>&lt;distances&gt;</code> element within the NUMA cell
          configuration. Drivers which support this include Xen and QEMU.
        </li>
              <li>
          Xen: Support defining vNUMA topology
        <br/>
          Xen now supports defining a virtual NUMA topology for VMs,
          including specifying distances between NUMA cells.
        </li>
              <li>
          qemu: Add the ability to configure HPT resizing for pSeries guests
        <br/>
          The user can now decide whether HPT (Hash Page Table) resizing
          should be enabled, disabled or required instead of leaving it up to
          hypervisor defaults and negotiation between the guest and the host.
        </li>
              <li>
          qemu: Add vmcoreinfo feature
        <br/>
          Starting with QEMU 2.11, the guest can save kernel debug
          details when this feature is enabled and the kernel supports
          it. It is useful to process kernel dump with KASLR enabled,
          and also provides various kernel details to crash tools.
        </li>
              <li>
          conf: Move the auth and encryption definitions to disk source
        <br/>
          Allow parsing and formatting of the <code>auth</code> and
          <code>encryption</code> sub-elements to be a child of the
          <code>source</code> element. This will allow adding an
          <code>auth</code> sub-element to a <code>backingStore</code>
          or <code>mirror</code> elements as a means to track specific
          authentication and/or encryption needs.
        </li>
            </ul>
          </li>
          <li>
            <strong>Improvements</strong>
            <ul>
              <li>
          vbox: Add VirtualBox 5.2 support
        </li>
              <li>
          vbox: Add support for configuring storage controllers
        <br/>
          The VirtualBox driver now supports the <code>&lt;controller&gt;</code>
          element in the domain XML for configuring storage controllers in VBOX
          VMs.  Additionally, libvirt's domain XML schema was updated to allow
          optional <code>model</code> attribute for <code>&lt;controller
              type='ide'&gt;</code> which is used by the VBOX driver to set the
          IDE controller model to be one of 'piix4', 'piix4' (default), or
          'ich6'.  Finally, with this change <code>dumpxml</code> generates
          <code>&lt;controller&gt;</code> elements that correspond to current
          VBOX VM storage controller configuration.
        </li>
              <li>
          vbox: Add support for attaching empty removable disks
        <br/>
          The VirutalBox driver now supports adding CD-ROM and floppy disk
          devices that do not have the disk source specified. Previously such
          devices were silently ignored.
        </li>
              <li>
          vbox: Add support for attaching SAS storage controllers
        <br/>
          In VirtualBox, SCSI and SAS are distinct controller types whereas
          libvirt does not make such distinction. Therefore, the VBOX driver was
          updated to allow attaching SAS controllers via <code>&lt;controller
              type='scsi' model='lsisas1068'&gt;</code> element. If there are
          both SCSI and SAS controllers present in the VBOX VM, the domain XML
          can associate the disk device using the <code>&lt;address&gt;</code>
          element with the <code>controller</code> attribute, and optionally,
          set the port via <code>unit</code> attribute.
        </li>
              <li>
          qemu: Generate predictable paths for qemu memory backends
        <br/>
          In some cases management applications need to know
          paths passed to memory-backend-file objects upfront.
          Libvirt now generates predictable paths so applications
          can prepare the files if they need to do so.
        </li>
              <li>
          Shareable disks work properly with recent qemu
        <br/>
          Recent qemu versions added image locking to avoid potential corruption
          of disk images. This broke shareable disks with libvirt since the
          feature was turned on by default in qemu. Libvirt now enables sharing
          of those disks in qemu so that the image locking is not applied in
          that case. Additionally libvirt now checks that shareable disks have
          supported format (raw) to avoid metadata corruption.
        </li>
              <li>
          Improve serial console behavior on non-x86 architectures
        <br/>
          ppc64, aarch64 and s390x guests were treating the &lt;serial&gt;
          and &lt;console&gt; elements differently from x86, in some cases
          presenting misleading information to the user. The behavior is now
          consistent across all architectures and the information reported
          is always accurate.
        </li>
            </ul>
          </li>
          <li>
            <strong>Bug fixes</strong>
            <ul>
              <li>
          vbox: Do not ignore failures to attach disk devices when defining
        <br/>
          The <code>define</code> now fails and reports an error if any of the
          <code>controller</code> or <code>disk</code> devices specified in the
          domain XML fail to attach to the VirtualBox VM.
        </li>
              <li>
          vbox: Fix dumpxml to always output disk devices
        <br/>
          The VirtualBox driver was ignoring any disk devices in
          <code>dumpxml</code> output if there was a SAS storage controller
          attached to the VM.
        </li>
              <li>
          vbox: Fix dumpxml to always generate valid domain XML
        <br/>
          When a VirtualBox VM has multiple disks attached, each to a different
          storage controller that uses 'sd' prefix for block device names e.g.
          one disk attached to SATA and one to SCSI controller, it no longer
          generates XML where both would have 'sda' device name assigned.
          Instead it properly assigns 'sda' and 'sdb' to those disks in the
          order of appearance.
        </li>
              <li>
          Securely pass iSCSI authentication data
        <br/>
          Rather than supplying the authentication data as part of the
          iSCSI URL for a disk or host device, utilize the encrypted
          secret object to securely pass the authentication data.
        </li>
            </ul>
          </li>
        </ul>
        <h3>
          <strong>v3.9.0 (2017-11-02)</strong>
        </h3>
        <ul>
          <li>
            <strong>New features</strong>
            <ul>
              <li>
          Add capability to allow hot (un)plug of a domain watchdog device
        </li>
              <li>
          Allow users to set device aliases
        <br/>
          Users can set aliases to domain devices and thus identify them
          easily.
        </li>
              <li>
          qemu: Support multiqueue for virtio-blk
        <br/>
          Multiqueue support for <code>virtio-blk</code> has been available
          in QEMU ever since 2.7.0, and now libvirt guests can enable it.
        </li>
              <li>
          Add virDomainSetLifecycleAction API
        <br/>
          Provided a new API to allow dynamic guest lifecycle control for
          guest reactions to poweroff, restart, or crash type events related
          to the domain XML <code>on_poweroff</code>, <code>on_reboot</code>,
          and <code>on_crash</code> elements. The
          <code>virsh set-lifecycle-action</code> command was created to
          control the actions.
        </li>
              <li>
          qemu: Allow cold(un)plugging and hot(un)plugging input devices
        </li>
              <li>
          net: Implement QoS for vhostuser
        </li>
            </ul>
          </li>
          <li>
            <strong>Improvements</strong>
            <ul>
              <li>
          Allow a logical volume to be create using LUKS
        <br/>
          A logical volume may be created using an <code>encryption</code>
          element using "luks" format. This does require a previously created
          <code>secret</code> to store the passphrase used to encrypt the
          volume Adding the volume to a domain can then either provide the
          secret or allow the consumer in the guest to provide the passphrase
          in order to decrypt the volume.
        </li>
              <li>
          net: Ignore auto-generated MAC address when detaching an interface
        <br/>
          If the MAC address has not been specified by the user, libvirt will
          try and fill in the gaps by generating one; however, for some error
          paths that led to some confusing error messages, so when an
          auto-generated MAC address is specified the error message will not
          include the auto-generated MAC.
        </li>
              <li>
          net: Enable MAC address lookup for virDomainInterfaceStats
        </li>
              <li>
          apparmor: Several improvements
        <br/>
          Changes include permitting access to data about USB devices and
          <code>dnsmasq</code> instances, allowing spaces in guest names and
          many more.
        </li>
              <li>
          cpu: Use CPU information obtained from QEMU when possible
        <br/>
          Recent QEMU versions can expose information about which CPU models
          are available and usable on the host; libvirt will now make use of
          such information whenever possible.
        </li>
              <li>
          hyperv: Various improvements
        <br/>
          The error reported when clients can't connect to Hyper-V has been
          made more descriptive, and memory limits for guests are now mapped
          to more appropriate libvirt equivalents.
        </li>
              <li>
          qemu: Report QEMU error on failed migration
        <br/>
          Instead of reporting a generic error, ask QEMU for a more detailed
          and thus hopefully more helpful one.
        </li>
              <li>
          vbox: Implement autoport for RDP
        <br/>
          libvirt will now obtain the (dynamically allocated) RDP port number
          from VirtualBox itself, avoiding conflicts between multiple guests
          wanting to use RDP at the same time.
        </li>
              <li>
          qemu: Allow rotation of small logs
        <br/>
          On a host where numerous unique instances are executed per day, it's
          quite possible that, even though each of the single log files are
          fairly small, collectively the quantity and volume may add tens of
          thousands of log files to the <code>/var/log/libvirt/qemu/</code>
          directory. Removing the constraints that log have to be bigger than
          100 KiB before they can be rotated solves the issue.
        </li>
            </ul>
          </li>
          <li>
            <strong>Bug fixes</strong>
            <ul>
              <li>
          Fix swapped interface statistics and QoS
        <br/>
          Due to internal implementation, reported statistics for
          some types of interfaces were swapped (RX appeared in
          TX and vice versa). Similarly, QoS was set in reversed
          way.
        </li>
              <li>
          Properly resize local LUKS encrypted volume
        <br/>
          Resizing of a local LUKS encrypted volume will now use qemu-img
          to resize the volume. This will require configuring a secret for
          the LUKS encrypted volume.
        </li>
              <li>
          qemu: Reserve PCI addresses for implicit i440fx devices
        <br/>
          Failing to do so causes the addresses to be considered usable by
          libvirt, which means they could be assigned to more than one device
          resulting in the guest failing to start.
        </li>
              <li>
          spec: Restart libvirtd only at the end of the upgrade process
        <br/>
          Use <code>%posttrans</code> to make sure <code>libvirtd</code>
          is not restarted before all other components, such as the library
          itself and storage / hypervisor drivers, have already been upgraded.
        </li>
            </ul>
          </li>
          <li>
            <strong>Security</strong>
            <ul>
              <li>
          qemu: Ensure TLS clients always verify the server certificate
        <br/>
          While it's reasonable to turn off client certificate validation,
          as setting it up can be non-trivial, clients should always verify
          the server certificate to avoid MITM attacks. However, libvirt was
          using the same knob to control both checks, leading to
          CVE-2017-1000256 / LSN-2017-0002.
        </li>
            </ul>
          </li>
        </ul>
        <h3>
          <strong>v3.8.0 (2017-10-04)</strong>
        </h3>
        <ul>
          <li>
            <strong>New features</strong>
            <ul>
              <li>
          qemu: Added support for cold-(un)plug of watchdog devices
        </li>
              <li>
          qemu: Added support for setting IP address os usernet interfaces
        </li>
              <li>
          qemu: Added support for Veritas Hyperscale (VxHS) block devices
        </li>
              <li>
          storage: Added new events for pool-build and pool-delete
        </li>
            </ul>
          </li>
          <li>
            <strong>Improvements</strong>
            <ul>
              <li>
          qemu: Set DAC permissions properly for spice rendernode
        <br/>
          When a <code>rendernode</code> path is set for SPICE GL on
          <code>qemu:///system</code>, we now correctly set DAC permissions
          on the device at VM startup. This is the last remaining hurdle to
          let SPICE GL work for <code>qemu:///system</code> without any
          external host changes.
        </li>
              <li>
          nodedev: Add switchdev offload query to NIC capabilities
        <br/>
            Allow querying the NIC interface capabilities for the
            availability of switchdev offloading (also known as
            kernel-forward-plane-offload).
        </li>
              <li>
          New CPU models for AMD and Intel
        <br/>
          AMD EPYC and Intel Skylake-Server CPU models were added together with
          their features
        </li>
              <li>
          Improve long waiting when saving a domain
        <br/>
          While waiting for a write to disk to be finished, e.g. during save,
          even simple operations like <code>virsh list</code> would be blocking
          due to domain lock. This is now resolved by unlocking the domain
          in places where it is not needed.
        </li>
            </ul>
          </li>
          <li>
            <strong>Bug fixes</strong>
            <ul>
              <li>
          Proper units are now used in virsh manpage for dom(mem)stats
        <br/>
          Previously the documentation used multiples of 1000, but now it is
          fixed to use multiples of 1024.
        </li>
              <li>
          qemu: Fix error reporting when disk attachment fails
        <br/>
          There was a possibility for the actual error to be overridden or
          cleared during the rollback.
        </li>
              <li>
          qemu: Fix assignment of graphics ports after daemon restart
        <br/>
          This could be seen with newer kernels that have bug regarding
          SO_REUSEADDR. After libvirtd was restarted it could assign already
          used address to new guests which would make them fail to start. This
          is fixed by marking used ports unavailable when reconnecting to
          running QEMU domains.
        </li>
              <li>
          Fix message decoding which was causing a very strange bug
        <br/>
          When parsing an RPC message with file descriptors was interrupted and
          had to restart, the offset of the payload was calculated badly causing
          strange issues like not being able to find a domain that was not
          requested.
        </li>
            </ul>
          </li>
        </ul>
        <h3>
          <strong>v3.7.0 (2017-09-04)</strong>
        </h3>
        <ul>
          <li>
            <strong>New features</strong>
            <ul>
              <li>
          qemu: Add managedsave-edit commands
        <br/>
          Using managedsave-dumpxml, managedsave-define and managedsave-edit
          commands, now we can dump and edit the XML configuration of domain
          which has managedsave image.
        </li>
              <li>
          qemu: Add migrate-getmaxdowntime command
        <br/>
          Currently, the maximum tolerable downtime for a domain being migrated
          is write-only from libvirt, via migrate-setmaxdowntime. This
          implements a complementary migrate-getmaxdowntime command
        </li>
              <li>
          bhyve: Support autoport for VNC ports
        <br/>
          It's no longer necessary to explicitly specify VNC port for the bhyve
          guests. With the autoport feature it will be allocated automatically.
          Please refer to the bhyve driver documentation for examples.
        </li>
              <li>
          qemu: Added support for setting heads of virtio GPU
        </li>
              <li>
          qemu: Added support to configure reconnect timeout for chardev devices
        <br/>
          When you have a TCP or UNIX chardev device and it's connected somewhere
          you can configure reconnect timeout if the connection is closed.
        </li>
            </ul>
          </li>
          <li>
            <strong>Improvements</strong>
            <ul>
              <li>
          qemu: Report a clear error when dropping a VM during startup
        <br/>
          "Failed to load config for domain 'DOMNAME'" is now reported if a VM
          config can't be parsed for some reason, and thus provides a clear
          indication for users (and devs).
        </li>
              <li>
          apparmor: Update for QEMU 2.10 compatibility
        <br/>
          Starting with QEMU 2.10, disk images and NVRAM files get
          automatically locked to prevent them from being corrupted; however,
          file locking needs to be explicitly allowed through
          <code>virt-aa-helper</code> or AppArmor will reject the requests and
          the guest will not be able to run.
        </li>
              <li>
          virsh: List Unix sockets in 'domdisplay' output
        <br/>
          VNC and SPICE graphics can use Unix sockets instead of TCP/IP sockets
          as connection endpoints, but such a configuration was not handled
          correctly by <code>virsh domdisplay</code>, causing the respective
          endpoints to be missing from the output.
        </li>
              <li>
          qemu: Don't check whether offline migration is safe
        <br/>
          Since offline migration only copies the guest definition to the
          destination host, data corruption is not a concern and the operation
          can always be performed safely.
        </li>
              <li>
          virt-host-validate: Fix IOMMU detection on ppc64
        </li>
            </ul>
          </li>
          <li>
            <strong>Bug fixes</strong>
            <ul>
              <li>
          qemu: Better support for international domain names (with wide characters)
        <br/>
          There were some issues with multi-byte domains getting lost
          on daemon restart due to truncation, so the code now handles
          multi-byte names a bit better.
        </li>
              <li>
          qemu: Support long domain names with namespaces
        <br/>
          Domains with extremely long names would fail to start due to
          temporary namespace paths being created with the whole name.
          The path is now generated with shortened name instead.
        </li>
              <li>
          qemu: Tolerate missing emulator binary during libvirtd restart
        <br/>
          For some time libvirt required qemu capabilities being present when
          parsing VM configs during startup. As a side effect VM configs would
          fail to parse and thus vanish, if the emulator binary would be
          uninstalled or broken. Libvirt now tolerates when capabilities
          are missing during startup.
        </li>
              <li>
          qemu: Prevent pSeries guests from disappearing in some situations
        <br/>
          pSeries guest would disappear if any of the host devices they were
          configured to use was not available during libvirtd startup, which
          could easily happen for SR-IOV Virtual Functions. This scenario is
          now handled correctly.
        </li>
              <li>
          qemu: Honor &lt;on_reboot/&gt; setting
        <br/>
          The setting was accepted by the parser, but not actually implemented.
        </li>
              <li>
          Fix --verbose option for all daemons
        <br/>
          Since v3.0.0, the option had been ignored by all libvirt daemons
          (<code>libvirtd</code>, <code>virtlogd</code> and
          <code>virtlockd</code>); it's now working as intended once again.
        </li>
            </ul>
          </li>
        </ul>
        <h3>
          <strong>v3.6.0 (2017-08-02)</strong>
        </h3>
        <ul>
          <li>
            <strong>New features</strong>
            <ul>
              <li>
          hyperv: Implement virDomainSetMemory and virDomainSendKey APIs
        </li>
              <li>
          qemu: Support multiple PHBs for pSeries guests
        <br/>
          pSeries guests can now have multiple PHBs (PCI Host Bridges), which
          show up as separate PCI domains in the guest. To create additional
          PHBs, simply add PCI controllers with model <code>pci-root</code>
          to the guest configuration.
        </li>
              <li>
          qemu: Isolate hostdevs on pSeries guests
        <br/>
          To enable better error reporting and recovery, unrelated hostdevs
          will now be automatically isolated on pSeries guests by placing them
          on separate PHBs (PCI Host Bridges).
        </li>
            </ul>
          </li>
          <li>
            <strong>Improvements</strong>
            <ul>
              <li>
          qemu: platform serial devices can now use chardev features
        <br/>
          QEMU VMs that depend on platform serial devices can now use
          QEMU's <code>-chardev</code> option, which enables access to
          advanced features like log file configuration. This applies
          to the default serial devices for arm, aarch64, and some ppc
          configurations.
        </li>
              <li>
          Require use of GCC 4.4 or Clang compilers
        <br/>
          We only ever test libvirt with GCC or Clang (which
          provides a GCC compatible compilation environment).
          Between them, these compilers cover every supported
          operating system platform, including Windows.
        </li>
              <li>
          qemu: shared disks with directsync cache should be safe for migration
        <br/>
          At present shared disks can be migrated with either readonly or
          <code>cache=none</code>. But <code>cache=directsync</code> should be
          safe for migration, because both <code>cache=directsync</code> and
          <code>cache=none</code> don't use the host page cache, and
          <code>cache=direct</code> write through qemu block layer cache.
        </li>
              <li>
          Handle hotplug change on VLAN configuration using OVS
        <br/>
          Libvirt was taught to handle VLAN change for running OVS interface.
        </li>
            </ul>
          </li>
          <li>
            <strong>Bug fixes</strong>
            <ul>
              <li>
          qemu: Use vCPU 'node-id' property and pass it back to qemu
        <br/>
          vCPU properties gathered from query-hotpluggable-cpus need to be
          passed back to QEMU. As QEMU did not use the node-id property until
          now and libvirt forgot to pass it back properly (it was parsed but
          not passed around) we did not honor this.
        </li>
              <li>
          Miscellaneous stream fixes
        <br/>
          After introducing sparse stream features there were still some known
          bugs left. Those are fixed in this release.
        </li>
              <li>
          qemu: Miscellaneous domain NS fixes
        <br/>
          Libvirt starts qemu domains in separate Linux namespaces for a while
          now. However, there were still some bugs lingering. For instance
          libvirt did not know how to handle file based bind mounts.
        </li>
              <li>
          Various CPU driver improvements
        <br/>
          There were some minor bugs when using 'host-model' CPU.
        </li>
            </ul>
          </li>
        </ul>
        <h3>
          <strong>v3.5.0 (2017-07-04)</strong>
        </h3>
        <ul>
          <li>
            <strong>New features</strong>
            <ul>
              <li>
          qemu: Add support for loadparm for a boot device
        <br/>
          Add an optional boot parameter 'loadparm' for a boot device.
          Loadparm is an 8 byte parameter that, when present, is queried by
          S390 guests via sclp or diag 308. Linux guests on S390 use it to
          select a boot entry.
        </li>
              <li>
          Support controlling how video devices are exposed to the bhyve guests
        <br/>
          The <code>vgaconf</code> attribute was added to <code>video</code>'s
          <code>driver</code> element. Possible values are: <code>on</code>,
          <code>off</code>, and <code>io</code>. It controlls the way how
          bhyve exposes video devices to its guests; various guest OSes might
          require different settings to boot properly.
        </li>
              <li>
          qemu: Add support for live updates of coalesce settings
        <br/>
          Users can now use <code>virsh update-device</code> to change
          the coalesce settings of an interfaces while the domain is
          running.
        </li>
              <li>
          qemu: Allow VirtIO devices to use vIOMMU
        <br/>
          It is now possible to turn on IOTBL for the vIOMMU and have VirtIO
          devices use it, provided they have been configured appropriately.
        </li>
            </ul>
          </li>
          <li>
            <strong>Improvements</strong>
            <ul>
              <li>
          qemu: block copy job can be used with persistent domains
        <br/>
          Until now it was not possible to use block copy with persistent VMs.
          In use cases where it's not required to recover the job after VM
          shutdown, it's possible to specify VIR_DOMAIN_BLOCK_COPY_TRANSIENT_JOB
          flag to start the copy job.
        </li>
              <li>
          JSON pseudo-protocol backing store parser supports new format of qemu 2.9
        <br/>
          QEMU 2.9 modified a few structures corresponding to the JSON format
          of specifying a backing store for a disk image. Libvirt now implements
          the new format.
        </li>
              <li>
          Capabilities now include info about host's CAT settings
        <br/>
          Various information about resource control from the host is
          gathered and presented in capabilities if available.
        </li>
              <li>
          apparmor: Several improvements
        <br/>
          Allow access to Ceph config, EFI firmware on both x86_64 and
          aarch64, device tree on ppc64 and more.
        </li>
              <li>
          qemu: Support host-model on POWER9 machines
        </li>
            </ul>
          </li>
          <li>
            <strong>Bug fixes</strong>
            <ul>
              <li>
          qemu: snapshot: retrieve image metadata from user provided files
        <br/>
          Disk images of an external snapshot created with
          VIR_DOMAIN_SNAPSHOT_CREATE_REUSE_EXT flag specified would not be
          scanned for metadata after recent changes.

          The metadata is necessary to allow keeping relative paths between
          images when doing a block-commit.
        </li>
              <li>
          Parse decimal numbers in a locale-independent way
        <br/>
          Some locales, such as <code>de_DE</code> and <code>pt_BR</code>,
          use comma rather than dot to separate the integer part from the
          fractional part of a decimal number; however, several data sources
          such as the kernel use a locale-independent representation and need
          to be treated accordingly.
        </li>
              <li>
          Support compilation with newer compiler and libc versions
        <br/>
          Several fixes have been included to make compilation with Clang
          4.0.0, GCC 7.1 and glibc &gt;= 2.25.90 possible.
        </li>
              <li>
          qemu: Query name for vhost-user interfaces at runtime
        <br/>
          This makes it possible to use <code>virsh</code> subcommands such
          as <code>domiflist</code> and <code>domifstat</code> on vhost-user
          interfaces.
        </li>
              <li>
          qemu: Set MTU for hotplugged interfaces correctly
        <br/>
          When hotplugging a network interface, the MTU was only set on the
          guest side. Set it on the host side as well.
        </li>
              <li>
          qemu: Forbid updating MTU for interfaces of running guests
        <br/>
          The MTU setting can't be modified while the guest is running, so any
          attempt to alter it at runtime will now result in an error rather
          than being silently ignored.
        </li>
              <li>
          qemu: Fix specifying QXL heads with older QEMU releases
        <br/>
          Specifying the number of QXL heads was not working correctly for
          QEMU releases older than 1.6.
        </li>
              <li>
          qemu: Fix migration to older libvirt/QEMU versions
        <br/>
          When the guest is started, libvirt updates the CPU definition to
          reflect the actual CPU features to enforce ABI. We need to send
          original and updated CPU definition in order to support migration
          to older libvirt/QEMU versions. Only the updated CPU definition
          was sent to destination.
        </li>
            </ul>
          </li>
        </ul>
        <h3>
          <strong>v3.4.0 (2017-06-02)</strong>
        </h3>
        <ul>
          <li>
            <strong>New features</strong>
            <ul>
              <li>
          Improved streams to efficiently transfer sparseness
        <br/>
          New extension to virStream was implemented so that
          virStorageVolDownload and virStorageVolUpload can preserve file
          sparseness.
        </li>
              <li>
          I/O APIC type can be specified for QEMU/KVM domains
        <br/>
          The <code>ioapic</code> tag was added to domain
          <code>features</code>, so the type of the I/O APIC can now
          be specified (e.g. putting it in userspace for KVM domains).
        </li>
              <li>
          The reason for VM shutdown is reported, if known
        <br/>
          QEMU 2.10 will be able to report the reason for shutting
          down (whether that was caused by the guest or not), and
          libvirt is prepared for that and reports that information in
          its shutdown event as well, if it is known.
        </li>
            </ul>
          </li>
          <li>
            <strong>Improvements</strong>
            <ul>
              <li>
          Repository now has new README.md file
        <br/>
          The new file uses markdown syntax, so it looks better on
          github and possibly other web pages, but it has also more
          useful information. The old README is now symlink to the
          new file.
        </li>
              <li>
          qemu: Use GICv2 by default for aarch64/virt TCG guests
        <br/>
          The emulated GICv3 has some limitations that make it unusable as a
          default; use GICv2 until they're sorted out. This change makes it
          once again possible to run aarch64/virt guests on a x86_64 host
          without having to tweak their configuration.
        </li>
              <li>
          Additional capabilities for the node_device module
        <br/>
          Introduce two new capabilities to the node_device module. The first
          is for CCW devices, most common on the S390 architecture. The second
          is for fibre channel-backed SCSI devices and exposes the
          fc_remote_port sub-capability to SCSI target devices.
        </li>
              <li>
          Node devices now report Mediated device capabilities
        <br/>
          Endpoint devices support new <code>mdev</code> capability
          and their parents now report the supported types in new
          <code>mdev_types</code> capability.
        </li>
              <li>
          Capabilities now report information about host caches
        <br/>
          If supported in the kernel, host capabilities will now list
          L3 caches. The code for other levels was added as well, but
          only L3 caches are reported currently.
        </li>
              <li>
          POWER9 CPU model was added
        <br/>
          It is now properly reported in host capabilities.
        </li>
              <li>
          libxl: NUMA sibling distances are now reported in host capabilities
        </li>
              <li>
          VMDK version 3 files are now properly detected
        </li>
              <li>
          Interrupt remapping and Extended interrupt mode for IOMMU devices
        <br/>
          These two new features can now be controlled with new
          <code>&lt;driver intremap='on/off' eim='on/off'/&gt;</code>
          tag for <code>iommu</code> devices.
        </li>
              <li>
          Graphics in libxl domains now have default addresses
        <br/>
          Even though there were default addresses before this change,
          they were not saved in the XML. It is now possible to see
          and control the listen addresses properly.
        </li>
              <li>
          Default USB controllers are now added for devices in libxl domains
        <br/>
          Even though they were added automatically when USB device
          was attached, they could've been missing in some other
          cases. The logic is now fixed so there are always USB
          controllers, even if there was none of them in the specified
          XML.
        </li>
              <li>
          Limits for RPC messages were increased
        <br/>
          Hitting the RPC limits we have is easier every day, so they
          were increased once again and some guessing logic was
          improved as well. It is now possible to get more stats than
          ever using the <code>virConnectGetAllDomainStats()</code>
          call and push through even bigger requests and replies for
          all APIs.
        </li>
            </ul>
          </li>
          <li>
            <strong>Bug fixes</strong>
            <ul>
              <li>
          qemu: Create memory_backing_dir on startup
        <br/>
          Libvirt's policy is that directories are created on startup if
          they don't exist. We've missed this one.
        </li>
              <li>
          PCIe 4.0 cards now report proper link speeds
        <br/>
          It could happen that the link speed for PCIe devices was not
          properly reported or the nodedev-dumpxml just failed. That
          was due to mistake in the field width, but should now work
          properly.
        </li>
              <li>
          qemu: Do not report errors on shutdown
        <br/>
          For some users, in some rare cases, it could happen that
          there was an error message "internal error: End of file from
          qemu monitor" in the logs even though no problem happened.
          The detection of these false positives was improved and such
          errors should not show any more.
        </li>
              <li>
          User-specified UNIX socket paths for virtio channels should not be reset
        <br/>
          It could happen, in some cases, that libvirt would mistake a
          user-specified path for its own generated one and thus
          remove it from the XML. The detection of such addresses was
          improved now.
        </li>
              <li>
          Fix address reservation during RNG hot-plug
        <br/>
          When error occurred in a specific point in time during the
          hot-plug of an RNG device, it could happen that an address
          was released even though another device was already using
          it, making it possible to hot-plug another device with that
          address, effectively having duplicated addresses in the XML.
        </li>
            </ul>
          </li>
        </ul>
        <h3>
          <strong>v3.3.0 (2017-05-05)</strong>
        </h3>
        <ul>
          <li>
            <strong>New features</strong>
            <ul>
              <li>
          net: Add support for coalesce settings
        <br/>
          Enabling data batching through these settings can improve network
          performance for guests.
        </li>
              <li>
          qemu: Add support for guest CPU cache specification
        <br/>
          This features allows fine-grained control of the cache behavior
          of the guest CPU.
        </li>
              <li>
          qemu: Add support for the qemu-xhci USB controller
        </li>
            </ul>
          </li>
          <li>
            <strong>Improvements</strong>
            <ul>
              <li>
          hyperv: Support Hyper-V 2012 and newer
        <br/>
          Starting with Hyper-V 2012 the API has changed causing the existing
          driver to be unable to send and process requests properly. This has
          been resolved by adding abstractions to handle the differences and
          ease handling such breaks if they happen in the future.
        </li>
              <li>
          libxl: Add support for nested HVM domains
        <br/>
          Xen has supported nested HVM domains since version 4.4. The
          libvirt libxl driver now supports nested HVM domains by
          specifying the host-passthrough CPU mode when defining a
          domain.
        </li>
              <li>
          qemu: Implement ACPI support for aarch64 guests
        <br/>
          Up until this point, ACPI support was only advertised for x86_64
          guests and disabling it for aarch64 guests was not possible at all.
        </li>
              <li>
          vz: Add support for changing the number of vCPUs
        </li>
              <li>
          qemu: Automatically choose the best USB controller for guests
        <br/>
          The recently introduced qemu-xhci USB controller is the best choice
          for both ppc64 and aarch64 guests, so use it by default on those
          architectures if available.
        </li>
              <li>
          daemon: Increase default task limit for libvirtd
        <br/>
          The default number of tasks for the pids cgroup controller is 512,
          which libvirtd can quickly bump into when starting lots of guests.
          Raise the limit to a more reasonable 32768.
        </li>
              <li>
          docs: Include man pages describing key code names and values
        </li>
              <li>
          virsh: Report initialization errors
        <br/>
          Sometimes virsh might be unable to start: when that happens, report
          useful diagnostics instead of failing silently.
        </li>
            </ul>
          </li>
          <li>
            <strong>Bug fixes</strong>
            <ul>
              <li>
          nss: Don't require a network restart for libvirt_guest
        <br/>
          Previously, the libvirt_guest NSS module would only work properly
          after the corresponding network had been restarted; now newly
          started guests will be reported correctly right away.
        </li>
              <li>
          storage: Remove unavailable transient pools after restart
        <br/>
          Solve an issue where transient storage pools would be stuck in an
          unmanageable state if the source disappeared and libvirtd was
          subsequently restarted.
        </li>
              <li>
          storage: Fix capacity value for LUKS encrypted volumes
        <br/>
          The 'capacity' value (e.g. guest logical size) for a LUKS volume is
          smaller than the 'physical' value of the file in the file system, so
          we need to account for that.
        </li>
              <li>
          qemu: Fix regression when hyperv/vendor_id feature is used
        <br/>
          Guests using the feature would not be started at all; it is now
          possible to start them as expected.
        </li>
              <li>
          qemu: Do not crash on USB address with no port and invalid bus
        </li>
              <li>
          crypto: Always pad data before encrypting it
        <br/>
          If this step is not performed, when the data length matches the
          chunk size the decryption routines will misinterpret the last byte
          of data as the padding length and fail to decode it correctly.
        </li>
            </ul>
          </li>
        </ul>
        <h3>
          <strong>v3.2.0 (2017-04-02)</strong>
        </h3>
        <ul>
          <li>
            <strong>New features</strong>
            <ul>
              <li>
          The virt-host-validate tool now supports bhyve hypervisor
        </li>
              <li>
          Introduce NVDIMM memory model
        <br/>
          NVDIMM is new type of memory introduced into QEMU 2.6. The idea is
          that we have a non-volatile memory module that keeps the data
          persistent across domain reboots and offers much faster data
          accesses. However, due to a bug in QEMU, this feature is not enabled
          for QEMUs older than 2.9.0.
        </li>
              <li>
          qemu: Introduce support for generic PCIe Root Ports
        <br/>
          For new controllers, a generic device (pcie-root-port) will be used
          by default instead of the Intel-specific device (ioh3420), provided
          the QEMU binary supports it.
        </li>
              <li>
          qemu: Add support for checking guest CPU ABI compatibility
        <br/>
          When migrating a domain to a different host, restoring a domain from
          a file or reverting a snapshot libvirt will make sure the guest CPU
          QEMU presents to the guest OS exactly matches the one provided on
          the source host (or before the domain's state was saved). This
          enhanced check may also be requested when starting a new domain to
          ensure the virtual CPU exactly matches the one specified in the XML.
        </li>
              <li>
          qemu: Add support to migrate using TLS
        <br/>
          Add the ability to migrate QEMU guests using TLS via a new flag
          VIR_MIGRATE_TLS or virsh migrate '--tls' option. Requires using at
          least QEMU 2.9.0 in order to work properly.
        </li>
              <li>
          qemu: add mediated devices framework support
        <br/>
          Recent kernel version introduced new mediated device framework, so
          provide an initial support of this framework for libvirt, mainly by
          introducing a new host device type in the XML.
        </li>
              <li>
          qemu: Add support for setting TSC frequency
        <br/>
          Setting TSC frequency is required to enable migration for domains
          with 'invtsc' CPU feature turned on.
        </li>
              <li>
          Add support for block device threshold event
        <br/>
          When using thin provisioning, management tools need to resize the
          disk in certain cases. To avoid having them to poll disk usage
          this version introduces an event which will be fired when a given
          offset of the storage is written by the hypervisor. Together with the
          API it allows registering thresholds for given storage backing
          volumes and this event will then notify management if the threshold
          is exceeded. Currently only the qemu driver supports this.
        </li>
              <li>
           bhyve: Add support for UEFI boot ROM, VNC, and USB tablet
        <br/>
          The bhyve driver now supports booting using the UEFI boot ROM,
          so non-FreeBSD guests that support UEFI could be booted without
          using an external boot loader like grub-bhyve. Video is also
          supported now, allowing to connect to guests via VNC and use
          an USB tablet as an input device. Please refer to
          the driver page for domain XML examples.
        </li>
            </ul>
          </li>
          <li>
            <strong>Improvements</strong>
            <ul>
              <li>
          qemu: Detect host CPU model by asking QEMU on x86_64
        <br/>
          Previously, libvirt detected the host CPU model using CPUID
          instruction, which caused libvirt to detect a lot of CPU features
          that are not supported by QEMU/KVM. Asking QEMU makes sure we
          don't start it with unsupported features.
        </li>
              <li>
          perf: Add more perf statistics
        <br/>
          Add support to get the count of cpu clock time, task clock time,
          page faults, context switches, cpu migrations, minor page faults,
          major page faults, alignment faults, emulation faults by
          applications running on the platform.
        </li>
              <li>
          Write hyperv crash information into vm log
        <br/>
          qemu's implementation of the hyperv panic notifier now reports
          information about the crash from the guest os. Starting with this
          version, libvirt logs the information to the vm log file for possible
          debugging.
        </li>
            </ul>
          </li>
          <li>
            <strong>Bug fixes</strong>
            <ul>
              <li>
          QEMU: Use adaptive timeout for connecting to monitor
        <br/>
          When starting qemu, libvirt waits for qemu to create the monitor
          socket which libvirt connects to. Historically, there was sharp 30
          second timeout after which the qemu process was killed. This
          approach is suboptimal as in some scenarios with huge amounts of
          guest RAM it can take a minute or more for kernel to allocate and
          zero out pages for qemu. The timeout is now flexible and computed by
          libvirt at domain startup.
        </li>
              <li>
          Overwrite (clear) 2 KB instead of just 512 bytes when initializing logical device
        </li>
              <li>
          Describe the logical backend requirements better for pool-create-as
        </li>
            </ul>
          </li>
        </ul>
        <h3>
          <strong>v3.1.0 (2017-03-03)</strong>
        </h3>
        <ul>
          <li>
            <strong>New features</strong>
            <ul>
              <li>
          storage: Add Virtuozzo storage backend storage pool
        <br/>
          Add new storage backend to support pool and volume management
          within the Virtuozzo Storage environment. Virtuozzo Storage is
          a highly available distributed software defined storage with
          built-in replication and disaster recovery.
        </li>
              <li>
          qemu: Add support for memory backing with file source
        <br/>
          Add support in numa topology for file source inside memory backing
          (hugepages are not needed) Three new elements
          &lt;source/&gt;,&lt;access/&gt; and &lt;allocation/&gt; were added
          to &lt;memoryBacking/&gt; element. Also new configuration parameter
          <code>memory_backing_dir</code> was added to qemu.conf.
        </li>
              <li>
          network: make openvswitch call timeout configurable
        <br/>
          Adding the ability to specify the timeout value in seconds for
          openvswitch calls in the libvirtd configuration file.
        </li>
              <li>
          bhyve: add e1000 NIC support
        <br/>
          Add support for e1000 NIC. Previously, the only available option
          was <code>virtio-net</code>.
        </li>
              <li>
          libxl: add tunneled migration support
        <br/>
          Add tunneled migration to libxl driver, which is always capable of
          strong encryption and doesn't require any extra network connection
          other than what's required for remote access of libvirtd.
        </li>
              <li>
          qemu: add rendernode argument
        <br/>
          Add a new attribute 'rendernode' to &lt;gl&gt; spice element.
        </li>
              <li>
          nodedev: add drm capability
        <br/>
          Add a new 'drm' capability for Direct Rendering Manager (DRM)
          devices, providing device type information.
        </li>
              <li>
          Add API for individual/specific vCPU hotplug
        <br/>
          The new API allows selecting specific vCPUs to be added/removed from
          the VM. The existing APIs allowed only adding/removing from the end
          which did not play well with NUMA.
        </li>
            </ul>
          </li>
          <li>
            <strong>Improvements</strong>
            <ul>
              <li>
           virsh: pool-list: allow both --uuid and --name in one command
        <br/>
          Adjust the virsh-pool command to support the --uuid and/or --name
          options in order to print just the --name and/or --uuid of pools.
        </li>
              <li>
          Introduce MTU to domain &lt;interface/&gt; and &lt;network&gt;
        <br/>
          Allow setting MTU size for some types of domain interface
          and network.
        </li>
              <li>
          libxl: improve support for &lt;timer&gt; configurations
        <br/>
          Add support for multiple timers. Extend the tsc timer to
          support the emulate mode. Improve conversion of timer XML
          to/from xl.cfg.
        </li>
              <li>
          storage: modularize the storage driver
        <br/>
          Split up the storage driver backends into loadable modules so that
          binary distributions don't have to compromise on shipping the storage
          driver with all backends which may pull in too many dependencies.
        </li>
            </ul>
          </li>
          <li>
            <strong>Bug fixes</strong>
            <ul>
              <li>
          nodedev: Fabric name must not be required for fc_host capability
        <br/>
          fabric_name is one of many fc_host attributes in Linux that is
          optional and left to the low-level driver to decide if it is
          implemented. For example the zfcp device driver does not provide a
          fabric name for an fcp host. The requirement for the existence of
          a fabric name has been removed by making it optional.
        </li>
              <li>
          bhyve: change address allocation schema for SATA disks
        <br/>
          Previously, the bhyve driver assigned PCI addresses to SATA disks
          directly rather than assigning that to a controller and
          using SATA addresses for disks. It was implemented this way
          because bhyve has no notion of an explicit SATA controller.
          However, as this doesn't match libvirt's understanding of
          disk addresses, the bhyve driver was changed to follow
          the common schema and have PCI addresses for SATA controllers
          and SATA addresses for disks. If you're having issues
          because of this, it's recommended to edit the domain's XML
          and remove &lt;address type='pci'&gt; from the &lt;disk&gt;
          elements with &lt;target bus='sata'/&gt; and let libvirt
          regenerate it properly.
        </li>
              <li>
          libxl: maximum memory fixes
        <br/>
          Fix reporting of domain maximum memory. Fix setting dom0
          maximum memory.
        </li>
              <li>
          libxl: fix disk detach when &lt;driver&gt; not specified
        </li>
              <li>
          libxl: fix dom0 autoballooning with Xen 4.8
        </li>
              <li>
          qemu: Allow empty script path to &lt;interface/&gt;
        <br/>
          Historically, this was always allowed. Unfortunately, due to some
          rework done for 1.3.2 release a bug was dragged in which suddenly
          stop allowing domain with such configuration to start.
        </li>
            </ul>
          </li>
        </ul>
        <h3>
          <strong>v3.0.0 (2017-01-17)</strong>
        </h3>
        <ul>
          <li>
            <strong>New features</strong>
            <ul>
              <li>
          Domain events for metadata content changes
        <br/>
          The domain events framework has a new event ID that can
          be used to get notifications when domain metadata content
          changes.
        </li>
              <li>
          Event notifications for the secret object
        <br/>
          The secret object now supports event notifications, covering
          lifcycle changes and secret value changes.
        </li>
              <li>
          New localPtr attribute for "ip" element in network XML
        </li>
              <li>
          qemu: Support QEMU group I/O throttling
        <br/>
          Add the capability to allow group I/O throttling via a new
          domain &lt;disk&gt; &lt;iotune&gt; subelement "group_name"
          to allow sharing I/O throttling quota between multiple drives.
        </li>
              <li>
          nss: Introduce libvirt_guest
        <br/>
          New <code>libvirt_guest</code> nss module that translates libvirt
          guest names into IP addresses.
        </li>
              <li>
          daemon: Add support for runtime logging settings adjustment
        <br/>
          Logging-related settings like log outputs and filters can now be
          adjusted during runtime using the admin interface without the
          necessity of the daemon's restart.
        </li>
              <li>
          storage: Add virStorageVolInfoFlags API
        <br/>
          Add the API to support using the VIR_STORAGE_VOL_GET_PHYSICAL
          flag in order to return the host physical size in bytes
          of the image container in the allocation field of the
          _virStorageVolInfo structure. The --physical flag has been
          added to the virsh vol-info command to access the data.
        </li>
              <li>
          libxl: Implement virDomainGetMaxVcpus API
        </li>
              <li>
          storage: Add overwrite flag checking for logical pool
        <br/>
          Add support for the OVERWRITE flags for the logical storage
          backend including checking for existing data on the target
          volumes when building a new logical pool on target volume(s).
        </li>
              <li>
          qemu: Add support for guest CPU configuration on s390(x)
        </li>
            </ul>
          </li>
          <li>
            <strong>Improvements</strong>
            <ul>
              <li>
          perf: Add more perf statistics
        <br/>
          Add support to get the count of branch instructions
          executed, branch misses, bus cycles, stalled frontend
          cpu cycles, stalled backend cpu cycles, and ref cpu
          cycles by applications running on the platform.
        </li>
              <li>
          conf: Display &lt;physical&gt; for volume xml
        <br/>
          Add a display of the &lt;physical&gt; size of a disk
          volume in the output of the volume XML.
        </li>
              <li>
          qemu: Use virtio-pci by default for aarch64 mach-virt guests
        <br/>
          virtio-pci provides several advantages over virtio-mmio, such
          as the ability to hotplug devices and improved performance.
          While opting in to virtio-pci has been possible for a while,
          newly-defined guests will now use it automatically.
        </li>
              <li>
          vbox: remove support for VirtualBox 3.x and older
        <br/>
          Those old VirtualBox versions have been unsupported by
          upstream for a long time and the API of 4.0 and newer has
          diverged enough to require code abstractions to handle differences.
          Removing support for those old versions drops lots of code from
          the driver and simplifies the logic to ease implementation of new
          features going forward.
        </li>
              <li>
          virsh: pool-info: introduce option --bytes
        <br/>
          Add option --bytes to virsh pool-info in order ti allow display
          of units in bytes rather than default of human readable output.
        </li>
              <li>
          scsi: Add parent wwnn/wwpn or fabric capability for createVport
        <br/>
          Improve the algorithm searching for the parent scsi_host device
          for vHBA/NPIV scsi_host creation. Rather than supplying the
          "parent" by name, it's now possible to define the parent by
          it's wwnn/wwpn or fabric_wwn in the node device create XML or
          the storage pool XML.
        </li>
              <li>
          qemu: aggregate pcie-root-ports onto multiple functions of a slot
        <br/>
          When pcie-root-ports are added to pcie-root in order to
          provide a place to connect PCI Express endpoint devices,
          libvirt now aggregates multiple root ports together onto the
          same slot (up to 8 per slot) in order to conserve slots.
          Using this method, it's possible to connect more than 200
          endpoint devices to a guest that uses PCIe without requiring
          setup of any PCIe switches.
        </li>
            </ul>
          </li>
          <li>
            <strong>Bug fixes</strong>
            <ul>
              <li>
          lxc: fix accidental killing of containers during libvirtd restart
        <br/>
          The libvirt_lxc process was previously not moved into the
          container scope. As a result, if systemd reloads its config
          after a container is started, when libvirtd is later restarted
          it will accidentally kill the containers.
        </li>
              <li>
          qemu: Correct GetBlockInfo values
        <br/>
          For an active domain, correct the physical value provided for
          a raw sparse file backed storage and the allocation value provided
          for a qcow2 file backed storage that hasn't yet been opened on
          the domain.
        </li>
              <li>
          qemu: Make virtio console usable on ppc64 guests
        <br/>
          The chardev detection code has been improved and can now handle this
          configuration properly.
        </li>
              <li>
          qemu: Enable mount namespace
        <br/>
          To avoid funny races with udev relabelling devices under our hands and
          to enhance security, libvirt now spawns each qemu process with its own
          <code>/dev</code>.
        </li>
              <li>
          storage: Fix implementation of no-overwrite for file system backend
        <br/>
          Fix file system storage backend implementation of the OVERWRITE
          flags to be consistent between code and documentation. Add checks
          to ensure that when building a new file system on a target volume
          that there is not something already on the disk in a format that
          libvirt can recognize.
        </li>
              <li>
          qemu: Create hugepage path on per domain basis
        <br/>
          Historically, all hugepage enabled domains shared the same path under
          hugetlbfs. This left libvirt unable to correctly set security labels
          on it. With this release, however, each domain is put into a
          separate path which is also correctly labeled.
        </li>
              <li>
          conf: Reject domains with duplicate drive addresses
        <br/>
          Reject duplicate drive addresses for disks and hostdevs at
          domain definition.
        </li>
              <li>
          libxl: reverse defaults on HVM net device attach
        <br/>
          Fixes network interface attach for HVM domains when no model is
          specified. Emulated hotplug isn't yet supported and hence we should
          default to the general working scenario.
        </li>
              <li>
          libxl: always enable pae for x86_64 HVM
        <br/>
          By default pae is disabled in libxl. Without an explicit &lt;pae/&gt;
          setting in the domain &lt;features&gt; configuration, an x86_64 HVM
          domain would be get an i686 environment. pae should always be enabled
          for x86_64 HVM domains.
        </li>
              <li>
          qemu: Fix XML dump of autogenerated websocket
        <br/>
          As a result autogenerated websocket port is regenerated on domain restore,
          migration and such as it should be.
        </li>
            </ul>
          </li>
        </ul>
        <h3>
          <strong>v2.5.0 (2016-12-04)</strong>
        </h3>
        <ul>
          <li>
            <strong>New features</strong>
            <ul>
              <li>
          shmem: Add support for additional models
        <br/>
          The shmem device can now utilize QEMU's ivshmem-plain and
          ivshmem-doorbell, more modern versions of ivshmem.
        </li>
              <li>
          vbox: Add VirtualBox 5.1 support
        </li>
              <li>
          libssh: New transport
        <br/>
          The new libssh transport allows one to connect to a running
          libvirtd via SSH, using the libssh library; for example:
          <code>qemu+libssh://server/system</code>.
        </li>
              <li>
          vhost-scsi: Add support scsi_host hostdev passthrough
        <br/>
          Add the capability to pass through a scsi_host HBA and the
          associated LUNs to the guest.
        </li>
              <li>
          Allow debugging of gluster volumes in qemu
        <br/>
          Users can now enable debug logging for native gluster
          volumes in qemu using the "gluster_debug_level" option in qemu.conf
        </li>
              <li>
          Pre-allocate memory slots for memory hotplug
        <br/>
          Slot numbers for memory devices are now automatically allocated and
          thus persistent. In addition slot numbers can be specified without
          providing a base address, which simplifies user configuration
        </li>
              <li>
          qemu: Express devices will be placed on PCIe bus by default
        <br/>
          For machine types that use a PCI Express root bus
          (e.g. x86_64/Q35 and aarch64/virt), any unaddressed PCI
          device that is an Express device (all virtio-1.0 devices,
          e1000e, nec-xhci, vfio assigned devices) will be placed on
          an Express controller (i.e. a pcie-root-port) instead of a
          legacy PCI controller (i.e. pci-bridge) with the root ports
          added as needed.
        </li>
            </ul>
          </li>
          <li>
            <strong>Improvements</strong>
            <ul>
              <li>
          docs: Better documentation for migration APIs and flags
        </li>
              <li>
          vbox: Address thread safety issues
        </li>
              <li>
          virsh: Add support for passing an alternative persistent XML to migrate command
        </li>
              <li>
          vhostuser: Allow hotplug of multiqueue devices
        </li>
              <li>
          NEWS: Switch to an improved format
        <br/>
          List user-visible changes instead of single commits for a better
          high-level overview of differences between libvirt releases.
        </li>
              <li>
          website: Modernize layout and branding
        <br/>
          The libvirt website looked very cluttered and outdated; it has now
          been completely overhauled, resulting in a design that's better
          organized and more pleasant to look at.
        </li>
            </ul>
          </li>
          <li>
            <strong>Bug fixes</strong>
            <ul>
              <li>
          vz: Fix migration in P2P mode
        </li>
              <li>
          Forbid newline character in names of some libvirt objects
        </li>
              <li>
          Fix compilation on macOS
        </li>
            </ul>
          </li>
        </ul>
        <p>Older libvirt releases didn't have proper release notes,
        and as such are not included in this page: if you're looking
        for information about them, start from those made in
        <a href="news-2016.html">2016</a> and work your way back.</p>
      </div>
    </div>
    <div id="nav">
      <div id="home">
        <a href="index.html">Home</a>
      </div>
      <div id="jumplinks">
        <ul>
          <li>
            <a href="downloads.html">Download</a>
          </li>
          <li>
            <a href="contribute.html">Contribute</a>
          </li>
          <li>
            <a href="docs.html">Docs</a>
          </li>
        </ul>
      </div>
      <div id="search">
        <form action="search.php" enctype="application/x-www-form-urlencoded" method="get">
          <div>
            <input name="query" type="text" size="12" value=""/>
            <input name="submit" type="submit" value="Go"/>
          </div>
        </form>
      </div>
    </div>
    <div id="footer">
      <div id="contact">
        <h3>Contact</h3>
        <ul>
          <li>
            <a href="contact.html#email">email</a>
          </li>
          <li>
            <a href="contact.html#irc">irc</a>
          </li>
        </ul>
      </div>
      <div id="community">
        <h3>Community</h3>
        <ul>
          <li>
            <a href="https://twitter.com/hashtag/libvirt">twitter</a>
          </li>
          <li>
            <a href="https://plus.google.com/communities/109522598353007505282">google+</a>
          </li>
          <li>
            <a href="http://stackoverflow.com/questions/tagged/libvirt">stackoverflow</a>
          </li>
          <li>
            <a href="http://serverfault.com/questions/tagged/libvirt">serverfault</a>
          </li>
        </ul>
      </div>
      <div id="conduct">
            Participants in the libvirt project agree to abide by <a href="governance.html#codeofconduct">the project code of conduct</a></div>
      <br class="clear"/>
    </div>
  </body>
</html>