1. 15 3月, 2016 7 次提交
  2. 14 3月, 2016 1 次提交
  3. 12 3月, 2016 8 次提交
  4. 11 3月, 2016 10 次提交
  5. 10 3月, 2016 5 次提交
  6. 01 3月, 2016 5 次提交
  7. 23 2月, 2016 1 次提交
    • M
      qemuBuildCommandLine: Change the condition for -nographics · 01c31852
      Michal Privoznik 提交于
      There's this check when building command line that whenever
      domain has no graphics card configured we put -nographics onto
      qemu command line. The check is 'if (!def->graphics)'. This
      makes coverity think that def->graphics can be NULL, which is
      true. But later in the code every access to def->graphics is
      guarded by check for def->ngraphics, so no crash occurs. But this
      is something that coverity fails to deduct.
      In order to shut coverity up lets change the condition to
      'if (!def->ngraphics)'.
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      01c31852
  8. 22 2月, 2016 1 次提交
  9. 20 2月, 2016 1 次提交
    • A
      gic: Introduce VIR_GIC_VERSION_DEFAULT alias · d8fc7e05
      Andrea Bolognani 提交于
      GIC v2 is the default, but checking against that specific version when
      we want to know whether the default has been selected is potentially
      error prone; using an alias instead makes it safer.
      d8fc7e05
  10. 18 2月, 2016 1 次提交
    • J
      qemu: Introduce qemuBuildMonitorCommandLine · c7f0069e
      John Ferlan 提交于
      Add new function to manage adding the '-mon' or '-monitor' options to
      the command line removing that task from the mainline qemuBuildCommandLine.
      
      Also adjusted qemuBuildChrChardevStr and qemuBuildChrArgStr to use
      const virDomainChrSourceDef *def rather than virDomainChrSourceDefPtr def.
      Signed-off-by: NJohn Ferlan <jferlan@redhat.com>
      c7f0069e