1. 21 4月, 2016 6 次提交
  2. 20 4月, 2016 30 次提交
  3. 19 4月, 2016 4 次提交
    • C
      qemu: command: drop redundant min_guarantee check · 153903ec
      Cole Robinson 提交于
      We already reject a VM with min_guarantee early in the VM startup
      in qemuProcessStartValidate
      153903ec
    • C
      qemu: Remove redundant DomainObjIsActive calls · b0a2ba24
      Cole Robinson 提交于
      The common idiom in the driver API implementations is roughly:
      
      - ACL check
      - BeginJob (if needed)
      - AgentAvailable (if needed)
      - !IsActive
      
      A few calls had an extra !IsActive before BeginJob, which doesn't
      seem to serve much use. Drop them
      b0a2ba24
    • C
      lxc: explicitly error on interface type=ethernet · 27f2b747
      Cole Robinson 提交于
      It isn't implemented and does not work:
      
      error: internal error: guest failed to start: /usr/lib/libvirt/libvirt_lxc: option '--veth' requires an argument
      syntax: /usr/lib/libvirt/libvirt_lxc [OPTIONS] ...
      
      We previously threw an explicit error, but this changed in
      22cff52a , which I suspect was
      untested for LXC
      27f2b747
    • M
      Include sysmacros.h where needed · aca4d72b
      Martin Kletzander 提交于
      So in glibc-2.23 sys/sysmacros.h is no longer included from sys/types.h
      and we don't build because of the usage of major/minor/makedev macros.
      Autoconf already has AC_HEADER_MAJOR macro that check where exactly
      these functions/macros are defined, so let's use that.
      Signed-off-by: NMartin Kletzander <mkletzan@redhat.com>
      aca4d72b