From: Michael Tokarev <mjt@tls.msk.ru>
To: qemu-devel@nongnu.org
Cc: Michael Tokarev <mjt@tls.msk.ru>, qemu-trivial@nongnu.org
Subject: [Qemu-trivial] [PULL 00/22] Trivial patches for 2018-05-20
Date: Sun, 20 May 2018 09:14:46 +0300 [thread overview]
Message-ID: <cover.1526796813.git.mjt@msgid.tls.msk.ru> (raw)
Hello!
This is a next trivial-patches pull request. It's been a while
since the last pull, and quite some changes has been accumulated.
Please consider pulling/applying.
Thanks,
/mjt
The following changes since commit 5bcf917ee37a5efbef99f091a96db54a5276becb:
Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20180518' into staging (2018-05-18 18:25:29 +0100)
are available in the git repository at:
git://git.corpit.ru/qemu.git tags/trivial-patches-fetch
for you to fetch changes up to 9a232487aab8a7640ff8853d7d8d7c27106b44f8:
acpi: fix a comment about aml_call0() (2018-05-20 08:58:58 +0300)
----------------------------------------------------------------
trivial patches for 2018-05-20
----------------------------------------------------------------
Alexey Kardashevskiy (1):
slirp/debug: Print IP addresses in human readable form
Daniel P. Berrangé (1):
misc, ide: remove use of HWADDR_PRIx in trace events
Emilio G. Cota (1):
tcg: fix s/compliment/complement/ typos
John Snow (5):
qemu-img-commands.hx: argument ordering fixups
qemu-img.texi: fix command ordering
qemu-img: remove references to GEN_DOCS
qemu-img: Make documentation between .texi and .hx consistent
qemu-img-cmds.hx: add passive-aggressive note
Laurent Vivier (1):
Remove unnecessary variables for function return value
Marc-André Lureau (2):
tests: fix tpm-crb tpm-tis tests race
acpi: fix a comment about aml_call0()
Michael Tokarev (1):
qemu-option-trace: -trace enable= is a pattern, not a file
Michal Privoznik (1):
qemu-options: Allow -no-user-config again
Murilo Opsfelder Araujo (1):
HACKING: document preference for g_new instead of g_malloc
Olaf Hering (1):
replace functions which are only available in glib-2.24
Peter Maydell (2):
gdbstub: Use qemu_set_cloexec()
gdbstub: Handle errors in gdb_accept()
Philippe Mathieu-Daudé (2):
hw/ide/ahci: Keep ALLWINNER_AHCI() macro internal
typedefs: Remove PcGuestInfo from qemu/typedefs.h
Thomas Huth (3):
trivial: Do not include pci.h if it is not necessary
hw/timer/mt48t59: Fix bit-rotten NVRAM_PRINTF format strings
qapi/net.json: Fix the version number of the "vlan" removal
HACKING | 9 +++
accel/tcg/translate-all.c | 5 +-
block/quorum.c | 6 +-
gdbstub.c | 24 ++++---
hw/acpi/aml-build.c | 2 +-
hw/arm/exynos4210.c | 6 +-
hw/block/vhost-user-blk.c | 5 +-
hw/hppa/dino.c | 5 +-
hw/ide/ahci-allwinner.c | 3 +
hw/ide/ahci_internal.h | 3 -
hw/ide/trace-events | 4 +-
hw/misc/mos6522.c | 8 +--
hw/misc/trace-events | 8 +--
hw/net/ftgmac100.c | 5 +-
hw/ppc/pnv_lpc.c | 16 ++---
hw/timer/m48t59-internal.h | 9 +--
hw/timer/m48t59.c | 4 +-
include/hw/ppc/ppc4xx.h | 2 -
include/hw/virtio/virtio-balloon.h | 1 -
include/hw/virtio/virtio-gpu.h | 1 -
include/qemu/typedefs.h | 1 -
io/net-listener.c | 6 +-
qapi/net.json | 4 +-
qemu-img-cmds.hx | 13 ++--
qemu-img.c | 2 -
qemu-img.texi | 78 +++++++++++-----------
qemu-option-trace.texi | 5 +-
qemu-options-wrapper.h | 1 -
slirp/arp_table.c | 4 +-
slirp/socket.c | 8 +--
slirp/udp.c | 4 +-
target/i386/hax-darwin.c | 10 +--
target/i386/translate.c | 2 +-
target/m68k/translate.c | 2 +-
target/mips/dsp_helper.c | 15 +----
target/xtensa/core-dc232b/xtensa-modules.inc.c | 56 ++++------------
target/xtensa/core-dc233c/xtensa-modules.inc.c | 56 ++++------------
target/xtensa/core-de212/xtensa-modules.inc.c | 48 ++++---------
target/xtensa/core-fsf/xtensa-modules.inc.c | 32 +++------
.../core-sample_controller/xtensa-modules.inc.c | 24 ++-----
target/xtensa/translate.c | 7 +-
tcg/README | 2 +-
tests/m48t59-test.c | 6 +-
tests/test-thread-pool.c | 6 +-
tests/tpm-emu.c | 2 +-
util/uri.c | 5 +-
util/vfio-helpers.c | 6 +-
vl.c | 4 ++
48 files changed, 187 insertions(+), 348 deletions(-)
next reply other threads:[~2018-05-20 6:15 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-20 6:14 Michael Tokarev [this message]
2018-05-20 6:14 ` [Qemu-trivial] [PULL 01/22] tcg: fix s/compliment/complement/ typos Michael Tokarev
2018-05-20 6:14 ` [Qemu-trivial] [PULL 02/22] misc, ide: remove use of HWADDR_PRIx in trace events Michael Tokarev
2018-05-20 6:14 ` [Qemu-trivial] [PULL 03/22] slirp/debug: Print IP addresses in human readable form Michael Tokarev
2018-05-20 6:14 ` [Qemu-trivial] [PULL 04/22] qemu-option-trace: -trace enable= is a pattern, not a file Michael Tokarev
2018-05-20 6:14 ` [Qemu-trivial] [PULL 05/22] HACKING: document preference for g_new instead of g_malloc Michael Tokarev
2018-05-20 6:14 ` [Qemu-trivial] [PULL 06/22] qemu-img-commands.hx: argument ordering fixups Michael Tokarev
2018-05-20 6:14 ` [Qemu-trivial] [PULL 07/22] qemu-img.texi: fix command ordering Michael Tokarev
2018-05-20 6:14 ` [Qemu-trivial] [PULL 08/22] qemu-img: remove references to GEN_DOCS Michael Tokarev
2018-05-20 6:14 ` [Qemu-trivial] [PULL 09/22] qemu-img: Make documentation between .texi and .hx consistent Michael Tokarev
2018-05-20 6:14 ` [Qemu-trivial] [PULL 10/22] qemu-img-cmds.hx: add passive-aggressive note Michael Tokarev
2018-05-20 6:14 ` [Qemu-trivial] [PULL 11/22] hw/ide/ahci: Keep ALLWINNER_AHCI() macro internal Michael Tokarev
2018-05-20 6:14 ` [Qemu-trivial] [PULL 12/22] tests: fix tpm-crb tpm-tis tests race Michael Tokarev
2018-05-20 6:14 ` [Qemu-trivial] [PULL 13/22] trivial: Do not include pci.h if it is not necessary Michael Tokarev
2018-05-20 6:15 ` [Qemu-trivial] [PULL 14/22] Remove unnecessary variables for function return value Michael Tokarev
2018-05-20 6:15 ` [Qemu-trivial] [PULL 15/22] hw/timer/mt48t59: Fix bit-rotten NVRAM_PRINTF format strings Michael Tokarev
2018-05-20 6:15 ` [Qemu-trivial] [PULL 16/22] qemu-options: Allow -no-user-config again Michael Tokarev
2018-05-20 6:15 ` [Qemu-trivial] [PULL 17/22] typedefs: Remove PcGuestInfo from qemu/typedefs.h Michael Tokarev
2018-05-20 6:15 ` [Qemu-trivial] [PULL 18/22] replace functions which are only available in glib-2.24 Michael Tokarev
2018-05-20 6:15 ` [Qemu-trivial] [PULL 19/22] gdbstub: Use qemu_set_cloexec() Michael Tokarev
2018-05-20 6:15 ` [Qemu-trivial] [PULL 20/22] gdbstub: Handle errors in gdb_accept() Michael Tokarev
2018-05-24 21:35 ` [Qemu-trivial] [Qemu-devel] " Paolo Bonzini
2018-05-24 22:23 ` Philippe Mathieu-Daudé
2018-05-20 6:15 ` [Qemu-trivial] [PULL 21/22] qapi/net.json: Fix the version number of the "vlan" removal Michael Tokarev
2018-05-20 6:15 ` [Qemu-trivial] [PULL 22/22] acpi: fix a comment about aml_call0() Michael Tokarev
2018-05-21 12:22 ` [Qemu-trivial] [Qemu-devel] [PULL 00/22] Trivial patches for 2018-05-20 Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1526796813.git.mjt@msgid.tls.msk.ru \
--to=mjt@tls.msk.ru \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).