1. 21 5月, 2019 1 次提交
  2. 03 4月, 2019 1 次提交
  3. 01 4月, 2019 6 次提交
  4. 30 3月, 2019 1 次提交
  5. 29 3月, 2019 4 次提交
  6. 28 3月, 2019 8 次提交
  7. 27 3月, 2019 15 次提交
  8. 26 3月, 2019 4 次提交
    • M
      qemufirmwaretest: Produce better message on error · c34b3eef
      Michal Privoznik 提交于
      If qemuFirmwareFetchConfigs() returned more or fewer paths than
      expected all that we see is the following error message:
      
        Expected 5 paths, got 7
      
      While it is technically correct (the best kind of correct), we
      can do better:
      
        Unexpected path (i=0). Expected /some/path got /some/other/path
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      Reviewed-by: NAndrea Bolognani <abologna@redhat.com>
      c34b3eef
    • L
      qemu_hotplug: don't shutdown net device until the guest has released it · 34086fc5
      Laine Stump 提交于
      For [some unknown reason, possibly/probably pure chance], Net devices
      have been taken offline and their bandwidth tc rules cleared as the
      very first operation when detaching the device. This is contrary to
      every other type of device, where all hostside teardown is delayed
      until we receive the DEVICE_DELETED event back from qemu, indicating
      that the guest has finished with the device.
      
      This patch delays these two operations until receipt of
      DEVICE_DELETED, which removes an ugly wart from
      qemuDomainDetachDeviceLive(), and also seems to be a more correct
      sequence of events.
      Signed-off-by: NLaine Stump <laine@laine.org>
      ACKed-by: NPeter Krempa <pkrempa@redhat.com>
      34086fc5
    • L
      qemu_hotplug: delay sending DEVICE_REMOVED event until after *all* teardown · 78b03a77
      Laine Stump 提交于
      The VIR_DOMAIN_EVENT_ID_DEVICE_REMOVED event is sent after qemu has
      responded to a device_del command with a DEVICE_DELETED event. Before
      queuing the event, *some* of the final teardown of the device's
      trappings in libvirt is done, but not *all* of it. As a result, an
      application may receive and process the DEVICE_REMOVED event before
      libvirt has really finished with it.
      
      Usually this doesn't cause a problem, but it can - in the case of the
      bug report referenced below, vdsm is assigning a PCI device to a guest
      with managed='no', using livirt's virNodeDeviceDetachFlags() and
      virNodeDeviceReAttach() APIs. Immediately after receiving a
      DEVICE_REMOVED event from libvirt signalling that the device had been
      successfully unplugged, vdsm would cal virNodeDeviceReAttach() to
      unbind the device from vfio-pci and rebind it to the host driverm but
      because the event was received before libvirt had completely finished
      processing the removal, that device was still on the "activeDevs"
      list, and so virNodeDeviceReAttach() failed.
      
      Experimentation with additional debug logs proved that libvirt would
      always end up dispatching the DEVICE_REMOVED event before it had
      removed the device from activeDevs (with a *much* greater difference
      with managed='yes', since in that case the re-binding of the device
      occurred after queuing the device).
      
      Although the case of hostdev devices is the most extreme (since there
      is so much involved in tearing down the device), *all* device types
      suffer from the same problem - the DEVICE_REMOVED event is queued very
      early in the qemuDomainRemove*Device() function for all of them,
      resulting in a possibility of any application receiving the event
      before libvirt has really finished with the device.
      
      The solution is to save the device's alias (which is the only piece of
      info from the device object that is needed for the event) at the
      beginning of processing the device removal, and then queue the event
      as a final act before returning. Since all of the
      qemuDomainRemove*Device() functions (except
      qemuDomainRemoveChrDevice()) are now called exclusively from
      qemuDomainRemoveDevice() (which selects which of the subordinates to
      call in a switch statement based on the type of device), the shortest
      route to a solution is to doing the saving of alias, and later
      queueing of the event, in the higher level qemuDomainRemoveDevice(),
      and just completely remove the event-related code from all the
      subordinate functions.
      
      The single exception to this, as mentioned before, is
      qemuDomainRemoveChrDevice(), which is still called from somewhere
      other than qemuDomainRemoveDevice() (and has a separate arg used to
      trigger different behavior when the chr device has targetType ==
      GUESTFWD), so it must keep its original behavior intact, and must be
      treated differently by qemuDomainRemoveDevice() (similar to the way
      that qemuDomainDetachDeviceLive() treats chr and lease devices
      differently from all the others).
      
      Resolves: https://bugzilla.redhat.com/1658198Signed-off-by: NLaine Stump <laine@laine.org>
      ACKed-by: NPeter Krempa <pkrempa@redhat.com>
      78b03a77
    • L
      qemu_hotplug: consolidate all common detach code in qemuDomainDetachDeviceLive · dd60bd62
      Laine Stump 提交于
      Now that all the qemuDomainDetachPrep*() functions look nearly
      identical at the end, we can put one copy of that identical code in
      qemuDomainDetachDeviceLive() at the point after the individual prep
      functions have been called, and remove the duplicated code from all
      the prep functions. The code to locate the target "detach" device
      based on the "match" device remains, as do all device-type-specific
      validations.
      
      Unfortunately there are a few things going on at once in this patch,
      which makes it a bit more difficult to follow than the others; it was
      just impossible to do the changes in stages and still have a
      buildable/testable tree at each step.
      
      The other changes of note:
      
      * The individual prep functions no longer need their driver or async
        args, so those are removed, as are the local "ret" variables, since
        in all cases the functions just directly return -1 or 0.
      
      * Some of the prep functions were checking for a valid alias and/or
        for attempts to detach a multifunction PCI device, but not all. In
        fact, both checks are valid (or at least harmless) for *all* device
        types, so they are removed from the prep functions, and done a
        single time in the common function.
      
        (any attempts to *create* an alias when there isn't one has been
        removed, since that is doomed to failure anyway; the only way the
        device wouldn't have an alias is if 1) the domain was created by
        calling virsh qemu-attach to attach an existing qemu process to
        libvirt, and 2) the qemu command that started said process used "old
        style" arguments for creating devices that didn't have any device
        ids. Even if we constructed a device id for one of these devices,
        qemu wouldn't recognize it in the device_del command anyway, so we
        may as well fail earlier with "device missing alias" rather than
        failing later with "couldn't delete device net0".)
      
      * Only one type of device has shutdown code that must not be called
        until after *all* validation of the device is done (including
        checking for multifunction PCI and valid alias, which is done in the
        toplevel common code). For this reason, the Net function has been
        split in two, with the 2nd half (qemuDomainDetachShutdownNet())
        called from the common function, right before sending the delete
        command to qemu.
      Signed-off-by: NLaine Stump <laine@laine.org>
      ACKed-by: NPeter Krempa <pkrempa@redhat.com>
      dd60bd62