qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/17] Misc patches for QEMU 3.1 hard freeze (?)
@ 2018-11-06 21:37 Paolo Bonzini
  2018-11-06 21:37 ` [Qemu-devel] [PULL 01/17] icount: fix deadlock when all cpus are sleeping Paolo Bonzini
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Paolo Bonzini @ 2018-11-06 21:37 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit fc3d1bad1edf08871275cf469a64e12dae4eba96:

  oslib-posix: Use MAP_STACK in qemu_alloc_stack() on OpenBSD (2018-11-06 10:52:23 +0000)

are available in the git repository at:

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

for you to fetch changes up to a458774ad711bceabefbf01e8f0b91d86ec72e0c:

  util/qemu-thread-posix: Fix qemu_thread_atexit* for OSX (2018-11-06 21:35:06 +0100)

Vitaly's patch is a bit late; unfortunately I couldn't resend the pull
request yesterday because of a long weekend.  On the other hand this
meant I could include three more bugfix series, and also fix some nits
pointed out by Laszlo who just came back from his own vacation.

----------------------------------------------------------------
* icount fix (Clement)
* dumping fixes for non-volatile memory (Marc-André, myself)
* x86 emulation fix (Rudolf)
* recent Hyper-V CPUID flag (Vitaly)
* Q35 doc fix (Daniel)
* lsi fix (Prasad)
* SCSI block limits emulation fixes (myself)
* qemu_thread_atexit rework (Peter)
* ivshmem memory leak fix (Igor)

----------------------------------------------------------------
Clement Deschamps (1):
      icount: fix deadlock when all cpus are sleeping

Daniel P. Berrangé (1):
      i386: clarify that the Q35 machine type implements a P35 chipset

Igor Mammedov (1):
      ivshmem: fix memory backend leak

Marc-André Lureau (3):
      memory: learn about non-volatile memory region
      nvdimm: set non-volatile on the memory region
      memory-mapping: skip non-volatile memory regions in GuestPhysBlockList

Paolo Bonzini (6):
      MAINTAINERS: remove or downgrade myself to reviewer from some subsystems
      scripts/dump-guest-memory: Synchronize with guest_phys_blocks_region_add
      scsi-generic: keep VPD page list sorted
      scsi-generic: avoid out-of-bounds access to VPD page list
      scsi-generic: avoid invalid access to struct when emulating block limits
      scsi-generic: do not do VPD emulation for sense other than ILLEGAL_REQUEST

Peter Maydell (2):
      include/qemu/thread.h: Document qemu_thread_atexit* API
      util/qemu-thread-posix: Fix qemu_thread_atexit* for OSX

Prasad J Pandit (1):
      lsi53c895a: check message length value is valid

Rudolf Marek (1):
      target/i386: Clear RF on SYSCALL instruction

Vitaly Kuznetsov (1):
      x86: hv_evmcs CPU flag support

 MAINTAINERS                  | 13 +++----
 cpus.c                       |  8 ++++
 docs/devel/migration.rst     |  1 +
 hw/mem/nvdimm.c              |  1 +
 hw/misc/ivshmem.c            |  1 +
 hw/pci-host/q35.c            | 10 ++++-
 hw/scsi/Makefile.objs        |  2 +-
 hw/scsi/emulation.c          | 42 ++++++++++++++++++++
 hw/scsi/lsi53c895a.c         | 19 ++++++++-
 hw/scsi/scsi-disk.c          | 92 ++++++++++----------------------------------
 hw/scsi/scsi-generic.c       | 60 +++++++++++++++++++++--------
 include/exec/memory.h        | 25 ++++++++++++
 include/hw/pci/pci_ids.h     |  2 +-
 include/hw/scsi/emulation.h  | 16 ++++++++
 include/hw/scsi/scsi.h       |  1 -
 include/qemu/thread.h        | 22 +++++++++++
 memory.c                     | 45 +++++++++++++++++-----
 memory_mapping.c             |  3 +-
 scripts/dump-guest-memory.py |  4 +-
 target/i386/cpu.c            |  1 +
 target/i386/cpu.h            |  1 +
 target/i386/hyperv-proto.h   |  2 +
 target/i386/kvm.c            | 30 ++++++++++++++-
 target/i386/seg_helper.c     |  4 +-
 util/qemu-thread-posix.c     | 44 ++++++++++-----------
 25 files changed, 308 insertions(+), 141 deletions(-)
 create mode 100644 hw/scsi/emulation.c
 create mode 100644 include/hw/scsi/emulation.h
-- 
1.8.3.1

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

end of thread, other threads:[~2018-11-08 11:33 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-06 21:37 [Qemu-devel] [PULL 00/17] Misc patches for QEMU 3.1 hard freeze (?) Paolo Bonzini
2018-11-06 21:37 ` [Qemu-devel] [PULL 01/17] icount: fix deadlock when all cpus are sleeping Paolo Bonzini
2018-11-06 21:37 ` [Qemu-devel] [PULL 02/17] x86: hv_evmcs CPU flag support Paolo Bonzini
2018-11-06 21:37 ` [Qemu-devel] [PULL 03/17] i386: clarify that the Q35 machine type implements a P35 chipset Paolo Bonzini
2018-11-06 21:37 ` [Qemu-devel] [PULL 04/17] ivshmem: fix memory backend leak Paolo Bonzini
2018-11-06 21:37 ` [Qemu-devel] [PULL 05/17] MAINTAINERS: remove or downgrade myself to reviewer from some subsystems Paolo Bonzini
2018-11-06 21:37 ` [Qemu-devel] [PULL 06/17] target/i386: Clear RF on SYSCALL instruction Paolo Bonzini
2018-11-06 21:37 ` [Qemu-devel] [PULL 07/17] memory: learn about non-volatile memory region Paolo Bonzini
2018-11-06 21:37 ` [Qemu-devel] [PULL 08/17] nvdimm: set non-volatile on the " Paolo Bonzini
2018-11-06 21:37 ` [Qemu-devel] [PULL 09/17] memory-mapping: skip non-volatile memory regions in GuestPhysBlockList Paolo Bonzini
2018-11-06 21:37 ` [Qemu-devel] [PULL 10/17] scripts/dump-guest-memory: Synchronize with guest_phys_blocks_region_add Paolo Bonzini
2018-11-06 21:37 ` [Qemu-devel] [PULL 11/17] lsi53c895a: check message length value is valid Paolo Bonzini
2018-11-06 21:37 ` [Qemu-devel] [PULL 12/17] scsi-generic: keep VPD page list sorted Paolo Bonzini
2018-11-06 21:37 ` [Qemu-devel] [PULL 13/17] scsi-generic: avoid out-of-bounds access to VPD page list Paolo Bonzini
2018-11-06 21:38 ` [Qemu-devel] [PULL 14/17] scsi-generic: avoid invalid access to struct when emulating block limits Paolo Bonzini
2018-11-06 21:38 ` [Qemu-devel] [PULL 15/17] scsi-generic: do not do VPD emulation for sense other than ILLEGAL_REQUEST Paolo Bonzini
2018-11-06 21:38 ` [Qemu-devel] [PULL 16/17] include/qemu/thread.h: Document qemu_thread_atexit* API Paolo Bonzini
2018-11-06 21:38 ` [Qemu-devel] [PULL 17/17] util/qemu-thread-posix: Fix qemu_thread_atexit* for OSX Paolo Bonzini
2018-11-06 23:08 ` [Qemu-devel] [PULL 00/17] Misc patches for QEMU 3.1 hard freeze (?) Peter Maydell
2018-11-08 11:33 ` 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).