1. 27 11月, 2015 1 次提交
    • G
      virtlogd: use %llu to print 64bit types · 35b2a2d9
      Guido Günther 提交于
      Otherwise we fail on 32bit with:
      
      CC     logging/virtlogd-log_daemon_dispatch.o
      logging/log_daemon_dispatch.c: In function 'virLogManagerProtocolDispatchDomainReadLogFile':
      logging/log_daemon_dispatch.c:120:9: error: format '%zu' expects argument of type 'size_t', but argument 7 has type 'uint64_t' [-Werror=format]
      35b2a2d9
  2. 26 11月, 2015 18 次提交
  3. 25 11月, 2015 17 次提交
  4. 24 11月, 2015 4 次提交
    • P
      qemu: monitor: Explain logic of qemuMonitorGetCPUInfo · 0076d8db
      Peter Krempa 提交于
      The return value has non-obvious semantics. Document it.
      0076d8db
    • P
      Post-release version bump to 1.3.0 · 3d0c59e5
      Pavel Hrdina 提交于
      Signed-off-by: NPavel Hrdina <phrdina@redhat.com>
      3d0c59e5
    • P
      conf: Drop useless check when parsing cpu scheduler info · 5ba01683
      Peter Krempa 提交于
      The checked predicate is a deduction from the following checks:
      
      1) maximum cpu id is checked for every parsed <vcpusched> element
      2) the resulting bitmaps are checked for overlaps
      3) there has to be at least one cpu per <vcpusched>
      
      From the above checks we can indeed deduce that if we have one
      <vcpusched> element per CPU we will have at most 'maxvcpus' of them.
      
      Drop the explicit check since it's redundant.
      5ba01683
    • J
      qemu: pass the asyncJob to qemuProcessStartCPUs · 668a0fef
      Ján Tomko 提交于
      Now that new domains are started inside a QEMU_ASYNC_JOB_START job,
      we need to pass it down to qemuProcessStartCPUs too.
      
      This removes the warning:
      qemuDomainObjEnterMonitorInternal:1750 : This thread seems to be the
      async job owner; entering monitor without asking for a nested job is
      dangerous
      
      Introduced by commit 04c721f2, before that this code path was only
      executed with QEMU_ASYNC_JOB_NONE.
      
      (This code is not executed on migration, because qemuMigrationPrepareAny
       sets the VIR_QEMU_PROCESS_START_PAUSED flag.)
      668a0fef