1. 18 7月, 2018 2 次提交
  2. 28 5月, 2018 1 次提交
  3. 14 5月, 2018 1 次提交
  4. 11 5月, 2018 1 次提交
  5. 23 3月, 2018 1 次提交
  6. 19 2月, 2018 1 次提交
  7. 03 11月, 2017 1 次提交
    • A
      Remove backslash alignment attempts · 3e7db8d3
      Andrea Bolognani 提交于
      Right-aligning backslashes when defining macros or using complex
      commands in Makefiles looks cute, but as soon as any changes is
      required to the code you end up with either distractingly broken
      alignment or unnecessarily big diffs where most of the changes
      are just pushing all backslashes a few characters to one side.
      
      Generated using
      
        $ git grep -El '[[:blank:]][[:blank:]]\\$' | \
          grep -E '*\.([chx]|am|mk)$$' | \
          while read f; do \
            sed -Ei 's/[[:blank:]]*[[:blank:]]\\$/ \\/g' "$f"; \
          done
      Signed-off-by: NAndrea Bolognani <abologna@redhat.com>
      3e7db8d3
  8. 27 10月, 2017 1 次提交
  9. 23 10月, 2017 1 次提交
  10. 05 10月, 2017 2 次提交
  11. 07 8月, 2017 1 次提交
  12. 23 6月, 2017 1 次提交
  13. 11 4月, 2017 1 次提交
  14. 04 4月, 2017 1 次提交
  15. 21 2月, 2017 1 次提交
  16. 02 2月, 2017 2 次提交
  17. 18 1月, 2017 3 次提交
  18. 01 12月, 2016 1 次提交
    • L
      qemu: propagate virQEMUDriver object to qemuDomainDeviceCalculatePCIConnectFlags · 9b0848d5
      Laine Stump 提交于
      If libvirtd is running unprivileged, it can open a device's PCI config
      data in sysfs, but can only read the first 64 bytes. But as part of
      determining whether a device is Express or legacy PCI,
      qemuDomainDeviceCalculatePCIConnectFlags() will be updated in a future
      patch to call virPCIDeviceIsPCIExpress(), which tries to read beyond
      the first 64 bytes of the PCI config data and fails with an error log
      if the read is unsuccessful.
      
      In order to avoid creating a parallel "quiet" version of
      virPCIDeviceIsPCIExpress(), this patch passes a virQEMUDriverPtr down
      through all the call chains that initialize the
      qemuDomainFillDevicePCIConnectFlagsIterData, and saves the driver
      pointer with the rest of the iterdata so that it can be used by
      qemuDomainDeviceCalculatePCIConnectFlags(). This pointer isn't used
      yet, but will be used in an upcoming patch (that detects Express vs
      legacy PCI for VFIO assigned devices) to examine driver->privileged.
      9b0848d5
  19. 03 11月, 2016 1 次提交
  20. 26 10月, 2016 1 次提交
    • J
      qemu: Add secret object hotplug for TCP chardev TLS · 8550e858
      John Ferlan 提交于
      https://bugzilla.redhat.com/show_bug.cgi?id=1300776
      
      Complete the implementation of support for TLS encryption on
      chardev TCP transports by adding the hotplug ability of a secret
      to generate the passwordid for the TLS object for chrdev, RNG,
      and redirdev.
      
      Fix up the order of object removal on failure to be the inverse
      of the attempted attach (for redirdev, chr, rng) - for each the
      tls object was being removed before the chardev backend.
      
      Likewise, add the ability to hot unplug that secret object as well
      and be sure the order of unplug matches that inverse order of plug.
      Signed-off-by: NJohn Ferlan <jferlan@redhat.com>
      8550e858
  21. 26 9月, 2016 1 次提交
  22. 16 9月, 2016 1 次提交
  23. 25 7月, 2016 1 次提交
    • T
      qemuhotplugtest: Add tests for ccw devices · ed8f2364
      Tomasz Flendrich 提交于
      There's a plan to rework the address handling, so testcases
      that verify hotplugging ccw devices will help in avoiding
      regression.
      
      In this commit, some files are duplicated because of the way
      qemuhotplug.c calculates the expected xml filenames.
      I plan on changing that to explicitly stating the basis domain
      xml, the device xml, and the expected xml.
      ed8f2364
  24. 11 7月, 2016 2 次提交
  25. 30 6月, 2016 1 次提交
  26. 23 6月, 2016 1 次提交
  27. 09 6月, 2016 2 次提交
  28. 08 6月, 2016 3 次提交
  29. 23 5月, 2016 1 次提交
  30. 14 4月, 2016 1 次提交
    • J
      tests: do not overwrite return value when filling qemuCapsCache · d0cc8b10
      Ján Tomko 提交于
      In qemuHotplugCreateObjects, the ret variable was filled by
      the value returned by qemuTestCapsCacheInsert.
      
      If any of the functions after this assignment failed, we would still
      return success.
      
      Also adjust testCompareXMLToArgvHelper, where this change is just
      cosmetic, because the value was overwritten right away.
      d0cc8b10
  31. 24 3月, 2016 1 次提交