qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/15] Misc changes for 2015-03-02
@ 2015-03-02 10:08 Paolo Bonzini
  2015-03-02 10:08 ` [Qemu-devel] [PULL 01/15] scsi: give device a parent before setting properties Paolo Bonzini
                   ` (16 more replies)
  0 siblings, 17 replies; 20+ messages in thread
From: Paolo Bonzini @ 2015-03-02 10:08 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 041ccc922ee474693a2869d4e3b59e920c739bc0:

  Merge remote-tracking branch 'remotes/qmp-unstable/queue/qmp' into staging (2015-02-26 12:16:46 +0000)

are available in the git repository at:

  git://github.com/bonzini/qemu.git tags/for-upstream

for you to fetch changes up to 21618b3e55ad2c6fede0bffcaea466091811ce59:

  cpus: be more paranoid in avoiding deadlocks (2015-03-02 10:57:07 +0100)

----------------------------------------------------------------
- more config options
- bootdevice, iscsi, virtio-scsi fixes
- build system patches for MinGW and config-devices.mak
- qemu_mutex_lock_iothread deadlock fixes
- another tiny patch from the record/replay series

----------------------------------------------------------------
David Gibson (3):
      Add specific config options for PCI-E bridges
      Create specific config option for "platform-bus"
      Give ivshmem its own config option

Fam Zheng (3):
      block: Forbid bdrv_set_aio_context outside BQL
      virtio-scsi-dataplane: Call blk_set_aio_context within BQL
      iscsi: Handle write protected case in reopen

Gonglei (1):
      bootdevice: fix segment fault when booting guest with '-kernel' and '-initrd'

Max Reitz (1):
      virtio-scsi: Allocate op blocker reason before blocking

Michael S. Tsirkin (2):
      Makefile: don't silence mak file test with V=1
      Makefile.target: binary depends on config-devices

Paolo Bonzini (3):
      scsi: give device a parent before setting properties
      cpus: fix deadlock and segfault in qemu_mutex_lock_iothread
      cpus: be more paranoid in avoiding deadlocks

Pavel Dovgalyuk (1):
      timer: replace time() with QEMU_CLOCK_HOST

Vasily Efimov (1):
      Makefile: fix up parallel building under MSYS+MinGW

 Makefile                           | 10 +++++-----
 Makefile.target                    |  4 +++-
 block/iscsi.c                      | 20 +++++++++++---------
 bootdevice.c                       | 13 +++++++++----
 cpus.c                             | 12 ++++++++----
 default-configs/arm-softmmu.mak    |  5 +++++
 default-configs/i386-softmmu.mak   |  3 +++
 default-configs/pci.mak            |  1 +
 default-configs/ppc-softmmu.mak    |  1 +
 default-configs/ppc64-softmmu.mak  |  1 +
 default-configs/x86_64-softmmu.mak |  3 +++
 hw/core/Makefile.objs              |  2 +-
 hw/misc/Makefile.objs              |  4 +---
 hw/pci-bridge/Makefile.objs        |  5 +++--
 hw/scsi/scsi-bus.c                 |  5 +++++
 hw/scsi/virtio-scsi-dataplane.c    |  4 ----
 hw/scsi/virtio-scsi.c              | 19 +++++++++++--------
 include/block/block.h              |  3 +--
 scripts/make_device_config.sh      |  2 +-
 vl.c                               | 12 ++++++++----
 20 files changed, 81 insertions(+), 48 deletions(-)
-- 
2.3.0

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

end of thread, other threads:[~2015-03-03 13:09 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-02 10:08 [Qemu-devel] [PULL 00/15] Misc changes for 2015-03-02 Paolo Bonzini
2015-03-02 10:08 ` [Qemu-devel] [PULL 01/15] scsi: give device a parent before setting properties Paolo Bonzini
2015-03-02 10:08 ` [Qemu-devel] [PULL 02/15] block: Forbid bdrv_set_aio_context outside BQL Paolo Bonzini
2015-03-02 10:08 ` [Qemu-devel] [PULL 03/15] virtio-scsi-dataplane: Call blk_set_aio_context within BQL Paolo Bonzini
2015-03-02 10:08 ` [Qemu-devel] [PULL 04/15] timer: replace time() with QEMU_CLOCK_HOST Paolo Bonzini
2015-03-02 10:08 ` [Qemu-devel] [PULL 05/15] bootdevice: fix segment fault when booting guest with '-kernel' and '-initrd' Paolo Bonzini
2015-03-02 10:08 ` [Qemu-devel] [PULL 06/15] Add specific config options for PCI-E bridges Paolo Bonzini
2015-03-02 10:08 ` [Qemu-devel] [PULL 07/15] Create specific config option for "platform-bus" Paolo Bonzini
2015-03-02 10:08 ` [Qemu-devel] [PULL 08/15] Give ivshmem its own config option Paolo Bonzini
2015-03-02 10:08 ` [Qemu-devel] [PULL 09/15] iscsi: Handle write protected case in reopen Paolo Bonzini
2015-03-02 10:08 ` [Qemu-devel] [PULL 10/15] Makefile: fix up parallel building under MSYS+MinGW Paolo Bonzini
2015-03-02 10:08 ` [Qemu-devel] [PULL 11/15] Makefile: don't silence mak file test with V=1 Paolo Bonzini
2015-03-02 10:08 ` [Qemu-devel] [PULL 12/15] Makefile.target: binary depends on config-devices Paolo Bonzini
2015-03-02 10:08 ` [Qemu-devel] [PULL 13/15] virtio-scsi: Allocate op blocker reason before blocking Paolo Bonzini
2015-03-02 10:08 ` [Qemu-devel] [PULL 14/15] cpus: fix deadlock and segfault in qemu_mutex_lock_iothread Paolo Bonzini
2015-03-02 10:08 ` [Qemu-devel] [PULL 15/15] cpus: be more paranoid in avoiding deadlocks Paolo Bonzini
2015-03-02 16:09 ` [Qemu-devel] [PULL 00/15] Misc changes for 2015-03-02 Eric Blake
2015-03-02 16:23   ` Paolo Bonzini
2015-03-02 17:15     ` Eric Blake
2015-03-03 13:09 ` Peter Maydell

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).