1. 17 5月, 2018 1 次提交
  2. 14 5月, 2018 1 次提交
  3. 30 4月, 2018 1 次提交
  4. 18 4月, 2018 1 次提交
  5. 17 4月, 2018 6 次提交
  6. 03 4月, 2018 1 次提交
  7. 23 3月, 2018 1 次提交
  8. 19 2月, 2018 1 次提交
    • D
      qemu: stop passing virConnectPtr into qemuMonitorStartCPUs · aed679da
      Daniel P. Berrangé 提交于
      There is a long standing hack to pass a virConnectPtr into the
      qemuMonitorStartCPUs method, so that when the text monitor prompts
      for a disk password, we can lookup virSecretPtr objects. This causes
      us to have to pass a virConnectPtr around through countless methods
      up the call chain....except some places don't have any virConnectPtr
      available so have always just passed NULL. We can finally fix this
      disastrous design by using virGetConnectSecret() to open a connection
      to the secret driver at time of use.
      Reviewed-by: NJohn Ferlan <jferlan@redhat.com>
      Signed-off-by: NDaniel P. Berrangé <berrange@redhat.com>
      aed679da
  9. 06 2月, 2018 2 次提交
  10. 26 10月, 2017 1 次提交
  11. 20 10月, 2017 1 次提交
  12. 17 10月, 2017 1 次提交
  13. 05 10月, 2017 1 次提交
  14. 14 9月, 2017 1 次提交
  15. 27 7月, 2017 1 次提交
  16. 30 3月, 2017 1 次提交
  17. 27 3月, 2017 2 次提交
  18. 17 3月, 2017 1 次提交
  19. 04 3月, 2017 1 次提交
  20. 18 1月, 2017 1 次提交
  21. 06 1月, 2017 1 次提交
  22. 06 12月, 2016 1 次提交
  23. 09 11月, 2016 1 次提交
  24. 26 10月, 2016 1 次提交
    • J
      qemu: Add length for bps/iops throttling parameters to driver · 223438a2
      John Ferlan 提交于
      Add support for a duration/length for the bps/iops and friends.
      
      Modify the API in order to add the "blkdeviotune." specific definitions
      for the iotune throttling duration/length options
      
          total_bytes_sec_max_length
          write_bytes_sec_max_length
          read_bytes_sec_max_length
          total_iops_sec_max_length
          write_iops_sec_max_length
          read_iops_sec_max_length
      223438a2
  25. 22 9月, 2016 1 次提交
  26. 25 8月, 2016 2 次提交
    • P
      qemu: monitor: Add support for calling query-hotpluggable-cpus · 1213f0f8
      Peter Krempa 提交于
      Add support for retrieving information regarding hotpluggable cpu units
      supported by qemu. Data returned by the command carries information
      needed to figure out the granularity of hotplug, the necessary cpu type
      name and the topology information.
      
      Note that qemu doesn't specify any particular order of the entries thus
      it's necessary sort them by socket_id, core_id and thread_id to the
      order libvirt expects.
      1213f0f8
    • P
      qemu: monitor: Return struct from qemuMonitor(Text|Json)QueryCPUs · b3180425
      Peter Krempa 提交于
      Prepare to extract more data by returning an array of structs rather than
      just an array of thread ids. Additionally report fatal errors separately
      from qemu not being able to produce data.
      b3180425
  27. 04 8月, 2016 2 次提交
  28. 25 7月, 2016 1 次提交
    • P
      qemu_monitor_json: add support to search QOM device path by device alias · 4a585a88
      Pavel Hrdina 提交于
      Commit ce745914 introduced detection of actual video ram sizes to fix migration
      if QEMU decide to modify the values provided by libvirt.  This works perfectly
      for domains with number of video devices up to two.
      
      If there are more than two video devices in the guest all the secondary devices
      in the XML will have the same memory values.  This is because our current code
      search for QOM device path only by the device type name and all the secondary
      video devices has the same name "qxl".
      
      This patch introduces a new search function that will try to search a QOM device
      path using also device's alias if the alias is available. After that it will
      fallback to the old recursive code if the alias search found no results.
      
      Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1358728Signed-off-by: NPavel Hrdina <phrdina@redhat.com>
      4a585a88
  29. 22 6月, 2016 1 次提交
  30. 09 6月, 2016 1 次提交
    • J
      qemu: Refactor qemuMonitorJSONGetCPUx86Data · 2a8d40f4
      Jiri Denemark 提交于
      This patch splits qemuMonitorJSONGetCPUx86Data in three functions:
      
      - qemuMonitorJSONCheckCPUx86 checks if QEMU supports reporting CPUID
        features for a guest CPU
      
      - qemuMonitorJSONParseCPUx86Features parses CPUID features from a JSON
        array
      
      - qemuMonitorJSONGetCPUx86Data gets the requested guest CPU property
        from QOM and uses qemuMonitorJSONParseCPUx86Features to parse it
      Signed-off-by: NJiri Denemark <jdenemar@redhat.com>
      2a8d40f4
  31. 25 5月, 2016 1 次提交