[Qemu-devel] [PULL 00/24] Misc patches for 2019-06-03

Paolo Bonzini posted 24 patches 4 years, 10 months ago
Test s390x passed
Test checkpatch passed
Test asan passed
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Test FreeBSD passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/1559581843-3968-1-git-send-email-pbonzini@redhat.com
Maintainers: Jiri Slaby <jslaby@suse.cz>, Richard Henderson <rth@twiddle.net>, Peter Maydell <peter.maydell@linaro.org>, Paolo Bonzini <pbonzini@redhat.com>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Laurent Vivier <lvivier@redhat.com>, Eduardo Habkost <ehabkost@redhat.com>, "Michael S. Tsirkin" <mst@redhat.com>, Jean-Christophe Dubois <jcd@tribudubois.net>, Thomas Huth <thuth@redhat.com>
.patchew.yml                         | 302 +++++++++++++++++++++++++++++++++++
configure                            |  10 --
hw/arm/imx25_pdk.c                   |   9 --
hw/core/machine.c                    |   3 +
hw/i386/pc.c                         |   3 +
hw/i386/pc_q35.c                     |  16 +-
hw/misc/edu.c                        |  32 ++--
include/exec/memory.h                |  17 --
include/hw/boards.h                  |   3 +
include/hw/i386/pc.h                 |   3 +
memory.c                             |   8 -
scripts/checkpatch.pl                |   3 +-
target/i386/cpu.c                    |   3 +
target/i386/cpu.h                    |   1 +
tests/Makefile.include               |  18 +--
tests/ds1338-test.c                  |  45 ++----
tests/libqos/arm-imx25-pdk-machine.c |  92 +++++++++++
tests/libqos/arm-n800-machine.c      |  92 +++++++++++
tests/libqos/i2c-imx.c               |  40 +++--
tests/libqos/i2c-omap.c              |  70 +++++---
tests/libqos/i2c.c                   |  74 ++++++++-
tests/libqos/i2c.h                   |  63 ++++++--
tests/libqos/qgraph.c                |  12 +-
tests/libqos/qgraph.h                |  15 +-
tests/pca9552-test.c                 |  91 ++++-------
tests/qos-test.c                     |  17 +-
tests/test-thread-pool.c             |  32 ++--
tests/tmp105-test.c                  | 112 ++++---------
vl.c                                 |  18 ++-
29 files changed, 889 insertions(+), 315 deletions(-)
create mode 100644 .patchew.yml
create mode 100644 tests/libqos/arm-imx25-pdk-machine.c
create mode 100644 tests/libqos/arm-n800-machine.c
[Qemu-devel] [PULL 00/24] Misc patches for 2019-06-03
Posted by Paolo Bonzini 4 years, 10 months ago
The following changes since commit ad88e4252f09c2956b99c90de39e95bab2e8e7af:

  Merge remote-tracking branch 'remotes/amarkovic/tags/mips-queue-jun-1-2019' into staging (2019-06-03 10:25:12 +0100)

are available in the git repository at:


  git://github.com/bonzini/qemu.git tags/for-upstream

for you to fetch changes up to c87759ce876a7a0b17c2bf4f0b964bd51f0ee871:

  q35: Revert to kernel irqchip (2019-06-03 14:03:03 +0200)

----------------------------------------------------------------
* Revert q35 to kernel irqchip (Alex)
* edu device fixes (Li Qiang)
* cleanups (Marc-André, Peter)
* Improvements to -accel help
* Better support for IA32_MISC_ENABLE MSR (Wanpeng)
* I2C test conversion to qgraph (Paolo)

----------------------------------------------------------------
Alex Williamson (1):
      q35: Revert to kernel irqchip

Li Qiang (3):
      edu: mmio: allow 64-bit access
      edu: mmio: allow 64-bit access in read dispatch
      edu: uses uint64_t in dma operation

Marc-André Lureau (1):
      configure: remove tpm_passthrough & tpm_emulator

