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/24] Trivial patches for 2015-03-19
Date: Thu, 19 Mar 2015 12:05:18 +0300 [thread overview]
Message-ID: <cover.1426755483.git.mjt@msgid.tls.msk.ru> (raw)
Here's another trivial-patches pull request, it comes very close to
the release because I was too busy last 2 weeks to do anything useful
with the trivial-patches queue, and because it accumulated quite a few
patches since that.
Here, there are many code defects fixes found by coverity and sparse,
mostly from Stefan Weil, and also from Gonglei and Shannon Zhao. There
are a few other bits and pieces, all look quite harmless. And a few
more interesting changes:
- smbios: add max speed comdline option for type-17 (meory device) structure
by Gabriel L. Somlo
- configure: enable kvm on x32 by Michael Tokarev
- error: Replace error_report() & error_free() with error_report_err()
by zhanghailiang
These aren't completely trivial, but again, should not have much impact,
and has been in the queue for quite some time too.
Please consider applying.
I omited a few other patches sent to -trivial for now, partly to speed up
processing of other patches, partly because some patches better wait for
2.4, and partly because some patches, in my opinion, needs one or another
work. I'll post comments about these as replies to individual patches
posted.
Thanks,
/mjt
The following changes since commit cd232acfa0d70002fed89e9293f04afda577a513:
Update version for v2.3.0-rc0 release (2015-03-17 18:58:33 +0000)
are available in the git repository at:
git://git.corpit.ru/qemu.git tags/pull-trivial-patches-2015-03-19
for you to fetch changes up to 8ce1ee4618f4a557959f5a5731f6726b30416df5:
qga/commands-posix: Fix resource leak (2015-03-19 11:39:18 +0300)
----------------------------------------------------------------
trivial patches for 2015-03-19
----------------------------------------------------------------
Gabriel L. Somlo (1):
smbios: add max speed comdline option for type-17 (meory device) structure
Gonglei (1):
arm: fix memory leak
John Snow (1):
qtest/ahci: Fix a bit mask expression
Markus Armbruster (3):
hmp: Fix definition of command quit
qmp: Drop unused .user_print from command definitions
hmp: Fix texinfo documentation
Michael Tokarev (2):
cris: remove unused cris_cond15 declarations
configure: enable kvm on x32
Paolo Bonzini (1):
vl: fix resource leak with monitor_fdset_add_fd
Paulo Vital (1):
pc-dimm: Add description for device list.
Shannon Zhao (1):
qga/commands-posix: Fix resource leak
Stefan Weil (11):
backends: Fix warning from Sparse
9pfs: Fix warnings from Sparse
omap: Fix warnings from Sparse
arm/nseries: Fix warnings from Sparse
target-mips: Fix warning from Sparse
qom: Fix warning from Sparse
Fix remaining warnings from Sparse (void return)
block/qapi: Fix Sparse warning
target-moxie: Fix warnings from Sparse (one-bit signed bitfield)
elf-loader: Fix truncation warning from coverity
elf-loader: Add missing error handling for call of lseek
Viswesh (1):
Fix typos in comments
zhanghailiang (1):
error: Replace error_report() & error_free() with error_report_err()
backends/tpm.c | 2 +-
block/qapi.c | 2 +-
configure | 4 ++-
disas/cris.c | 13 +--------
fsdev/virtfs-proxy-helper.c | 2 +-
hmp-commands.hx | 42 +++++++++++------------------
hw/9pfs/virtio-9p-handle.c | 4 +--
hw/9pfs/virtio-9p-local.c | 4 +--
hw/9pfs/virtio-9p-proxy.c | 4 +--
hw/9pfs/virtio-9p.c | 3 ++-
hw/arm/digic_boards.c | 1 +
hw/arm/highbank.c | 1 +
hw/arm/nseries.c | 4 +--
hw/arm/omap1.c | 65 ++++++++++++++++++++++++++++++---------------
hw/arm/omap2.c | 12 ++++++---
hw/arm/vexpress.c | 3 ++-
hw/arm/virt.c | 5 ++--
hw/char/omap_uart.c | 3 ++-
hw/core/loader.c | 2 +-
hw/display/omap_dss.c | 15 +++++++----
hw/display/vga.c | 2 +-
hw/dma/omap_dma.c | 8 +++---
hw/gpio/omap_gpio.c | 3 ++-
hw/i386/smbios.c | 10 +++++--
hw/intc/arm_gic.c | 3 ++-
hw/intc/etraxfs_pic.c | 8 +++---
hw/mem/pc-dimm.c | 1 +
hw/misc/omap_gpmc.c | 3 ++-
hw/misc/omap_l4.c | 3 ++-
hw/misc/omap_sdrc.c | 3 ++-
hw/misc/omap_tap.c | 3 ++-
hw/nvram/fw_cfg.c | 2 +-
hw/sd/omap_mmc.c | 3 ++-
hw/ssi/omap_spi.c | 3 ++-
hw/timer/a9gtimer.c | 2 +-
hw/timer/omap_gptimer.c | 2 +-
hw/tpm/tpm_tis.c | 2 +-
hw/usb/hcd-musb.c | 20 +++++++-------
include/hw/elf_ops.h | 4 ++-
include/qom/cpu.h | 2 +-
monitor.c | 8 +++---
qemu-options.hx | 4 +--
qga/commands-posix.c | 1 +
qmp-commands.hx | 4 ---
qom/cpu.c | 2 +-
savevm.c | 3 +--
target-cris/opcode-cris.h | 10 -------
target-mips/dsp_helper.c | 2 +-
target-moxie/mmu.h | 10 +++----
target-tricore/translate.c | 22 +++++++--------
tests/ahci-test.c | 2 +-
vl.c | 6 +++--
52 files changed, 191 insertions(+), 161 deletions(-)
next reply other threads:[~2015-03-19 9:05 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-19 9:05 Michael Tokarev [this message]
2015-03-19 9:05 ` [Qemu-devel] [PULL 01/24] cris: remove unused cris_cond15 declarations Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 02/24] backends: Fix warning from Sparse Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 03/24] 9pfs: Fix warnings " Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 04/24] omap: " Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 05/24] arm/nseries: " Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 06/24] target-mips: Fix warning " Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 07/24] qom: " Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 08/24] Fix remaining warnings from Sparse (void return) Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 09/24] block/qapi: Fix Sparse warning Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 10/24] target-moxie: Fix warnings from Sparse (one-bit signed bitfield) Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 11/24] hmp: Fix definition of command quit Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 12/24] qmp: Drop unused .user_print from command definitions Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 13/24] arm: fix memory leak Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 14/24] error: Replace error_report() & error_free() with error_report_err() Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 15/24] configure: enable kvm on x32 Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 16/24] pc-dimm: Add description for device list Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 17/24] smbios: add max speed comdline option for type-17 (meory device) structure Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 18/24] vl: fix resource leak with monitor_fdset_add_fd Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 19/24] qtest/ahci: Fix a bit mask expression Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 20/24] Fix typos in comments Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 21/24] hmp: Fix texinfo documentation Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 22/24] elf-loader: Fix truncation warning from coverity Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 23/24] elf-loader: Add missing error handling for call of lseek Michael Tokarev
2015-03-19 9:05 ` [Qemu-devel] [PULL 24/24] qga/commands-posix: Fix resource leak Michael Tokarev
2015-03-19 16:46 ` [Qemu-devel] [PULL 00/24] Trivial patches for 2015-03-19 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.1426755483.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).