qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
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 for-2.0 00/23] Trivial patches for 2014-03-27
Date: Thu, 27 Mar 2014 19:28:05 +0400	[thread overview]
Message-ID: <1395934108-1694-1-git-send-email-mjt@msgid.tls.msk.ru> (raw)

Here's another trivial-patches pull request, for 2.0.

I removed -m-to-QemuOpts conversion patches, what's left
are either really trivial stuff (some `static const' designators
from Stefan Weil, some duplicate statement removals from Prasad Joshi),
minor documentation fixes (and addition of coding style section),
one bugfix for KVM_GET_DIRTY_LOG ioctl return check by Mario Smarduch,
and a large(ish) series of shift-into-sign-bit by Peter Maydell.
Everything appears to be fine for 2.0.

Please consider applying or pulling.

Thanks!

/mjt

The following changes since commit bea4acda3bff00e98cb00d5354f23de9e74a928f:

  Merge remote-tracking branch 'remotes/mcayland/qemu-sparc' into staging (2014-03-27 10:54:17 +0000)

are available in the git repository at:


  git://git.corpit.ru/qemu.git tags/trivial-patches-2014-03-27

for you to fetch changes up to 3768d505adcd6c3fe819432d7dabd312995fa678:

  linux-user: remove duplicate statement (2014-03-27 19:22:49 +0400)

----------------------------------------------------------------
trivial patches for 2014-03-27

----------------------------------------------------------------
Eduardo Habkost (1):
      CODING_STYLE: Section about mixed declarations

Mario Smarduch (1):
      fix return check for KVM_GET_DIRTY_LOG ioctl

Mark Cave-Ayland (2):
      doc: update sun4m documentation
      doc: update default PowerPC framebuffer settings

Peter Maydell (12):
      target-i386: Avoid shifting left into sign bit
      hw/intc/apic.c: Use uint32_t for mask word in foreach_apic
      hw/pci/pci_host.c: Avoid shifting left into sign bit
      hw/i386/acpi_build.c: Avoid shifting left into sign bit
      target-mips: Avoid shifting left into sign bit
      hw/usb/hcd-ohci.c: Avoid shifting left into sign bit
      hw/intc/openpic: Avoid shifting left into sign bit
      hw/ppc: Avoid shifting left into sign bit
      tests/libqos/pci-pc: Avoid shifting left into sign bit
      hw/intc/slavio_intctl: Avoid shifting left into sign bit
      hw/intc/xilinx_intc: Avoid shifting left into sign bit
      hw/pci-host/apb.c: Avoid shifting left into sign bit

Prasad Joshi (2):
      hw/timer/grlib_gptimer: remove unnecessary assignment
      linux-user: remove duplicate statement

Stefan Weil (5):
      target-s390x: Add missing 'static' and 'const' attributes
      target-arm: Add missing 'static' attribute
      hw/ide: Add missing 'static' attributes
      util: Add 'static' attribute to function implementation
      target-i386: Add missing 'static' and 'const' attributes

 CODING_STYLE                 |    7 +
 hw/i386/acpi-build.c         |    2 +-
 hw/ide/pci.c                 |    2 +-
 hw/intc/apic.c               |    6 +-
 hw/intc/openpic.c            |   14 +-
 hw/intc/slavio_intctl.c      |    2 +-
 hw/intc/xilinx_intc.c        |    3 +-
 hw/pci-host/apb.c            |   10 +-
 hw/pci/pci_host.c            |    3 +-
 hw/ppc/ppc.c                 |    2 +-
 hw/ppc/ppc440_bamboo.c       |    4 +-
 hw/ppc/ppc4xx_devs.c         |    2 +-
 hw/ppc/ppc_booke.c           |   24 +--
 hw/ppc/virtex_ml507.c        |    4 +-
 hw/timer/grlib_gptimer.c     |    1 -
 hw/usb/hcd-ohci.c            |   32 ++--
 kvm-all.c                    |    2 +-
 linux-user/signal.c          |    2 -
 qemu-doc.texi                |   11 +-
 qemu-options.hx              |   10 +-
 target-arm/machine.c         |    2 +-
 target-i386/cpu.c            |    2 +-
 target-i386/cpu.h            |  334 +++++++++++++++++++++---------------------
 target-i386/kvm.c            |    2 +-
 target-mips/cpu.h            |    2 +-
 target-mips/helper.c         |    8 +-
 target-mips/op_helper.c      |    2 +-
 target-mips/translate_init.c |   22 +--
 target-s390x/arch_dump.c     |    6 +-
 tests/libqos/pci-pc.c        |   12 +-
 util/module.c                |    2 +-
 31 files changed, 276 insertions(+), 261 deletions(-)

             reply	other threads:[~2014-03-27 15:28 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-27 15:28 Michael Tokarev [this message]
2014-03-27 15:28 ` [Qemu-devel] [PULL 01/23] target-s390x: Add missing 'static' and 'const' attributes Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 02/23] target-arm: Add missing 'static' attribute Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 03/23] hw/ide: Add missing 'static' attributes Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 04/23] util: Add 'static' attribute to function implementation Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 05/23] target-i386: Add missing 'static' and 'const' attributes Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 06/23] fix return check for KVM_GET_DIRTY_LOG ioctl Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 07/23] doc: update sun4m documentation Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 08/23] doc: update default PowerPC framebuffer settings Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 09/23] CODING_STYLE: Section about mixed declarations Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 10/23] target-i386: Avoid shifting left into sign bit Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 11/23] hw/intc/apic.c: Use uint32_t for mask word in foreach_apic Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 12/23] hw/pci/pci_host.c: Avoid shifting left into sign bit Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 13/23] hw/i386/acpi_build.c: " Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 14/23] target-mips: " Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 15/23] hw/usb/hcd-ohci.c: " Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 16/23] hw/intc/openpic: " Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 17/23] hw/ppc: " Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 18/23] tests/libqos/pci-pc: " Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 19/23] hw/intc/slavio_intctl: " Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 20/23] hw/intc/xilinx_intc: " Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 21/23] hw/pci-host/apb.c: " Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 22/23] hw/timer/grlib_gptimer: remove unnecessary assignment Michael Tokarev
2014-03-27 15:28 ` [Qemu-devel] [PULL 23/23] linux-user: remove duplicate statement Michael Tokarev
2014-03-27 17:10 ` [Qemu-devel] [PULL for-2.0 00/23] Trivial patches for 2014-03-27 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=1395934108-1694-1-git-send-email-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).