Paolo Bonzini (15):
      test-thread-pool: be more reliable
      qgraph: allow extra_device_opts on contains nodes
      qgraph: fix qos_node_contains with options
      libqos: move common i2c code to libqos
      libqos: fix omap-i2c receiving more than 4 bytes
      pca9552-test: do not rely on state across tests
      imx25-pdk: create ds1338 for qtest inside the test
      libqos: split I2CAdapter initialization and allocation
      libqos: convert I2C to qgraph
      libqos: add ARM n800 machine object
      libqos: add ARM imx25-pdk machine object
      tests: convert OMAP i2c tests to qgraph
      tests: convert ds1338-test to qtest
      libqos: i2c: move address into QI2CDevice
      ci: store Patchew configuration in the tree

Peter Xu (2):
      checkpatch: allow SPDX-License-Identifier
      memory: Remove memory_region_get_dirty()

Wainer dos Santos Moschetta (1):
      vl: make -accel help to list enabled accelerators only

Wanpeng Li (1):
      i386: Enable IA32_MISC_ENABLE MWAIT bit when exposing mwait/monitor

 .patchew.yml                         | 302 +++++++++++++++++++++++++++++++++++
 configure                            |  10 --
 hw/arm/imx25_pdk.c                   |   9 --
 hw/core/machine.c                    |   3 +
 hw/i386/pc.c                         |   3 +
 hw/i386/pc_q35.c                     |  16 +-
 hw/misc/edu.c                        |  32 ++--
 include/exec/memory.h                |  17 --
 include/hw/boards.h                  |   3 +
 include/hw/i386/pc.h                 |   3 +
 memory.c                             |   8 -
 scripts/checkpatch.pl                |   3 +-
 target/i386/cpu.c                    |   3 +
 target/i386/cpu.h                    |   1 +
 tests/Makefile.include               |  18 +--
 tests/ds1338-test.c                  |  45 ++----
 tests/libqos/arm-imx25-pdk-machine.c |  92 +++++++++++
 tests/libqos/arm-n800-machine.c      |  92 +++++++++++
 tests/libqos/i2c-imx.c               |  40 +++--
 tests/libqos/i2c-omap.c              |  70 +++++---
 tests/libqos/i2c.c                   |  74 ++++++++-
 tests/libqos/i2c.h                   |  63 ++++++--
 tests/libqos/qgraph.c                |  12 +-
 tests/libqos/qgraph.h                |  15 +-
 tests/pca9552-test.c                 |  91 ++++-------
 tests/qos-test.c                     |  17 +-
 tests/test-thread-pool.c             |  32 ++--
 tests/tmp105-test.c                  | 112 ++++---------
 vl.c                                 |  18 ++-
 29 files changed, 889 insertions(+), 315 deletions(-)
 create mode 100644 .patchew.yml
 create mode 100644 tests/libqos/arm-imx25-pdk-machine.c
 create mode 100644 tests/libqos/arm-n800-machine.c
-- 
1.8.3.1


Re: [Qemu-devel] [PULL 00/24] Misc patches for 2019-06-03
Posted by Peter Maydell 4 years, 10 months ago
On Mon, 3 Jun 2019 at 18:12, Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> The following changes since commit ad88e4252f09c2956b99c90de39e95bab2e8e7af:
>
>   Merge remote-tracking branch 'remotes/amarkovic/tags/mips-queue-jun-1-2019' into staging (2019-06-03 10:25:12 +0100)
>
> are available in the git repository at:
>
>
>   git://github.com/bonzini/qemu.git tags/for-upstream
>
> for you to fetch changes up to c87759ce876a7a0b17c2bf4f0b964bd51f0ee871:
>
>   q35: Revert to kernel irqchip (2019-06-03 14:03:03 +0200)
>
> ----------------------------------------------------------------
> * Revert q35 to kernel irqchip (Alex)
> * edu device fixes (Li Qiang)
> * cleanups (Marc-André, Peter)
> * Improvements to -accel help
> * Better support for IA32_MISC_ENABLE MSR (Wanpeng)
> * I2C test conversion to qgraph (Paolo)
>
> ----------------------------------------------------------------


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.1
for any user-visible changes.

-- PMM