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/19] Trivial patches for 2015-10-08
Date: Thu, 8 Oct 2015 19:52:09 +0300 [thread overview]
Message-ID: <cover.1444323071.git.mjt@msgid.tls.msk.ru> (raw)
Another trivial-patches pull request.
Everything's trivial in there this time.
Please consider applying/pulling.
Thank you!
/mjt
The following changes since commit 31c9bd164ddb653915b9029ba0edd40cd57530d9:
Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20151007' into staging (2015-10-08 15:33:56 +0100)
are available in the git repository at:
git://git.corpit.ru/qemu.git tags/pull-trivial-patches-2015-10-08
for you to fetch changes up to deb847bfba7ee0ab8151842f5e9cb12d4daad3a3:
tests: Unique test path for /string-visitor/output (2015-10-08 19:48:17 +0300)
----------------------------------------------------------------
trivial patches for 2015-10-08
----------------------------------------------------------------
Christopher Covington (1):
s/cpu_get_real_ticks/cpu_get_host_ticks/
Daniel P. Berrange (1):
Add .dir-locals.el file to configure emacs coding style
David Gibson (1):
.travis.yml: Run make check for all targets, not just some
Dr. David Alan Gilbert (1):
tests: Unique test path for /string-visitor/output
Guenter Roeck (1):
imx_serial: Generate interrupt on tx empty if enabled
Marc-André Lureau (1):
qapi: add missing @
Markus Armbruster (2):
rocker: Use g_new() & friends where that makes obvious sense
linux-user: Use g_new() & friends where that makes obvious sense
Paolo Bonzini (3):
block/ssh: remove dead code
pci-assign: do not include sys/io.h
pc: check for underflow in load_linux
Sai Pavan Boddu (2):
sdhci: use PRIx64 for uint64_t type
sdhci: Change debug prints to compile unconditionally
Shraddha Barke (4):
target-microblaze: Remove unnecessary variable
target-ppc: Remove unnecessary variable
hw: timer: Remove unnecessary variable
hw: char: Remove unnecessary variable
Stefan Weil (2):
MAINTAINERS: Add NSIS file for W32, W64 hosts
linux-user: Remove type casts to union type
.dir-locals.el | 2 ++
.travis.yml | 10 +--------
MAINTAINERS | 1 +
block/ssh.c | 5 +----
bsd-user/main.c | 2 +-
cpus.c | 6 +++---
hw/char/etraxfs_ser.c | 4 +---
hw/char/imx_serial.c | 4 +++-
hw/i386/kvm/pci-assign.c | 1 -
hw/i386/pc.c | 4 ++++
hw/intc/xics.c | 2 +-
hw/net/rocker/rocker.c | 2 +-
hw/net/rocker/rocker_desc.c | 4 ++--
hw/net/rocker/rocker_fp.c | 2 +-
hw/net/rocker/rocker_of_dpa.c | 9 ++++----
hw/ppc/ppc.c | 4 ++--
hw/sd/sdhci.c | 43 ++++++++++++++++++++------------------
hw/timer/m48t59.c | 4 +---
include/qemu/timer.h | 20 +++++++++---------
linux-user/elfload.c | 2 +-
linux-user/main.c | 6 +++---
linux-user/syscall.c | 10 ++++-----
qapi/block.json | 2 +-
target-alpha/sys_helper.c | 2 +-
target-microblaze/op_helper.c | 4 +---
target-ppc/kvm.c | 3 +--
tests/test-string-output-visitor.c | 16 +++++++-------
27 files changed, 83 insertions(+), 91 deletions(-)
create mode 100644 .dir-locals.el
next reply other threads:[~2015-10-08 19:23 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-08 16:52 Michael Tokarev [this message]
2015-10-08 16:52 ` [Qemu-devel] [PULL 01/19] Add .dir-locals.el file to configure emacs coding style Michael Tokarev
2015-10-09 12:25 ` Marc-André Lureau
2015-10-08 16:52 ` [Qemu-devel] [PULL 02/19] sdhci: use PRIx64 for uint64_t type Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 03/19] sdhci: Change debug prints to compile unconditionally Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 04/19] imx_serial: Generate interrupt on tx empty if enabled Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 05/19] block/ssh: remove dead code Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 06/19] pci-assign: do not include sys/io.h Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 07/19] pc: check for underflow in load_linux Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 08/19] s/cpu_get_real_ticks/cpu_get_host_ticks/ Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 09/19] target-microblaze: Remove unnecessary variable Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 10/19] target-ppc: " Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 11/19] MAINTAINERS: Add NSIS file for W32, W64 hosts Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 12/19] qapi: add missing @ Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 13/19] hw: timer: Remove unnecessary variable Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 14/19] hw: char: " Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 15/19] .travis.yml: Run make check for all targets, not just some Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 16/19] rocker: Use g_new() & friends where that makes obvious sense Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 17/19] linux-user: " Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 18/19] linux-user: Remove type casts to union type Michael Tokarev
2015-10-08 16:52 ` [Qemu-devel] [PULL 19/19] tests: Unique test path for /string-visitor/output Michael Tokarev
2015-10-09 11:02 ` [Qemu-devel] [PULL 00/19] Trivial patches for 2015-10-08 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.1444323071.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).