1. 05 8月, 2015 3 次提交
    • A
      cpu: Rename {powerpc,ppc} => ppc64 (filesystem) · ef770f01
      Andrea Bolognani 提交于
      The driver only supports VIR_ARCH_PPC64 and VIR_ARCH_PPC64LE.
      
      Just shuffling files around and updating the build system
      accordingly. No functional changes.
      ef770f01
    • J
      conf: Resolve Coverity FORWARD_NULL · a16871fe
      John Ferlan 提交于
      The recent changes to perform SCSI device address checks during the
      post parse callbacks ran afoul of the Coverity checker since the changes
      assumed that the 'xmlopt' parameter to virDomainDeviceDefPostParse
      would be non NULL (commit id 'ca2cf74e'); however, what was missed
      is there was an "if (xmlopt &&" check being made, so Coverity believed
      that it could be possible for a NULL 'xmlopt'.
      
      Checking the various calling paths seemingly disproves that. If called
      from virDomainDeviceDefParse, there were two other possible calls that
      would end up dereffing, so that path could not be NULL. If called via
      virDomainDefPostParseDeviceIterator via virDomainDefPostParse there
      are two callers (virDomainDefParseXML and qemuParseCommandLine)
      which deref xmlopt either directly or through another call.
      
      So I'm removing the check for non-NULL xmlopt.
      a16871fe
    • L
      virsh: fix domfsinfo output in quiet mode · ee6160b5
      Luyao Huang 提交于
      https://bugzilla.redhat.com/show_bug.cgi?id=1250287
      
      When run domfsinfo in quiet mode, we cannot get any
      useful information (just get \n), this is because
      we didn't use vshPrint to print useful information.
      Signed-off-by: NLuyao Huang <lhuang@redhat.com>
      ee6160b5
  2. 04 8月, 2015 14 次提交
  3. 03 8月, 2015 13 次提交
  4. 31 7月, 2015 2 次提交
  5. 30 7月, 2015 3 次提交
  6. 29 7月, 2015 2 次提交
  7. 27 7月, 2015 3 次提交
    • D
      remote: fix typo in remoteDomainOpenGraphicsFD · afe69e65
      Daniel P. Berrange 提交于
      The remoteDomainOpenGraphicsFD method was using the wrong RPC
      arg struct remote_domain_open_graphics_args instead of
      remote_domain_open_graphics_fd_args. Fortunately both structs
      had identical contents so there was no functional bug, but to
      avoid confusing future maintainers, we should fix it.
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      afe69e65
    • M
      admin: Tiny cleanups · 7868f017
      Martin Kletzander 提交于
      First hunk changes the use of srcdir to top_srcdir so it complies with
      other rules in the Makefile.  Second one removes the need of
      remote_protocol.h in admin_protocol.h as it was suggested and worked in,
      but this one line was missed apparently.  Last one just removes the
      'remote' naming from admin protocol specification, just so it's cleaner.
      Signed-off-by: NMartin Kletzander <mkletzan@redhat.com>
      7868f017
    • M
      qemu: Check for iotune_max support properly · ba167186
      Martin Kletzander 提交于
      Commit d506a51a meant to check for
      QEMU_CAPS_DRIVE_IOTUNE_MAX, but checked for QEMU_CAPS_DRIVE_IOTUNE
      instead.  That's clearly visible from the diff, but it got in.  Because
      of that, we were supplying information unknown for QEMU if it wasn't new
      enough and we couldn't even properly handle the error, leading to
      "Unexpected error".  Also iops_size came at the same time with all the
      other "_max" options, so check whether we're not setting that either if
      QEMU_CAPS_DRIVE_IOTUNE_MAX is not supported.
      
      Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1224053Signed-off-by: NMartin Kletzander <mkletzan@redhat.com>
      ba167186