From: Michael Tokarev <mjt@tls.msk.ru>
To: qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org, Michael Tokarev <mjt@tls.msk.ru>
Subject: [Qemu-devel] [PULL 00/20] Trivial patches for 2014-12-11
Date: Thu, 11 Dec 2014 21:15:48 +0300 [thread overview]
Message-ID: <cover.1418321644.git.mjt@msgid.tls.msk.ru> (raw)
This is the first pull request from trivial-patches tree for
quite some time, I was quiet during 2.2 freeze period and here's
what has been accumulated during the freeze.
As usual, there are many small things from Gonglei and some good
stuff from Marcus, plus some more from others, all pretty much
trivial.
Please pull.
Thanks,
/mjt
The following changes since commit 7fb8da2b8861795e0013e6ee97acd0363d868a35:
Open 2.3 development tree (2014-12-09 21:48:34 +0000)
are available in the git repository at:
git://git.corpit.ru/qemu.git tags/pull-trivial-patches-2014-12-11
for you to fetch changes up to 64baadc2726ae929660dd0c61a42e8d9f3ba1828:
Sort include/qemu/typedefs.h (2014-12-11 21:00:30 +0300)
----------------------------------------------------------------
trivial patches for 2014-12-11
----------------------------------------------------------------
Amos Kong (1):
qmp: fix typo in input-send-event examples
Antony Pavlov (1):
pflash_cfi02.c: associate "cfi.pflash02" to "Storage devices" category
Dr. David Alan Gilbert (1):
Sort include/qemu/typedefs.h
Fam Zheng (1):
configure: Replace which(1) with "has"
Gonglei (6):
acpi-build: adjust indention 8 -> 4 spaces
acpi-build: Make DPRINTF working for acpi-build
virtio-bus: avoid breaking build when open DEBUG switch
fw_cfg: remove superfluous blank line
qapi-schema: fix typo about change-vnc-password
virtio: remove useless declaration of virtio_net_init()
Markus Armbruster (5):
Drop superfluous conditionals around qemu_opts_del()
Drop superfluous conditionals around g_strdup()
util: Drop superfluous conditionals around g_free()
util: Fuse g_malloc(); memset() into g_new0()
util: Use g_new() & friends where that makes obvious sense
Stefan Hajnoczi (1):
hpet: increase spelling precision
Thomas Huth (1):
get_maintainer.pl: Remove the --git-chief-penguins option
lijun (1):
usb: delete redundant brackets in usb_host_handle_control()
zhanghailiang (2):
target-s390x: fix possible out of bounds read
vt82c686: fix coverity warning about out-of-bounds write
backends/rng-random.c | 6 +--
configure | 2 +-
hw/block/pflash_cfi02.c | 1 +
hw/core/qdev.c | 4 +-
hw/i386/acpi-build.c | 22 ++++++----
hw/isa/vt82c686.c | 41 ++++++++----------
hw/nvram/fw_cfg.c | 1 -
hw/timer/hpet.c | 2 +-
hw/tpm/tpm_passthrough.c | 4 +-
hw/usb/host-libusb.c | 2 +-
hw/virtio/virtio-bus.c | 2 +-
include/hw/virtio/virtio.h | 3 --
include/qemu/typedefs.h | 105 +++++++++++++++++++++------------------------
qapi-schema.json | 2 +-
qemu-char.c | 4 +-
qmp-commands.hx | 4 +-
scripts/get_maintainer.pl | 45 +------------------
target-s390x/helper.c | 6 +--
util/hbitmap.c | 4 +-
util/iov.c | 4 +-
util/uri.c | 94 +++++++++++++++++-----------------------
21 files changed, 143 insertions(+), 215 deletions(-)
next reply other threads:[~2014-12-11 18:16 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-11 18:15 Michael Tokarev [this message]
2014-12-11 18:15 ` [Qemu-devel] [PULL 01/20] qmp: fix typo in input-send-event examples Michael Tokarev
2014-12-11 18:15 ` [Qemu-devel] [PULL 02/20] target-s390x: fix possible out of bounds read Michael Tokarev
2014-12-11 18:15 ` [Qemu-devel] [PULL 03/20] acpi-build: adjust indention 8 -> 4 spaces Michael Tokarev
2014-12-11 18:15 ` [Qemu-devel] [PULL 04/20] acpi-build: Make DPRINTF working for acpi-build Michael Tokarev
2014-12-11 18:15 ` [Qemu-devel] [PULL 05/20] virtio-bus: avoid breaking build when open DEBUG switch Michael Tokarev
2014-12-11 18:15 ` [Qemu-devel] [PULL 06/20] usb: delete redundant brackets in usb_host_handle_control() Michael Tokarev
2014-12-11 18:15 ` [Qemu-devel] [PULL 07/20] Drop superfluous conditionals around qemu_opts_del() Michael Tokarev
2014-12-11 18:15 ` [Qemu-devel] [PULL 08/20] Drop superfluous conditionals around g_strdup() Michael Tokarev
2014-12-11 18:15 ` [Qemu-devel] [PULL 09/20] util: Drop superfluous conditionals around g_free() Michael Tokarev
2014-12-11 18:15 ` [Qemu-devel] [PULL 10/20] util: Fuse g_malloc(); memset() into g_new0() Michael Tokarev
2014-12-11 18:15 ` [Qemu-devel] [PULL 11/20] util: Use g_new() & friends where that makes obvious sense Michael Tokarev
2014-12-11 18:16 ` [Qemu-devel] [PULL 12/20] configure: Replace which(1) with "has" Michael Tokarev
2014-12-11 18:16 ` [Qemu-devel] [PULL 13/20] get_maintainer.pl: Remove the --git-chief-penguins option Michael Tokarev
2014-12-11 18:16 ` [Qemu-devel] [PULL 14/20] fw_cfg: remove superfluous blank line Michael Tokarev
2014-12-11 18:16 ` [Qemu-devel] [PULL 15/20] qapi-schema: fix typo about change-vnc-password Michael Tokarev
2014-12-11 18:16 ` [Qemu-devel] [PULL 16/20] virtio: remove useless declaration of virtio_net_init() Michael Tokarev
2014-12-11 18:16 ` [Qemu-devel] [PULL 17/20] vt82c686: fix coverity warning about out-of-bounds write Michael Tokarev
2014-12-11 18:16 ` [Qemu-devel] [PULL 18/20] pflash_cfi02.c: associate "cfi.pflash02" to "Storage devices" category Michael Tokarev
2014-12-11 18:16 ` [Qemu-devel] [PULL 19/20] hpet: increase spelling precision Michael Tokarev
2014-12-11 18:16 ` [Qemu-devel] [PULL 20/20] Sort include/qemu/typedefs.h Michael Tokarev
2014-12-11 21:46 ` [Qemu-devel] [PULL 00/20] Trivial patches for 2014-12-11 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.1418321644.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).