1. 01 9月, 2010 2 次提交
    • S
      Explicitly pass uml_dir argument to user-mode-linux · 0a58eed3
      Soren Hansen 提交于
      uml_dir overrides user-mode-linux's default of ~/.uml. This is needed
      for a couple of different reasons:
      
      libvirt expects this to default to virGetUserDirectory(geteuid()) +
      '/.uml'. However, user-mode-linux actually uses the HOME environment
      variable to determine where to look for the uml sockets, but if running
      libvirtd under sudo (which I routinely do during development), $HOME is
      pointing at my user's homedir, while my euid is 0, so libvirt looks in
      /root.
      
      Also (and this was my actual motivation for this patch), if HOME isn't
      set at all, user-mode-linux utterly fails. Looking at the code, it seems
      it's meant to emit a warning, but alas, it doesn't for some reason.
      If running libvirtd from upstart, HOME is not set, so any system using
      upstart will need this change.
      Signed-off-by: NSoren Hansen <soren@linux2go.dk>
      0a58eed3
    • E
      maint: track moved file · deaa9e3e
      Eric Blake 提交于
      * daemon/.gitignore: Move libvirt-guests.init...
      * tools/.gitignore: ...to its new location.
      deaa9e3e
  2. 31 8月, 2010 4 次提交
  3. 27 8月, 2010 3 次提交
  4. 25 8月, 2010 5 次提交
  5. 24 8月, 2010 11 次提交
    • D
      Fix handling of sparse NUMA topologies · 628c9357
      Daniel P. Berrange 提交于
      When finding a sparse NUMA topology, libnuma will return ENOENT
      the first time it is invoked. On subsequent invocations it
      will return success, but with an all-1's CPU mask. Check for
      this, to avoid polluting the capabilities XML with 4096 bogus
      CPUs
      
      * src/nodeinfo.c: Check for all-1s CPU mask
      628c9357
    • D
      Log return value for virConnectGetCapabilities · ac7baddf
      Daniel P. Berrange 提交于
      Enabling debug doesn't show the capabilities XML for a connection.
      Add an extra debug statement for the return value
      
      * src/libvirt.c: Enable debug logging of capabilities XML
      ac7baddf
    • D
      Try harder to send RPC error message back to client · 97d982a7
      Daniel P. Berrange 提交于
      When failing to serialize the normal RPC reply, try harder to
      send a error message back to the client, instead of immediately
      closing the connection.
      
      * daemon/dispatch.c: Improve error messages when RPC reply
        can not be sent
      97d982a7
    • D
      Add explicit warning messages when failing to serialize to XDR · 677c834c
      Daniel P. Berrange 提交于
      When libvirtd fails to serialize a message to XDR the client
      connection is terminated immediately. To enable this to be
      diagnosed, log the message which caused the problem on the
      server
      
      * daemon/dispatch.c: Log XDR serialization failures
      677c834c
    • S
      Allow chardev of type 'file' for UML domains. · 21dcce53
      Soren Hansen 提交于
      Like the comment suggested, we just open the file and pass the file
      descriptor to uml. The input "stream" is set to "null", since I couldn't
      find any useful way to actually use a file for input for a chardev and
      this also mimics what e.g. QEmu does internally.
      Signed-off-by: NSoren Hansen <soren@linux2go.dk>
      21dcce53
    • M
      esx: Improve object-by-type lookup performance · 8c48743b
      Matthias Bolte 提交于
      Instead of using one big traversal spec for lookup use a set of
      more fine grained traversal specs that are selected based on the
      actual needs of the lookup.
      
      This gives up to 20% speedup for certain operations like domain
      listing due to less HTTP(S) traffic.
      8c48743b
    • J
      xen tests: Fix PV-VFB tests with RHEL-5 API · bb6543aa
      Jiri Denemark 提交于
      RHEL-5 Xen doesn't support the old style vnc configuration. In sexpr, we
      can't really check it with rhel5-api turned on. However, for XM
      configuration files it's sufficient to use cfg version 1 instead of 2.
      bb6543aa
    • J
      xml2sexprtest: Remove graphics from unrelated tests · e27277eb
      Jiri Denemark 提交于
      This caused unnecessary make check failures when libvirt is configured
      --with-rhel5-api
      e27277eb
    • J
      xen tests: Fix missing "type ioemu" with rhel5-api · 20311a9a
      Jiri Denemark 提交于
      The most common cause of errors with rhel5-api turn on was missing
      "(type ioemu)" in sexpr or its equivalent in XM configuration file. This
      happens because the presence of that part in sexpr (or cfg) depends on
      xen version the host is running. Let's avoid it by explicitly specifying
      interface model which ensures "type ioemu" will always be emitted.
      
      This patch adds
      
          <model type='e1000'/>
      
      withing the interface element in all affected xml files. And
      
          (model 'e1000')
      
      to all corresponding sexpr files with similar fix to cfg files. Such
      configuration works regardless on Xen version.
      20311a9a
    • J
      nodeinfotest: Print libvirt error on failure · 0eb009d2
      Jiri Denemark 提交于
      If linuxNodeInfoCPUPopulate() fails, the test would just print "FAILED"
      which is not very informative. It's better to print the real error.
      0eb009d2
    • E
      xenapi: support xenapi 5.6.0 headers · 5bf86904
      Eric Blake 提交于
      * src/xenapi/xenapi_driver.c (xenapiDomainGetInfo): Avoid using
      XEN_VM_POWER_STATE_UNKNOWN, which disappeared in newer xenapi.
      * src/xenapi/xenapi_utils.c (mapPowerState): Likewise.
      5bf86904
  6. 23 8月, 2010 1 次提交
    • D
      Add support for -enable-kqemu flag · 6e44ec7a
      Daniel P. Berrange 提交于
      Previously QEMU enabled KQEMU by default and had -no-kqemu.
      0.11.x switched to requiring -enable-kqemu. 0.12.x dropped
      kqemu entirely. This patch adds support for -enable-kqemu
      so 0.11.x works. It replaces a huge set of if() with a
      switch() to make the code a bit more readable.
      
      * src/qemu/qemu_conf.c, src/qemu/qemu_conf.h: Support
        -enable-kqemu
      6e44ec7a
  7. 21 8月, 2010 4 次提交
  8. 20 8月, 2010 10 次提交