1. 23 9月, 2014 6 次提交
  2. 22 9月, 2014 1 次提交
    • M
      usb-storage: Fix how legacy init handles option ID clash · 31376776
      Markus Armbruster 提交于
      usb_msd_init() calls qemu_opts_create() with a made-up ID and false
      fail_if_exists.  If the ID already exists, it happily messes up those
      options, then fails drive_new(), because the BlockDriverState with
      that ID already exists, too.
      
      Reproducer: -drive if=none,id=usb0,format=raw -usbdevice disk:tmp.qcow2
      
      Pass true fail_if_exists to qemu_opts_create(), and if it fails, try
      the next made-up ID.
      
      The reproducer now succeeds, and creates an usb-storage device with ID
      usb1.
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      31376776
  3. 20 9月, 2014 2 次提交
  4. 19 9月, 2014 15 次提交
  5. 18 9月, 2014 1 次提交
  6. 17 9月, 2014 8 次提交
  7. 16 9月, 2014 5 次提交
  8. 15 9月, 2014 2 次提交
    • P
      Merge remote-tracking branch 'remotes/kraxel/tags/pull-console-20140915-1' into staging · 16ab5046
      Peter Maydell 提交于
      Fix pixman build failure.
      
      # gpg: Signature made Mon 15 Sep 2014 07:15:11 BST using RSA key ID D3E87138
      # gpg: Good signature from "Gerd Hoffmann (work) <kraxel@redhat.com>"
      # gpg:                 aka "Gerd Hoffmann <gerd@kraxel.org>"
      # gpg:                 aka "Gerd Hoffmann (private) <kraxel@gmail.com>"
      
      * remotes/kraxel/tags/pull-console-20140915-1:
        configure: check for pixman-1 version
        pixman: update internal copy to pixman-0.32.6
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      16ab5046
    • H
      configure: check for pixman-1 version · 236f282c
      Hu Tao 提交于
      commit a93a3af9 introduces use of PIXMAN_TYPE_RGBA, but it's only available
      in pixman >= 0.21.8. If pixman doesn't meet the version requirement, qemu
      will fail to build with following message:
      
      qemu/ui/qemu-pixman.c: In function ‘qemu_pixelformat_from_pixman’:
      qemu/ui/qemu-pixman.c:42: error: ‘PIXMAN_TYPE_RGBA’ undeclared (first use in this function)
      qemu/ui/qemu-pixman.c:42: error: (Each undeclared identifier is reported only once
      qemu/ui/qemu-pixman.c:42: error: for each function it appears in.)
      
      This patch fixes the problem by checking the pixman version.
      Signed-off-by: NHu Tao <hutao@cn.fujitsu.com>
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      236f282c