From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59974) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YNQFH-0000jN-Vi for qemu-devel@nongnu.org; Mon, 16 Feb 2015 13:18:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YNQFE-0001IA-Vh for qemu-devel@nongnu.org; Mon, 16 Feb 2015 13:18:11 -0500 Received: from mail-we0-x234.google.com ([2a00:1450:400c:c03::234]:53847) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YNQFE-0001Hw-Ot for qemu-devel@nongnu.org; Mon, 16 Feb 2015 13:18:08 -0500 Received: by mail-we0-f180.google.com with SMTP id k11so30690379wes.11 for ; Mon, 16 Feb 2015 10:18:08 -0800 (PST) Received: from playground.station (net-93-66-73-217.cust.vodafonedsl.it. [93.66.73.217]) by mx.google.com with ESMTPSA id p6sm20746248wia.14.2015.02.16.10.18.06 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 16 Feb 2015 10:18:07 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Mon, 16 Feb 2015 19:17:41 +0100 Message-Id: <1424110682-14334-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 00/21] SCSI, RCU, KVM changes for 2015-02-16 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org The following changes since commit bc5baffa3554e4c0d20c1dbe879aec931866bd69: vfio: Fix debug message compile error (2015-02-10 10:25:44 -0700) are available in the git repository at: git://github.com/bonzini/qemu.git tags/for-upstream for you to fetch changes up to 0dc3f44aca18b1be8b425f3f4feb4b3e8d68de2e: Convert ram_list to RCU (2015-02-16 17:31:55 +0100) ---------------------------------------------------------------- - vhost-scsi: add bootindex property - RCU: fix MemoryRegion lifetime issues in PCI; document the rules; convert of AddressSpaceDispatch and RAMList - KVM: add kvm_exit reasons for aarch64 ---------------------------------------------------------------- Gonglei (5): qdev: support to get a device firmware path directly vhost-scsi: add bootindex property vhost-scsi: expose the TYPE_FW_PATH_PROVIDER interface vhost-scsi: add a property for booting vhost-scsi: set the bootable value of channel/target/lun Mike Day (4): rcu: introduce RCU-enabled QLIST cosmetic changes preparing for the following patches exec: convert ram_list to QLIST Convert ram_list to RCU Paolo Bonzini (11): rcu: do not let RCU callbacks pile up indefinitely rcu: run RCU callbacks under the BQL memory: keep the owner of the AddressSpace alive until do_address_space_destroy pcie: remove mmconfig memory leak and wrap mmconfig update with transaction pci: split shpc_cleanup and shpc_free docs: clarify memory region lifecycle exec: introduce cpu_reload_memory_map exec: make iotlb RCU-friendly exec: RCUify AddressSpaceDispatch rcu: add g_free_rcu exec: protect mru_block with RCU Wei Huang (1): kvm_stat: Add kvm_exit reasons for aarch64 arch_init.c | 73 +++++++--- bootdevice.c | 31 ++-- cpu-exec.c | 33 +++++ cpus.c | 2 +- cputlb.c | 13 +- docs/memory.txt | 74 +++++++--- docs/rcu.txt | 11 +- exec.c | 295 ++++++++++++++++++++++++++------------ hw/9pfs/virtio-9p-synth.c | 2 +- hw/core/qdev.c | 7 + hw/i386/intel_iommu.c | 3 + hw/pci-bridge/pci_bridge_dev.c | 14 +- hw/pci-host/apb.c | 1 + hw/pci/pcie_host.c | 7 +- hw/pci/shpc.c | 11 +- hw/ppc/spapr_iommu.c | 1 + hw/scsi/vhost-scsi.c | 35 +++++ hw/virtio/virtio-pci.c | 2 + include/exec/cpu-all.h | 13 +- include/exec/cputlb.h | 2 +- include/exec/exec-all.h | 5 +- include/hw/pci/shpc.h | 1 + include/hw/qdev-core.h | 1 + include/hw/virtio/vhost-scsi.h | 5 + include/hw/virtio/virtio-scsi.h | 1 + include/qemu/queue.h | 11 -- include/qemu/rcu.h | 8 ++ include/qemu/rcu_queue.h | 134 ++++++++++++++++++ include/qom/cpu.h | 1 + memory.c | 5 + scripts/dump-guest-memory.py | 8 +- scripts/kvm/kvm_stat | 42 +++++- softmmu_template.h | 4 +- tests/Makefile | 7 +- tests/test-rcu-list.c | 306 ++++++++++++++++++++++++++++++++++++++++ util/rcu.c | 19 ++- 36 files changed, 997 insertions(+), 191 deletions(-) create mode 100644 include/qemu/rcu_queue.h create mode 100644 tests/test-rcu-list.c -- 2.3.0