1. 19 7月, 2016 1 次提交
  2. 18 7月, 2016 18 次提交
  3. 15 7月, 2016 6 次提交
  4. 14 7月, 2016 4 次提交
    • A
      tests: command: Fix build on ppc64/aarch64 · 5bcbf724
      Andrea Bolognani 提交于
      Commit ca10bb04 introduced a new test that fails to build
      on at least some architectures:
      
        commandtest.c: In function 'test25':
        commandtest.c:1121:5: error: comparison is always true due to
                              limited range of data type [-Werror=type-limits]
          if (rv >= 0) {
          ^
      
      Change the type of 'rv' from char to int, which is the proper
      return type for virCommandExec() anyway.
      5bcbf724
    • A
      spec: Fix indentation · 55d8daa0
      Andrea Bolognani 提交于
      Commit ffc49e57 broke syntax-check:
      
        cppi: libvirt.spec.in: line 622: not properly indented
        cppi: libvirt.spec.in: line 624: not properly indented
        cppi: libvirt.spec.in: line 640: not properly indented
        cppi: libvirt.spec.in: line 642: not properly indented
        maint.mk: incorrect preprocessor indentation
        cfg.mk:697: recipe for target 'sc_spec_indentation' failed
      
      Indent the new conditionals properly.
      55d8daa0
    • M
      conf: Make really sure we don't access non-existing vCPUs again · 05f89657
      Martin Kletzander 提交于
      MinGW complained that we might be dereferencing a NULL pointer.  While
      that can't be true, the logic certainly allows for that.
      
      ../../src/conf/domain_conf.c: In function 'virDomainDefPostParse':
      ../../src/conf/domain_conf.c:4224:18: error: potential null pointer dereference [-Werror=null-dereference]
               if (!vcpu->online && vcpu->cpumask) {
                    ~~~~^~~~~~~~
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      05f89657
    • D
      libvirt.spec.in: require systemd-container on >= f24 · ffc49e57
      Daniel P. Berrange 提交于
      The systemd-machined tools libvirt uses were split into a
      systemd-container RPM. Without depending on this, libvirt
      may silently fallback to the non-systemd cgroup impl which
      is not desirable.
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      ffc49e57
  5. 13 7月, 2016 7 次提交
  6. 12 7月, 2016 4 次提交