1. 20 9月, 2017 37 次提交
  2. 19 9月, 2017 3 次提交
    • P
      Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging · 7ec6a364
      Peter Maydell 提交于
      * warning improvements (Alistair)
      * KVM code cleanup (David)
      * scsi-block support for rerror/werror (Fam)
      * support for >64 vCPUs in Windows (Gonglei)
      * SCSI fix (Hannes)
      * SSE bugfixes (Joseph)
      * SmartOS compilation fixes (Kamil)
      * Hyper-V frequency MSR support (Ladi)
      * move more files to accel/tcg (Philippe, Thomas)
      * multiboot validation (PJP)
      * virtqueue size configuration for virtio-scsi (Richard)
      * Hyper-V header cleanup (Roman)
      * Maintainer email update (Guangrong)
      * checkpatch.pl --branch (Daniel), fixes (Greg)
      * introducing scsi/ (me)
      
      # gpg: Signature made Tue 19 Sep 2017 15:21:26 BST
      # gpg:                using RSA key 0xBFFBD25F78C7AE83
      # gpg: Good signature from "Paolo Bonzini <bonzini@gnu.org>"
      # gpg:                 aka "Paolo Bonzini <pbonzini@redhat.com>"
      # Primary key fingerprint: 46F5 9FBD 57D6 12E7 BFD4  E2F7 7E15 100C CD36 69B1
      #      Subkey fingerprint: F133 3857 4B66 2389 866C  7682 BFFB D25F 78C7 AE83
      
      * remotes/bonzini/tags/for-upstream: (51 commits)
        docker: fix creation of archives
        default-configs: Replace $(and ...) with $(call land, ...)
        osdep.h: Prohibit disabling assert() in supported builds
        checkpatch: add hwaddr to @typeList
        accel/hax: move hax-stub.c to accel/stubs/
        target/i386: fix "info mem" for LA57 mode
        scripts: let checkpatch.pl process an entire GIT branch
        update-linux-headers: prepare for hyperv.h removal
        hyperv: add header with protocol definitions
        i386/cpu/hyperv: support over 64 vcpus for windows guests
        Convert remaining single line fprintf() to warn_report()
        Makefile: Remove libqemustub.a
        ptimer-test: do not link to libqemustub.a/libqemuutil.a
        target/mips: Convert VM clock update prints to warn_report
        General warn report fixups
        Convert multi-line fprintf() to warn_report()
        Convert single line fprintf(.../n) to warn_report()
        Convert remaining error_report() to warn_report()
        hw/i386: Improve some of the warning messages
        test-qga: add missing qemu-ga tool dependency
        ...
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      7ec6a364
    • P
      docker: fix creation of archives · 7437866b
      Paolo Bonzini 提交于
      The pixman submodule does not exist anymore, and its removal broke
      docker-based tests.  Fix it.
      
      Cc: Fam Zheng <famz@redhat.com>
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      7437866b
    • T
      default-configs: Replace $(and ...) with $(call land, ...) · d321e6d5
      Thomas Huth 提交于
      Using $(and ...) is dangerous here: It only works as long as the first
      argument is set to 'y' or completely unset. It does not work if the
      first argument is set to 'n' for example. Let's use the "land" make
      function instead which has been written explicitely for this purpose.
      Signed-off-by: NThomas Huth <thuth@redhat.com>
      Message-Id: <1505759538-15365-1-git-send-email-thuth@redhat.com>
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      d321e6d5