qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/19] Multithread, multiarch, multicompiler, multi^WKVM changes for 2015-07-06
Date: Mon,  6 Jul 2015 14:34:49 +0200	[thread overview]
Message-ID: <1436186108-29747-1-git-send-email-pbonzini@redhat.com> (raw)

The following changes since commit 0a4a0312bf8b029cbd32a97db2cad669cf65ac49:

  Merge remote-tracking branch 'remotes/stefanha/tags/net-pull-request' into staging (2015-06-25 14:03:55 +0100)

are available in the git repository at:

  git://github.com/bonzini/qemu.git tags/for-upstream

for you to fetch changes up to 946e7bc4daddad21bd2f370c657dfb8b7209980e:

  exec: skip MMIO regions correctly in cpu_physical_memory_write_rom_internal (2015-07-06 14:30:21 +0200)

----------------------------------------------------------------
* more of Peter Crosthwaite's multiarch preparation patches
* unlocked MMIO support in KVM
* support for compilation with ICC

----------------------------------------------------------------
Artyom Tarasenko (2):
      qemu-common: add VEC_OR macro
      cutils: allow compilation with icc

Jan Kiszka (4):
      memory: Add global-locking property to memory regions
      memory: let address_space_rw/ld*/st* run outside the BQL
      kvm: First step to push iothread lock out of inner run loop
      kvm: Switch to unlocked PIO

Paolo Bonzini (6):
      main-loop: use qemu_mutex_lock_iothread consistently
      main-loop: introduce qemu_mutex_iothread_locked
      exec: pull qemu_flush_coalesced_mmio_buffer() into address_space_rw/ld*/st*
      acpi: mark PMTIMER as unlocked
      kvm: Switch to unlocked MMIO
      exec: skip MMIO regions correctly in cpu_physical_memory_write_rom_internal

Peter Crosthwaite (5):
      memory_mapping: Rework cpu related includes
      cpu-defs: Move CPU_TEMP_BUF_NLONGS to tcg
      include/exec: Move standard exceptions to cpu-all.h
      include/exec: Move tb hash functions out
      cpu-defs: Move out TB_JMP defines

Peter Maydell (1):
      Stop including qemu-common.h in memory.h

马文霜 (1):
      Fix irq route entries exceeding KVM_MAX_IRQ_ROUTES

 cpu-exec.c                |  1 +
 cpus.c                    | 19 +++++++++--
 exec.c                    | 83 ++++++++++++++++++++++++++++++++++++++++++++++-
 hw/acpi/core.c            |  1 +
 include/exec/cpu-all.h    |  6 ++++
 include/exec/cpu-common.h |  2 ++
 include/exec/cpu-defs.h   | 15 ---------
 include/exec/exec-all.h   | 20 ------------
 include/exec/memory.h     | 27 ++++++++++++++-
 include/exec/tb-hash.h    | 51 +++++++++++++++++++++++++++++
 include/hw/arm/arm.h      |  1 +
 include/qemu-common.h     |  7 ++--
 include/qemu/fprintf-fn.h | 16 +++++++++
 include/qemu/main-loop.h  | 10 ++++++
 kvm-all.c                 | 25 +++++++++-----
 memory.c                  | 23 +++++++------
 memory_mapping.c          |  2 +-
 stubs/iothread-lock.c     |  5 +++
 target-i386/kvm.c         | 24 ++++++++++++++
 target-mips/kvm.c         |  4 +++
 target-ppc/kvm.c          |  7 ++++
 target-s390x/kvm.c        |  3 ++
 target-s390x/mmu_helper.c |  2 +-
 tcg/tcg.h                 |  2 ++
 translate-all.c           |  1 +
 util/cutils.c             | 14 ++++----
 26 files changed, 298 insertions(+), 73 deletions(-)
 create mode 100644 include/exec/tb-hash.h
 create mode 100644 include/qemu/fprintf-fn.h
-- 
2.4.3

             reply	other threads:[~2015-07-06 12:35 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-06 12:34 Paolo Bonzini [this message]
2015-07-06 12:34 ` [Qemu-devel] [PULL 01/19] qemu-common: add VEC_OR macro Paolo Bonzini
2015-07-06 12:34 ` [Qemu-devel] [PULL 02/19] cutils: allow compilation with icc Paolo Bonzini
2015-07-06 12:34 ` [Qemu-devel] [PULL 03/19] memory_mapping: Rework cpu related includes Paolo Bonzini
2015-07-06 12:34 ` [Qemu-devel] [PULL 04/19] cpu-defs: Move CPU_TEMP_BUF_NLONGS to tcg Paolo Bonzini
2015-07-06 12:34 ` [Qemu-devel] [PULL 05/19] include/exec: Move standard exceptions to cpu-all.h Paolo Bonzini
2015-07-06 12:34 ` [Qemu-devel] [PULL 06/19] include/exec: Move tb hash functions out Paolo Bonzini
2015-07-06 12:34 ` [Qemu-devel] [PULL 07/19] cpu-defs: Move out TB_JMP defines Paolo Bonzini
2015-07-06 12:34 ` [Qemu-devel] [PULL 08/19] Fix irq route entries exceeding KVM_MAX_IRQ_ROUTES Paolo Bonzini
2015-07-06 12:34 ` [Qemu-devel] [PULL 09/19] main-loop: use qemu_mutex_lock_iothread consistently Paolo Bonzini
2015-07-06 12:34 ` [Qemu-devel] [PULL 10/19] main-loop: introduce qemu_mutex_iothread_locked Paolo Bonzini
2015-07-06 12:35 ` [Qemu-devel] [PULL 11/19] memory: Add global-locking property to memory regions Paolo Bonzini
2015-07-06 12:35 ` [Qemu-devel] [PULL 12/19] exec: pull qemu_flush_coalesced_mmio_buffer() into address_space_rw/ld*/st* Paolo Bonzini
2015-07-06 12:35 ` [Qemu-devel] [PULL 13/19] memory: let address_space_rw/ld*/st* run outside the BQL Paolo Bonzini
2015-07-06 12:35 ` [Qemu-devel] [PULL 14/19] kvm: First step to push iothread lock out of inner run loop Paolo Bonzini
2015-07-06 12:35 ` [Qemu-devel] [PULL 15/19] kvm: Switch to unlocked PIO Paolo Bonzini
2015-07-06 12:35 ` [Qemu-devel] [PULL 16/19] acpi: mark PMTIMER as unlocked Paolo Bonzini
2015-07-06 12:35 ` [Qemu-devel] [PULL 17/19] kvm: Switch to unlocked MMIO Paolo Bonzini
2015-07-06 12:35 ` [Qemu-devel] [PULL 18/19] Stop including qemu-common.h in memory.h Paolo Bonzini
2015-07-06 13:02   ` Peter Maydell
2015-07-06 12:35 ` [Qemu-devel] [PULL 19/19] exec: skip MMIO regions correctly in cpu_physical_memory_write_rom_internal Paolo Bonzini

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=1436186108-29747-1-git-send-email-pbonzini@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=qemu-devel@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).