From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/17] Misc changes for QEMU 2.10-rc1 (?)
Date: Tue, 1 Aug 2017 18:17:08 +0200 [thread overview]
Message-ID: <1501604245-33460-1-git-send-email-pbonzini@redhat.com> (raw)
The following changes since commit 7d48cf8102a10e4a54333811bafb5eb566509268:
Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-request' into staging (2017-08-01 14:33:56 +0100)
are available in the git repository at:
git://github.com/bonzini/qemu.git tags/for-upstream
for you to fetch changes up to 33f21e4f044ac1c37f60edc1f1aee628be8f463b:
mc146818rtc: implement UIP latching as intended (2017-08-01 17:27:34 +0200)
----------------------------------------------------------------
* Xen fix (Anthony)
* chardev fixes (Anton, Marc-André)
* small dead code removal (Zhongyi)
* documentation (Dan)
* bugfixes (David)
* decrease migration downtime (Jay)
* improved error output (Laurent)
* RTC tests and bugfix (me)
* Bluetooth clang analyzer fix (me)
* KVM CPU hotplug race (Peng Hao)
* Two other patches from Philippe's clang analyzer series
----------------------------------------------------------------
Anthony PERARD (1):
exec: Add lock parameter to qemu_ram_ptr_length
Anton Nefedov (1):
char: don't exit on hmp 'chardev-add help'
Daniel P. Berrange (2):
docs: document deprecation policy & deprecated features in appendix
qemu-options: document existance of versioned machine types
Dr. David Alan Gilbert (2):
vl.c/exit: pause cpus before closing block devices
cpu_physical_memory_sync_dirty_bitmap: Fix alignment check
Jay Zhou (1):
migration: optimize the downtime
Laurent Vivier (1):
accel: cleanup error output
Mao Zhongyi (2):
hw/scsi/vmw_pvscsi: Remove the dead error handling
hw/scsi/vmw_pvscsi: Convert to realize
Marc-André Lureau (1):
char-fd: remove useless chr pointer
Paolo Bonzini (5):
bt: stop the sdp memory allocation craziness
rtc-test: cleanup register_b_set_flag test
rtc-test: introduce more update tests
mc146818rtc: simplify check_update_timer
mc146818rtc: implement UIP latching as intended
Peng Hao (1):
target-i386: kvm_get/put_vcpu_events don't handle sipi_vector
accel/accel.c | 20 +++---
chardev/char-fd.c | 1 -
chardev/char.c | 2 +-
exec.c | 12 ++--
hw/bt/sdp.c | 17 +++--
hw/scsi/vmw_pvscsi.c | 12 +---
hw/timer/mc146818rtc.c | 37 +++++-----
include/chardev/char-fd.h | 2 +-
include/chardev/char.h | 4 +-
include/exec/ram_addr.h | 7 +-
memory.c | 36 +++++++++-
qemu-doc.texi | 175 ++++++++++++++++++++++++++++++++++++++++++++++
qemu-options.hx | 15 +++-
target/i386/kvm.c | 35 ++++++----
tests/rtc-test.c | 156 +++++++++++++++++++++++++++++++++--------
vl.c | 12 ++--
16 files changed, 437 insertions(+), 106 deletions(-)
--
1.8.3.1
next reply other threads:[~2017-08-01 16:17 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-01 16:17 Paolo Bonzini [this message]
2017-08-01 16:17 ` [Qemu-devel] [PULL 01/17] vl.c/exit: pause cpus before closing block devices Paolo Bonzini
2017-08-01 16:17 ` [Qemu-devel] [PULL 02/17] cpu_physical_memory_sync_dirty_bitmap: Fix alignment check Paolo Bonzini
2017-08-01 17:56 ` Peter Maydell
2017-08-01 18:04 ` Dr. David Alan Gilbert
2017-08-02 7:39 ` Paolo Bonzini
2017-08-07 10:07 ` Alex Bennée
2017-08-01 16:17 ` [Qemu-devel] [PULL 03/17] accel: cleanup error output Paolo Bonzini
2017-08-01 16:17 ` [Qemu-devel] [PULL 04/17] char-fd: remove useless chr pointer Paolo Bonzini
2017-08-01 16:17 ` [Qemu-devel] [PULL 05/17] char: don't exit on hmp 'chardev-add help' Paolo Bonzini
2017-08-01 16:17 ` [Qemu-devel] [PULL 06/17] docs: document deprecation policy & deprecated features in appendix Paolo Bonzini
2017-08-01 16:17 ` [Qemu-devel] [PULL 07/17] target-i386: kvm_get/put_vcpu_events don't handle sipi_vector Paolo Bonzini
2017-08-01 16:17 ` [Qemu-devel] [PULL 08/17] exec: Add lock parameter to qemu_ram_ptr_length Paolo Bonzini
2017-08-01 16:17 ` [Qemu-devel] [PULL 09/17] bt: stop the sdp memory allocation craziness Paolo Bonzini
2017-08-01 16:17 ` [Qemu-devel] [PULL 10/17] qemu-options: document existance of versioned machine types Paolo Bonzini
2017-08-01 16:17 ` [Qemu-devel] [PULL 11/17] migration: optimize the downtime Paolo Bonzini
2017-08-01 16:17 ` [Qemu-devel] [PULL 12/17] hw/scsi/vmw_pvscsi: Remove the dead error handling Paolo Bonzini
2017-08-01 16:17 ` [Qemu-devel] [PULL 13/17] hw/scsi/vmw_pvscsi: Convert to realize Paolo Bonzini
2017-08-01 16:17 ` [Qemu-devel] [PULL 14/17] rtc-test: cleanup register_b_set_flag test Paolo Bonzini
2017-08-01 16:17 ` [Qemu-devel] [PULL 15/17] rtc-test: introduce more update tests Paolo Bonzini
2017-08-01 16:17 ` [Qemu-devel] [PULL 16/17] mc146818rtc: simplify check_update_timer Paolo Bonzini
2017-08-01 16:17 ` [Qemu-devel] [PULL 17/17] mc146818rtc: implement UIP latching as intended Paolo Bonzini
2017-08-01 16:48 ` [Qemu-devel] [PULL 00/17] Misc changes for QEMU 2.10-rc1 (?) no-reply
2017-08-01 16:50 ` Paolo Bonzini
2017-08-01 17:10 ` Peter Maydell
2017-08-01 17:17 ` Paolo Bonzini
2017-08-01 17:22 ` Peter Maydell
2017-08-01 17:26 ` Paolo Bonzini
2017-08-01 17:56 ` Peter Maydell
2017-08-02 5:48 ` 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=1501604245-33460-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).