1. 31 10月, 2012 1 次提交
  2. 28 10月, 2012 1 次提交
  3. 27 10月, 2012 2 次提交
  4. 22 10月, 2012 1 次提交
  5. 20 10月, 2012 1 次提交
  6. 19 10月, 2012 1 次提交
  7. 12 10月, 2012 2 次提交
  8. 09 10月, 2012 1 次提交
  9. 08 10月, 2012 1 次提交
    • G
      spice: raise requirement to 0.12 · 67be6726
      Gerd Hoffmann 提交于
      With the next qemu version (1.3) we are going to bump the qxl device
      revision to 4.  The new features available require a recent spice-server
      version, so raise up the bar.  Otherwise we would end up with different
      qxl revisions depending on the spice-server version installed, which
      would be a major PITA when it comes to compat properties.
      
      Clear out a big bunch of #ifdefs which are not needed any more.
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      67be6726
  10. 06 10月, 2012 1 次提交
  11. 05 10月, 2012 2 次提交
  12. 28 9月, 2012 1 次提交
  13. 26 9月, 2012 2 次提交
    • H
      usb-redir: Adjust pkg-config check for usbredirparser .pc file rename (v2) · 8b626aa7
      Hans de Goede 提交于
      The usbredir 0.5 release introduced the new API for 64 bit packet ids, but
      it kept the libusbredirparser.pc name as is, meaning that older versions of
      qemu will still have their pkg-config check for usbredirparser fulfilled,
      and build with the usb-redir device. Due to the API change there will be
      some compiler warnings, but the build will succeed, however the usb-redir
      device will be broken on 32 bit machines.
      
      To solve this a new usbredir-0.5.2 release is coming, which renames the
      libusbredirparser.pc file to libusbredirparser-0.5.pc, so that it will no
      longer fulfill the pkg-config check of the qemu-1.2 and older releases,
      stopping the (silent) breakage. This patch adjusts qemu master's configure
      to properly detect the new usbredir release.
      
      Changes in v2:
      -Not only use the new .pc name in the check but also when getting cflags
       and libs!
      Signed-off-by: NHans de Goede <hdegoede@redhat.com>
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      8b626aa7
    • S
      configure: Allow builds without any system or user emulation · 8bdd3d49
      Stefan Weil 提交于
      The old code aborted configure when no emulation target was selected.
      Even after removing the 'exit 1', it tried to read from STDIN
      when QEMU was configured with
      
          configure' '--disable-user' '--disable-system'
      
      This is fixed here.
      Signed-off-by: NStefan Weil <sw@weilnetz.de>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      8bdd3d49
  14. 22 9月, 2012 3 次提交
  15. 17 9月, 2012 1 次提交
  16. 16 9月, 2012 9 次提交
  17. 15 9月, 2012 1 次提交
  18. 14 9月, 2012 1 次提交
  19. 13 9月, 2012 2 次提交
  20. 11 9月, 2012 3 次提交
  21. 10 9月, 2012 2 次提交
  22. 09 9月, 2012 1 次提交
    • C
      qemu: Use valgrind annotations to mark kvm guest memory as defined · 62fe8331
      Christian Borntraeger 提交于
      valgrind with kvm produces a big amount of false positives regarding
      "Conditional jump or move depends on uninitialised value(s)". This
      happens because the guest memory is allocated with qemu_vmalloc which
      boils down posix_memalign etc. This function is (correctly) considered
      by valgrind as returning undefined memory.
      
      Since valgrind is based on jitting code, it will not be able to see
      changes made by the guest to guest memory if this is done by KVM_RUN,
      thus keeping most of the guest memory undefined.
      
      Now lots of places in qemu will then use guest memory to change behaviour.
      To avoid the flood of these messages, lets declare the whole guest
      memory as defined. This will reduce the noise and allows us to see real
      problems.
      
      In the future we might want to make this conditional, since there
      is actually something that we can use those false positives for:
      These messages will point to code that depends on guest memory, so
      we can use these backtraces to actually make an audit that is focussed
      only at those code places. For normal development we dont want to
      see those messages, though.
      Signed-off-by: NChristian Borntraeger <borntraeger@de.ibm.com>
      Signed-off-by: NAvi Kivity <avi@redhat.com>
      62fe8331