From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/25] First round of misc patches for QEMU 2.9
Date: Thu, 22 Dec 2016 16:22:35 +0100 [thread overview]
Message-ID: <20161222152300.32395-1-pbonzini@redhat.com> (raw)
The following changes since commit d1e8e8ecc3d2a1a72504912d671f1cbbac1b06e5:
Merge remote-tracking branch 'remotes/huth/tags/target-dirs-20161220' into staging (2016-12-21 21:11:48 +0000)
are available in the git repository at:
git://github.com/bonzini/qemu.git tags/for-upstream
for you to fetch changes up to 6c7c3c21f95dd9af8a0691c0dd29b07247984122:
x86: implement la57 paging mode (2016-12-22 16:01:04 +0100)
----------------------------------------------------------------
* core support for MemoryRegionCache from myself
* rules.mak speedup and cleanups from myself and Marc-Adnré
* multiboot command line fix from Vlad
* SCSI fixes from myself
* small qemu-timer speedup from myself
* x86 debugging improvements from Doug
* configurable Q35 devices from Chao
* x86 5-level paging support from Kirill
* x86 SHA_NI support for KVM from Yi Sun
* improved kvmclock migration logic from Marcelo
* bugfixes and doc fixes from others
----------------------------------------------------------------
Chao Peng (3):
pc: make smbus configurable
pc: make sata configurable
pc: make pit configurable
Doug Evans (2):
x86: Fix x86_64 'g' packet response to gdb from 32-bit mode.
target-i386: Fix eflags.TF/#DB handling of syscall/sysret insns
Kirill A. Shutemov (1):
x86: implement la57 paging mode
Li Qiang (1):
watchdog: 6300esb: add exit function
Marc-André Lureau (1):
build-sys: remove libtool left-over
Marcelo Tosatti (2):
kvm: sync linux headers
kvmclock: reduce kvmclock difference on migration
Paolo Bonzini (9):
exec: optimize remaining address_space_* cases
exec: introduce memory_ldst.inc.c
exec: introduce address_space_extend_translation
exec: introduce MemoryRegionCache
rules.mak: speedup save-vars load-vars
rules.mak: add more rules to avoid chaining
virtio-scsi: introduce virtio_scsi_acquire/release
qemu-timer: check active_timers outside lock/event
scsi-disk: fix VERIFY for scsi-block
Vlad Lungu (1):
multiboot: copy the cmdline verbatim, unescape module strings
Yaowei Bai (3):
timer: fix misleading comment in timer.h
main-loop: update comment for qemu_mutex_lock/unlock_iothread
block: drop remaining legacy aio functions in comment
Yi Sun (1):
target-i386: Add Intel SHA_NI instruction support.
Ziyue Yang (1):
hw/block/pflash_cfi*.c: fix confusing assert fail message
.gitignore | 4 -
Makefile | 9 +-
Makefile.objs | 1 -
Makefile.target | 1 +
configure | 2 -
exec.c | 687 ++++-------------------------
hw/block/pflash_cfi01.c | 13 +
hw/block/pflash_cfi02.c | 13 +
hw/i386/kvm/clock.c | 142 +++++-
hw/i386/multiboot.c | 20 +-
hw/i386/pc.c | 68 ++-
hw/i386/pc_piix.c | 2 +-
hw/i386/pc_q35.c | 39 +-
hw/scsi/scsi-disk.c | 9 +-
hw/scsi/virtio-scsi.c | 27 +-
hw/watchdog/wdt_i6300esb.c | 9 +
include/block/aio.h | 4 +-
include/exec/cpu-all.h | 23 +
include/exec/cpu-common.h | 15 -
include/exec/memory.h | 166 +++++++
include/hw/i386/pc.h | 12 +
include/qemu/main-loop.h | 4 +-
include/qemu/timer.h | 2 +-
include/qemu/typedefs.h | 1 +
include/standard-headers/linux/input.h | 1 +
include/standard-headers/linux/pci_regs.h | 15 +-
linux-headers/asm-arm/kvm.h | 7 +
linux-headers/asm-x86/unistd_32.h | 3 +
linux-headers/asm-x86/unistd_64.h | 3 +
linux-headers/asm-x86/unistd_x32.h | 3 +
linux-headers/linux/kvm.h | 7 +
memory_ldst.inc.c | 709 ++++++++++++++++++++++++++++++
qemu-timer.c | 20 +-
rules.mak | 26 +-
target/i386/arch_memory_mapping.c | 42 +-
target/i386/bpt_helper.c | 7 +
target/i386/cpu.c | 18 +-
target/i386/cpu.h | 3 +
target/i386/gdbstub.c | 52 ++-
target/i386/helper.c | 54 ++-
target/i386/helper.h | 1 +
target/i386/kvm.c | 7 +
target/i386/kvm_i386.h | 1 +
target/i386/monitor.c | 234 +++++++---
target/i386/translate.c | 29 +-
45 files changed, 1722 insertions(+), 793 deletions(-)
create mode 100644 memory_ldst.inc.c
--
2.9.3
next reply other threads:[~2016-12-22 15:23 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-12-22 15:22 Paolo Bonzini [this message]
2016-12-22 15:22 ` [Qemu-devel] [PULL 01/25] exec: optimize remaining address_space_* cases Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 02/25] exec: introduce memory_ldst.inc.c Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 03/25] exec: introduce address_space_extend_translation Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 04/25] exec: introduce MemoryRegionCache Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 05/25] watchdog: 6300esb: add exit function Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 06/25] rules.mak: speedup save-vars load-vars Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 07/25] rules.mak: add more rules to avoid chaining Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 08/25] build-sys: remove libtool left-over Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 09/25] virtio-scsi: introduce virtio_scsi_acquire/release Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 10/25] qemu-timer: check active_timers outside lock/event Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 11/25] timer: fix misleading comment in timer.h Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 12/25] main-loop: update comment for qemu_mutex_lock/unlock_iothread Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 13/25] block: drop remaining legacy aio functions in comment Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 14/25] target-i386: Add Intel SHA_NI instruction support Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 15/25] pc: make smbus configurable Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 16/25] pc: make sata configurable Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 17/25] pc: make pit configurable Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 18/25] x86: Fix x86_64 'g' packet response to gdb from 32-bit mode Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 19/25] multiboot: copy the cmdline verbatim, unescape module strings Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 20/25] hw/block/pflash_cfi*.c: fix confusing assert fail message Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 21/25] scsi-disk: fix VERIFY for scsi-block Paolo Bonzini
2017-01-09 19:42 ` Peter Maydell
2017-01-10 9:36 ` Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 22/25] kvm: sync linux headers Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 23/25] kvmclock: reduce kvmclock difference on migration Paolo Bonzini
2016-12-22 15:22 ` [Qemu-devel] [PULL 24/25] target-i386: Fix eflags.TF/#DB handling of syscall/sysret insns Paolo Bonzini
2016-12-22 15:23 ` [Qemu-devel] [PULL 25/25] x86: implement la57 paging mode Paolo Bonzini
2016-12-22 15:58 ` [Qemu-devel] [PULL 00/25] First round of misc patches for QEMU 2.9 no-reply
2016-12-23 11:15 ` Peter Maydell
2016-12-23 12:12 ` Paolo Bonzini
2016-12-23 12:33 ` 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=20161222152300.32395-1-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).