qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/24] Misc patches for 2019-06-03
@ 2019-06-03 17:10 Paolo Bonzini
  2019-06-03 17:10 ` [Qemu-devel] [PULL 01/24] test-thread-pool: be more reliable Paolo Bonzini
                   ` (24 more replies)
  0 siblings, 25 replies; 27+ messages in thread
From: Paolo Bonzini @ 2019-06-03 17:10 UTC (permalink / raw)
  To: qemu-devel

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



^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2019-06-05  9:16 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-03 17:10 [Qemu-devel] [PULL 00/24] Misc patches for 2019-06-03 Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 01/24] test-thread-pool: be more reliable Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 02/24] vl: make -accel help to list enabled accelerators only Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 03/24] checkpatch: allow SPDX-License-Identifier Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 04/24] memory: Remove memory_region_get_dirty() Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 05/24] i386: Enable IA32_MISC_ENABLE MWAIT bit when exposing mwait/monitor Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 06/24] edu: mmio: allow 64-bit access Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 07/24] edu: mmio: allow 64-bit access in read dispatch Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 08/24] edu: uses uint64_t in dma operation Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 09/24] qgraph: allow extra_device_opts on contains nodes Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 10/24] qgraph: fix qos_node_contains with options Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 11/24] libqos: move common i2c code to libqos Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 12/24] libqos: fix omap-i2c receiving more than 4 bytes Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 13/24] pca9552-test: do not rely on state across tests Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 14/24] imx25-pdk: create ds1338 for qtest inside the test Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 15/24] libqos: split I2CAdapter initialization and allocation Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 16/24] libqos: convert I2C to qgraph Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 17/24] libqos: add ARM n800 machine object Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 18/24] libqos: add ARM imx25-pdk " Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 19/24] tests: convert OMAP i2c tests to qgraph Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 20/24] tests: convert ds1338-test to qtest Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 21/24] libqos: i2c: move address into QI2CDevice Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 22/24] ci: store Patchew configuration in the tree Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 23/24] configure: remove tpm_passthrough & tpm_emulator Paolo Bonzini
2019-06-03 17:10 ` [Qemu-devel] [PULL 24/24] q35: Revert to kernel irqchip Paolo Bonzini
2019-06-05  9:14   ` Greg Kurz
2019-06-03 18:18 ` [Qemu-devel] [PULL 00/24] Misc patches for 2019-06-03 Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).