1. 07 8月, 2015 1 次提交
  2. 06 8月, 2015 6 次提交
  3. 05 8月, 2015 6 次提交
    • P
      qemu: Forbid image pre-creation for non-shared storage migration · 6da3b694
      Peter Krempa 提交于
      Libvirt doesn't reliably know the location of the backing chain when
      pre-creating images for non-shared migration. This isn't a problem for
      full copy, but incremental copy requires the information.
      
      Forbid pre-creating the image in cases where incremental migration is
      required. This limitation can perhaps be lifted once libvirt will fully
      support loading of backing chain information from the XML.
      
      Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1249587
      6da3b694
    • A
      cpu: Indentation changes in the ppc64 driver · 4ff3e939
      Andrea Bolognani 提交于
      4ff3e939
    • A
      cpu: Rename {powerpc,ppc} => ppc64 (internal symbols) · 3d151589
      Andrea Bolognani 提交于
      Update the names of the symbols used internally by the driver.
      
      No functional changes.
      3d151589
    • A
      cpu: Rename {powerpc,ppc} => ppc64 (exported symbols) · e89733c4
      Andrea Bolognani 提交于
      Only the symbols exported by the driver have been updated;
      the driver implementation itself still uses the old names
      internally.
      
      No functional changes.
      e89733c4
    • 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
  4. 04 8月, 2015 12 次提交
  5. 03 8月, 2015 6 次提交
  6. 31 7月, 2015 2 次提交
  7. 30 7月, 2015 3 次提交
  8. 29 7月, 2015 2 次提交
  9. 27 7月, 2015 2 次提交
    • 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