qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v2 00/20] Qemu trivial for 3.1 patches
@ 2018-10-30 11:23 Laurent Vivier
  2018-10-30 11:23 ` [Qemu-devel] [PULL v2 01/20] configs/alpha: Remove unused CONFIG_PARALLEL_ISA switch Laurent Vivier
                   ` (20 more replies)
  0 siblings, 21 replies; 22+ messages in thread
From: Laurent Vivier @ 2018-10-30 11:23 UTC (permalink / raw)
  To: qemu-devel
  Cc: Michael S. Tsirkin, Cleber Rosa, Jason Wang, qemu-arm,
	Igor Mammedov, Paolo Bonzini, Peter Maydell, Aleksandar Markovic,
	Alex Bennée, Thomas Huth, Anthony Perard, Aurelien Jarno,
	Max Reitz, Fam Zheng, Laurent Vivier, Kevin Wolf,
	Philippe Mathieu-Daudé, Stefano Stabellini, qemu-trivial,
	qemu-block, Eduardo Habkost, xen-devel, Gerd Hoffmann,
	Riku Voipio, Marcel Apfelbaum, Michael Tokarev, Laurent Vivier,
	Michael Walle, Markus Armbruster

The following changes since commit 808ebd66e467f77c0d1f8c6346235f81e9c99cf2:

  Merge remote-tracking branch 'remotes/riscv/tags/riscv-for-master-3.1-sf0' into staging (2018-10-25 17:41:03 +0100)

are available in the Git repository at:

  git://github.com/vivier/qemu.git tags/qemu-trivial-for-3.1-pull-request

for you to fetch changes up to 7b2b797cf0addac789ba858fdbd95c55128d72d5:

  milkymist-minimac2: Use qemu_log_mask(GUEST_ERROR) instead of error_report (2018-10-30 09:13:31 +0100)

----------------------------------------------------------------
QEMU trivial patches collected between June and October 2018
(Thank you to Thomas Huth)

v2: fix 32bit build with updated patch (v3) from Philippe Mathieu-Daudé
    built in a 32bit debian sid chroot

----------------------------------------------------------------

Cleber Rosa (6):
  tests/tcg/README: fix location for lm32 tests
  qemu-iotests: fix filename containing checks
  docs/devel/testing.rst: add missing newlines after code block
  scripts/decodetree.py: remove unused imports
  scripts/qemu.py: remove trailing quotes on docstring
  qemu-iotests: make 218 executable

Emilio G. Cota (1):
  linux-user: fix comment s/atomic_write/atomic_set/

Li Qiang (2):
  memory.h: fix typos in comments
  cpu.h: fix a typo in comment

Paolo Bonzini (1):
  ppc: move at24c to its own CONFIG_ symbol

Philippe Mathieu-Daudé (6):
  qobject: Catch another straggler for use of qdict_put_str()
  xen: Use the PCI_DEVICE macro
  tests/bios-tables-test: Remove an useless cast
  hw/pci-host: Remove useless parenthesis around DIV_ROUND_UP macro
  hw/intc/gicv3: Remove useless parenthesis around DIV_ROUND_UP macro
  milkymist-minimac2: Use qemu_log_mask(GUEST_ERROR) instead of
    error_report

Stefan Weil (2):
  tests: Fix typos in comments and help message (found by codespell)
  configure: Support pkg-config for zlib

Thomas Huth (1):
  configs/alpha: Remove unused CONFIG_PARALLEL_ISA switch

yuchenlin (1):
  vga_int: remove unused function protype

 configure                             | 40 +++++++++++++++------------
 default-configs/alpha-softmmu.mak     |  1 -
 default-configs/ppc-softmmu.mak       |  1 +
 docs/devel/testing.rst                |  2 ++
 hw/display/vga_int.h                  |  1 -
 hw/net/milkymist-minimac2.c           | 15 ++++++----
 hw/nvram/Makefile.objs                |  2 +-
 hw/pci-host/piix.c                    |  2 +-
 hw/pci-host/q35.c                     |  2 +-
 hw/xen/xen_pt_config_init.c           |  8 +++---
 include/exec/memory.h                 |  6 ++--
 include/hw/intc/arm_gicv3_common.h    |  2 +-
 include/qom/cpu.h                     |  2 +-
 linux-user/qemu.h                     |  2 +-
 qobject/block-qdict.c                 |  2 +-
 scripts/decodetree.py                 |  2 --
 scripts/qemu.py                       |  2 +-
 tests/bios-tables-test.c              |  4 +--
 tests/docker/Makefile.include         |  2 +-
 tests/docker/docker.py                |  4 +--
 tests/guest-debug/test-gdbstub.py     |  2 +-
 tests/qemu-iotests/218                |  0
 tests/qemu-iotests/common.qemu        |  2 +-
 tests/qemu-iotests/common.rc          |  4 +--
 tests/tcg/Makefile.include            |  2 +-
 tests/tcg/Makefile.probe              |  2 +-
 tests/tcg/README                      |  2 +-
 tests/tcg/mips/mips64-dsp/subq_s_pw.c |  2 +-
 28 files changed, 64 insertions(+), 54 deletions(-)
 mode change 100644 => 100755 tests/qemu-iotests/218

-- 
2.17.2

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

end of thread, other threads:[~2018-10-30 17:31 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-30 11:23 [Qemu-devel] [PULL v2 00/20] Qemu trivial for 3.1 patches Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 01/20] configs/alpha: Remove unused CONFIG_PARALLEL_ISA switch Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 02/20] vga_int: remove unused function protype Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 03/20] memory.h: fix typos in comments Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 04/20] tests/tcg/README: fix location for lm32 tests Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 05/20] qemu-iotests: fix filename containing checks Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 06/20] docs/devel/testing.rst: add missing newlines after code block Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 07/20] scripts/decodetree.py: remove unused imports Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 08/20] scripts/qemu.py: remove trailing quotes on docstring Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 09/20] qemu-iotests: make 218 executable Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 10/20] linux-user: fix comment s/atomic_write/atomic_set/ Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 11/20] cpu.h: fix a typo in comment Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 12/20] tests: Fix typos in comments and help message (found by codespell) Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 13/20] configure: Support pkg-config for zlib Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 14/20] qobject: Catch another straggler for use of qdict_put_str() Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 15/20] xen: Use the PCI_DEVICE macro Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 16/20] tests/bios-tables-test: Remove an useless cast Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 17/20] hw/pci-host: Remove useless parenthesis around DIV_ROUND_UP macro Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 18/20] hw/intc/gicv3: " Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 19/20] ppc: move at24c to its own CONFIG_ symbol Laurent Vivier
2018-10-30 11:23 ` [Qemu-devel] [PULL v2 20/20] milkymist-minimac2: Use qemu_log_mask(GUEST_ERROR) instead of error_report Laurent Vivier
2018-10-30 17:31 ` [Qemu-devel] [PULL v2 00/20] Qemu trivial for 3.1 patches 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).