1. 24 6月, 2016 3 次提交
  2. 20 4月, 2016 1 次提交
  3. 04 4月, 2016 2 次提交
  4. 31 3月, 2016 1 次提交
    • M
      qemuProcessVerifyGuestCPU: Avoid coverity false positive · 382ea24b
      Michal Privoznik 提交于
      We use _LAST items in enums to mark the last position in given
      enum. Now, if and enum is passed to switch(), compiler checks
      that all the values from enum occur in 'case' enumeration.
      Including _LAST. But coverity spots it's a dead code. And it
      really is. So to resolve this, we tend to put a comment just
      above 'case ..._LAST' notifying coverity that we know this is a
      dead code but we want to have it that way.
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      382ea24b
  5. 30 3月, 2016 2 次提交
    • P
      qemu_process: add check for hyperv features · 95bbe4bf
      Pavel Hrdina 提交于
      Commit 7068b56c introduced several hyperv features.  Not all hyperv
      features are supported by old enough kernels and we shouldn't allow to
      start a guest if kernel doesn't support any of the hyperv feature.
      
      There is one exception, for backward compatibility we cannot error out
      if one of the RELAXED, VAPIC or SPINLOCKS isn't supported, for the same
      reason we ignore invtsc, to not break restoring saved domains with older
      libvirt.
      Signed-off-by: NPavel Hrdina <phrdina@redhat.com>
      95bbe4bf
    • P
      qemu_process: skip only cpu features · e7cc2e3b
      Pavel Hrdina 提交于
      This check is there to allow restore saved domain with older libvirt
      where we included invtsc by default for host-passthrough model.  Don't
      skip the whole function, but only the part that checks for invtsc.
      Signed-off-by: NPavel Hrdina <phrdina@redhat.com>
      e7cc2e3b
  6. 29 3月, 2016 3 次提交
  7. 23 3月, 2016 1 次提交
  8. 22 3月, 2016 7 次提交
  9. 21 3月, 2016 4 次提交
  10. 10 3月, 2016 1 次提交
  11. 08 3月, 2016 1 次提交
    • J
      qemu: Don't explicitly stop CPUs after migration · 315808e9
      Jiri Denemark 提交于
      With a very old QEMU which doesn't support events we need to explicitly
      call qemuMigrationSetOffline at the end of migration to update our
      internal state. On the other hand, if we talk to QEMU using QMP, we
      should just wait for the STOP event and let the event handler update the
      state and trigger a libvirt event.
      Signed-off-by: NJiri Denemark <jdenemar@redhat.com>
      315808e9
  12. 01 3月, 2016 6 次提交
  13. 22 2月, 2016 1 次提交
  14. 19 2月, 2016 5 次提交
  15. 17 2月, 2016 2 次提交