1. 26 11月, 2015 1 次提交
    • M
      makefile: fix qemu-ga make install for --disable-tools · 68aa262a
      Michael Roth 提交于
      ab59e3ec introduced a fix for `make install` on w32 that involved
      filtering out qemu-ga from $TOOLS install recipe so that we could
      append $(EXESUF) to it before attempting to install the binary
      via install-prog function.
      
      install-prog takes a list of binaries to install to a particular
      directory. If the list is empty it breaks. We guard against this
      by ensuring $TOOLS is not empty prior to calling.
      
      However, ab59e3ec introduces extra filtering after this check which
      can still result on us attempting to call install-prog with an
      empty list of binaries. In particular, this occurs if we
      build with the --disable-tools configure option, which results
      in qemu-ga being the only member of $TOOLS.
      
      Fix this by doing a simple s/qemu-ga/qemu-ga$(EXESUF)/ pass through
      $TOOLS instead of filtering out qemu-ga to handle it seperately.
      Reported-by: NSteve Ellcey <sellcey@imgtec.com>
      Cc: Stefan Weil <sw@weilnetz.de>
      Signed-off-by: NMichael Roth <mdroth@linux.vnet.ibm.com>
      68aa262a
  2. 25 11月, 2015 17 次提交
  3. 24 11月, 2015 11 次提交
  4. 23 11月, 2015 3 次提交
  5. 21 11月, 2015 2 次提交
  6. 20 11月, 2015 2 次提交
    • P
      Merge remote-tracking branch 'remotes/afaerber/tags/qom-devices-for-peter' into staging · 28c3e6ee
      Peter Maydell 提交于
      QOM infrastructure fixes and device conversions
      
      * Fix for properties on objects > 4 GiB
      * Performance improvements for QOM property handling
      * Assertion cleanups
      * MAINTAINERS additions
      
      # gpg: Signature made Thu 19 Nov 2015 14:32:16 GMT using RSA key ID 3E7E013F
      # gpg: Good signature from "Andreas Färber <afaerber@suse.de>"
      # gpg:                 aka "Andreas Färber <afaerber@suse.com>"
      
      * remotes/afaerber/tags/qom-devices-for-peter:
        MAINTAINERS: Add check-qom-{interface,proplist} to QOM
        qom: Clean up assertions to display values on failure
        qom: Replace object property list with GHashTable
        qom: Add a test case for complex property finalization
        net: Convert net filter code to use object property iterators
        ppc: Convert spapr code to use object property iterators
        vl: Convert machine help code to use object property iterators
        qmp: Convert QMP code to use object property iterators
        qom: Introduce ObjectPropertyIterator struct for iteration
        qdev: Change Property::offset field to ptrdiff_t type
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      28c3e6ee
    • P
      Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging · 348c3270
      Peter Maydell 提交于
      vhost, pc: fixes for 2.5
      
      Fixes all over the place.
      
      This also re-enables a test we disabled in 2.5 cycle
      now that there's a way not to get a warning from it.
      Signed-off-by: NMichael S. Tsirkin <mst@redhat.com>
      
      # gpg: Signature made Thu 19 Nov 2015 13:27:43 GMT using RSA key ID D28D5469
      # gpg: Good signature from "Michael S. Tsirkin <mst@kernel.org>"
      # gpg:                 aka "Michael S. Tsirkin <mst@redhat.com>"
      
      * remotes/mst/tags/for_upstream:
        exec: silence hugetlbfs warning under qtest
        tests: re-enable vhost-user-test
        acpi: fix buffer overrun on migration
        vhost-user: fix log size
        vhost-user: ignore qemu-only features
        specs/vhost-user: fix spec to match reality
        tests/vhost-user-bridge: implement logging of dirty pages
        i440fx: print an error message if user tries to enable iommu
        q35: Check propery to determine if iommu is set
        vhost-user: start/stop all rings
        vhost-user: print original request on error
        vhost-user-test: support VHOST_USER_SET_VRING_ENABLE
        vhost-user: update spec description
        vhost: don't send RESET_OWNER at stop
        vhost: let SET_VRING_ENABLE message depends on protocol feature
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      348c3270
  7. 19 11月, 2015 4 次提交