All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/21] SCSI, RCU, KVM changes for 2015-02-16
@ 2015-02-16 18:17 Paolo Bonzini
  2015-02-16 18:17 ` [Qemu-devel] [PULL 01/21] kvm_stat: Add kvm_exit reasons for aarch64 Paolo Bonzini
                   ` (21 more replies)
  0 siblings, 22 replies; 28+ messages in thread
From: Paolo Bonzini @ 2015-02-16 18:17 UTC (permalink / raw)
  To: qemu-devel

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

^ permalink raw reply	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2015-02-27 18:27 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-16 18:17 [Qemu-devel] [PULL 00/21] SCSI, RCU, KVM changes for 2015-02-16 Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 01/21] kvm_stat: Add kvm_exit reasons for aarch64 Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 02/21] qdev: support to get a device firmware path directly Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 03/21] vhost-scsi: add bootindex property Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 04/21] vhost-scsi: expose the TYPE_FW_PATH_PROVIDER interface Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 05/21] vhost-scsi: add a property for booting Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 06/21] vhost-scsi: set the bootable value of channel/target/lun Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 07/21] rcu: do not let RCU callbacks pile up indefinitely Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 08/21] rcu: run RCU callbacks under the BQL Paolo Bonzini
2015-02-25 17:16   ` Leon Alrae
2015-02-26 11:35     ` Paolo Bonzini
2015-02-26 13:40       ` Leon Alrae
2015-02-26 14:39         ` Paolo Bonzini
     [not found]           ` <54EF30AD.9040302@redhat.com>
     [not found]             ` <54EF425A.8010204@imgtec.com>
     [not found]               ` <1644893486.26759341.1424978182441.JavaMail.zimbra@zmail13.collab.prod.int.phx2.redhat.com>
     [not found]                 ` <54F03A7D.90401@imgtec.com>
     [not found]                   ` <54F06E59.2080609@redhat.com>
     [not found]                     ` <54F07E28.6090004@imgtec.com>
2015-02-27 18:27                       ` Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 09/21] memory: keep the owner of the AddressSpace alive until do_address_space_destroy Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 10/21] pcie: remove mmconfig memory leak and wrap mmconfig update with transaction Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 11/21] pci: split shpc_cleanup and shpc_free Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 12/21] docs: clarify memory region lifecycle Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 13/21] exec: introduce cpu_reload_memory_map Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 14/21] exec: make iotlb RCU-friendly Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 15/21] exec: RCUify AddressSpaceDispatch Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 16/21] rcu: introduce RCU-enabled QLIST Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 17/21] rcu: add g_free_rcu Paolo Bonzini
2015-02-16 18:17 ` [Qemu-devel] [PULL 18/21] exec: protect mru_block with RCU Paolo Bonzini
2015-02-16 18:18 ` [Qemu-devel] [PULL 19/21] cosmetic changes preparing for the following patches Paolo Bonzini
2015-02-16 18:18 ` [Qemu-devel] [PULL 20/21] exec: convert ram_list to QLIST Paolo Bonzini
2015-02-16 18:18 ` [Qemu-devel] [PULL 21/21] Convert ram_list to RCU Paolo Bonzini
2015-02-25 11:01 ` [Qemu-devel] [PULL 00/21] SCSI, RCU, KVM changes for 2015-02-16 Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.