From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55166) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VoDXc-0001fr-Ax for qemu-devel@nongnu.org; Wed, 04 Dec 2013 09:35:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VoDXO-0002jN-PU for qemu-devel@nongnu.org; Wed, 04 Dec 2013 09:35:04 -0500 Received: from e35.co.us.ibm.com ([32.97.110.153]:40714) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VoDXO-0002jF-JA for qemu-devel@nongnu.org; Wed, 04 Dec 2013 09:34:50 -0500 Received: from /spool/local by e35.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 4 Dec 2013 07:34:49 -0700 From: Michael Roth Date: Wed, 4 Dec 2013 08:34:07 -0600 Message-Id: <1386167679-13021-1-git-send-email-mdroth@linux.vnet.ibm.com> Subject: [Qemu-devel] Patch Round-up for stable 1.6.2, freeze on 2013-12-06 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-stable@nongnu.org Hi everyone, The following new patches are queued for QEMU stable v1.6.2: https://github.com/mdroth/qemu/commits/stable-1.6-staging The release is planned for 2013-12-09: http://wiki.qemu.org/Planning/1.6 Please respond here or CC qemu-stable@nongnu.org on any patches you think should be included in the release. The cut-off date is has been extended to 2013-12-06 due to the round-up email going out late. Testing/feedback is greatly appreciated. Thanks! Alex Williamson (1): vfio-pci: Fix multifunction=on Alexey Kardashevskiy (1): memory: fix 128 arithmetic in info mtree Amit Shah (3): char: move backends' io watch tag to CharDriverState char: use common function to disable callbacks on chardev close char: remove watch callback on chardev detach from frontend Amos Kong (2): virtio-net: fix the memory leak in rxfilter_notify() rng-egd: offset the point when repeatedly read from the buffer Bandan Das (1): pci: unregister vmstate_pcibus on unplug Cole Robinson (1): Fix pc migration from qemu <= 1.5 Fam Zheng (1): vmdk: Fix vmdk_parse_extents Hans de Goede (1): audio: honor QEMU_AUDIO_TIMER_PERIOD instead of waking up every *nano* second Igor Mammedov (1): qdev-monitor: Fix crash when device_add is called with abstract driver Jason Wang (1): virtio-net: only delete bh that existed Markus Armbruster (2): tests: Fix schema parser test for in-tree build tests: Update .gitignore for test-int128 and test-bitops Matthew Daley (1): xen_disk: mark ioreq as mapped before unmapping in error case Max Filippov (1): exec: fix breakpoint_invalidate when pc may not be translated Max Reitz (1): qcow2: count_contiguous_clusters and compression Mike Frysinger (1): configure: detect endian via compile test Paolo Bonzini (1): monitor: eliminate monitor_event_state_lock Peter Lieven (1): qcow2: fix possible corruption when reading multiple clusters Peter Maydell (1): configure: Explicitly set ARFLAGS so we can build with GNU Make 4.0 Richard Henderson (1): Adjust qapi-visit for python-2.4.3 Stefan Hajnoczi (1): qdev-monitor: Unref device when device_add fails Stefan Weil (5): tci: Add implementation of rotl_i64, rotr_i64 bitops: Add rotate functions (rol8, ror8, ...) misc: Use new rotate functions qemu-char: Fix potential out of bounds access to local arrays linux-user: Fix stat64 syscall for SPARC64 Vlad Yasevich (1): qom: Fix memory leak in object_property_set_link() Wenchao Xia (2): qapi: fix memleak by adding implict struct functions in dealloc visitor tests: fix memleak in error path test for input visitor audio/audio.c | 3 +- backends/rng-egd.c | 4 +- block/qcow2-cluster.c | 7 +++- block/vmdk.c | 7 +++- configure | 45 +++++++++------------ exec.c | 6 ++- hw/block/xen_disk.c | 1 + hw/misc/vfio.c | 7 ++++ hw/net/virtio-net.c | 10 ++--- hw/pci-host/piix.c | 9 ++++- hw/pci-host/q35.c | 10 ++++- hw/pci/pci.c | 8 ++++ include/hw/i386/pc.h | 8 ++++ include/hw/pci-host/q35.h | 1 + include/qemu/bitops.h | 80 +++++++++++++++++++++++++++++++++++++ include/sysemu/char.h | 1 + linux-user/syscall.c | 6 +-- linux-user/syscall_defs.h | 14 +++++++ memory.c | 4 +- monitor.c | 6 --- qapi/qapi-dealloc-visitor.c | 20 ++++++++++ qdev-monitor.c | 8 ++++ qemu-char.c | 86 +++++++++++++++------------------------- qom/object.c | 5 ++- scripts/qapi-visit.py | 17 ++++++-- target-arm/iwmmxt_helper.c | 2 +- tcg/optimize.c | 12 ++---- tcg/tci/tcg-target.c | 1 - tci.c | 14 +++++-- tests/.gitignore | 3 ++ tests/Makefile | 8 ++-- tests/test-qmp-input-visitor.c | 1 + 32 files changed, 287 insertions(+), 127 deletions(-)