1. 24 8月, 2016 2 次提交
    • P
      virsh: use vshError consistently after virBufferError checks · 4362ff43
      Pino Toscano 提交于
      If virBufferError() reports an error, then vshError() is needed to
      report the error situation instead of a simple vshError().
      4362ff43
    • P
      virsh: respect -q/--quiet more · b620bdee
      Pino Toscano 提交于
      Turn various vshPrint() informative messages into vshPrintExtra(), so
      they are not printed when requesting the quiet mode; neither XML/info
      outputs nor the results of commands are affected.
      Also change the expected outputs of the virsh-undefine test, since virsh
      is invoked in quiet mode there.
      
      Some informative messages might still be converted (and thus silenced
      when in quiet mode), but this is an improvements nonetheless.
      
      Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1358179
      b620bdee
  2. 02 8月, 2016 3 次提交
  3. 22 6月, 2016 3 次提交
  4. 21 6月, 2016 1 次提交
  5. 20 6月, 2016 1 次提交
  6. 10 6月, 2016 1 次提交
  7. 09 6月, 2016 1 次提交
  8. 08 6月, 2016 1 次提交
  9. 09 5月, 2016 1 次提交
  10. 04 5月, 2016 2 次提交
  11. 30 4月, 2016 1 次提交
  12. 21 4月, 2016 2 次提交
  13. 15 4月, 2016 1 次提交
  14. 14 4月, 2016 1 次提交
  15. 13 4月, 2016 1 次提交
    • P
      Add VIR_DOMAIN_EVENT_ID_DEVICE_REMOVAL_FAILED event · 5be12071
      Peter Krempa 提交于
      Since we didn't opt to use one single event for device lifecycle for a
      VM we are missing one last event if the device removal failed. This
      event will be emitted once we asked to eject the device but for some
      reason it is not possible.
      5be12071
  16. 01 4月, 2016 1 次提交
  17. 31 3月, 2016 4 次提交
  18. 29 3月, 2016 5 次提交
  19. 21 3月, 2016 4 次提交
  20. 17 3月, 2016 1 次提交
    • N
      migration: add target peer disks port · f486cb5e
      Nikolay Shirokovskiy 提交于
      Some hypervisors (namely qemu) can have a separate connecton for
      non-shared disks migration of active domains. Currently we have
      no means to control the port of such a connection. At the same
      time we have options to control port of memory migration traffic
      (thru migration uri) as well as interfaces that target server
      is bound to for incoming migration (thru VIR_MIGRATE_PARAM_LISTEN_ADDRESS).
      Let's add the option for setting disks port too.
      Signed-off-by: NNikolay Shirokovskiy <nshirokovskiy@virtuozzo.com>
      f486cb5e
  21. 16 3月, 2016 1 次提交
  22. 09 3月, 2016 1 次提交
    • P
      virsh: vcpupin: Ask for pinning info for all vCPUs · e7e6980d
      Peter Krempa 提交于
      The API docs state that the API queries pinning info for all vCPUs and
      thus we should allocate the bitmap even for the inactive ones.
      
      The API will currently return bitmap only for the active vCPUs but that
      will change in the future.
      e7e6980d
  23. 08 3月, 2016 1 次提交
    • J
      Introduce job completed event · f2893001
      Jiri Denemark 提交于
      The VIR_DOMAIN_EVENT_ID_JOB_COMPLETED event will be triggered once a job
      (such as migration) finishes and it will contain statistics for the job
      as one would get by calling virDomainGetJobStats. Thanks to this event
      it is now possible to get statistics of a completed migration of a
      transient domain on the source host.
      Signed-off-by: NJiri Denemark <jdenemar@redhat.com>
      f2893001