1. 16 4月, 2018 3 次提交
  2. 12 4月, 2018 6 次提交
  3. 08 3月, 2018 1 次提交
  4. 03 2月, 2018 1 次提交
  5. 04 1月, 2018 1 次提交
  6. 28 11月, 2017 1 次提交
  7. 25 11月, 2017 1 次提交
    • J
      qemu: Get capabilities to use iscsi password-secret argument · 4f44b8b5
      John Ferlan 提交于
      Detect the capability via the query-qmp-schema for blockdev-add
      to find the 'password-secret' parameter that will allow the iSCSI
      code to use the master secret object to encrypt the secret for an
      and only need to provide the object id of the secret on the command
      line thus obsfuscating the passphrase.
      4f44b8b5
  8. 24 11月, 2017 1 次提交
    • P
      qemu: caps: Add capability for 'share-rw' disk option · 860a3c4b
      Peter Krempa 提交于
      'share-rw' for the disk device configures qemu to allow concurrent
      access to the backing storage.
      
      The capability is checked in various supported disk frontend buses since
      it does not make sense to partially backport it.
      860a3c4b
  9. 20 11月, 2017 1 次提交
  10. 08 11月, 2017 1 次提交
  11. 04 10月, 2017 1 次提交
  12. 29 8月, 2017 2 次提交
  13. 27 7月, 2017 1 次提交
  14. 21 7月, 2017 2 次提交
  15. 15 7月, 2017 1 次提交
  16. 11 7月, 2017 1 次提交
  17. 15 5月, 2017 1 次提交
  18. 27 3月, 2017 2 次提交
  19. 17 3月, 2017 1 次提交
  20. 06 12月, 2016 1 次提交
  21. 26 11月, 2016 2 次提交
  22. 25 11月, 2016 1 次提交
  23. 09 11月, 2016 2 次提交
  24. 02 11月, 2016 1 次提交
  25. 26 10月, 2016 1 次提交
  26. 12 10月, 2016 2 次提交
    • P
      qemu_capabilities: check for existence of virtio-vga · 6869428c
      Pavel Hrdina 提交于
      Commit 21373feb added support for primary virtio-vga device but it was
      checking for virtio-gpu.  Let's check for existence of virtio-vga if we
      want to use it.
      
      Virtio video device is currently represented by three different models
      *virtio-gpu-device*, *virtio-gpu-pci* and *virtio-vga*.  The first two
      models are tied together and if virtio video devices is compiled in they
      both exist.  However, the *virtio-vga* model doesn't have to exist on
      some architectures even if the first two models exist.  So we cannot
      group all three together.
      Signed-off-by: NPavel Hrdina <phrdina@redhat.com>
      6869428c
    • P
      qemu_capabilities: join capabilities for qxl and qxl-vga devices · 34a4447b
      Pavel Hrdina 提交于
      This patch simplifies QEMU capabilities for QXL video device.  QEMU
      exposes this device as *qxl-vga* and *qxl* and they are both the same
      device with the same set of parameters, the only difference is that
      *qxl-vga* includes VGA compatibility.
      
      Based on QEMU code they are tied together so it's safe to check only for
      presence of only one of them.
      
      This patch also removes an invalid test case "video-qxl-sec-nodevice"
      where there is only *qxl-vga* device and *qxl* device is not present.
      Signed-off-by: NPavel Hrdina <phrdina@redhat.com>
      34a4447b
  27. 18 8月, 2016 1 次提交
    • J
      Introduce QEMU_CAPS_VIRTIO_PCI_DISABLE_LEGACY · 41f5c2ca
      Ján Tomko 提交于
      Check whether the disable-legacy property is present on the following
      devices:
        virtio-balloon-pci
        virtio-blk-pci
        virtio-scsi-pci
        virtio-serial-pci
        virtio-9p-pci
        virtio-net-pci
        virtio-rng-pci
        virtio-gpu-pci
        virtio-input-host-pci
        virtio-keyboard-pci
        virtio-mouse-pci
        virtio-tablet-pci
      
      Assuming that if QEMU knows other virtio devices where this property
      is applicable, it will have at least one of these devices.
      
      Added in QEMU by:
      commit e266d421490e0ae83044bbebb209b2d3650c0ba6
          virtio-pci: add flags to enable/disable legacy/modern
      41f5c2ca