qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/30] Misc changes for 2016-05-27
@ 2016-05-30 15:12 Paolo Bonzini
  2016-05-31  9:37 ` Peter Maydell
  0 siblings, 1 reply; 2+ messages in thread
From: Paolo Bonzini @ 2016-05-30 15:12 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit d6550e9ed2e1a60d889dfb721de00d9a4e3bafbe:

  Merge remote-tracking branch 'remotes/riku/tags/pull-linux-user-20160527' into staging (2016-05-27 14:05:48 +0100)

are available in the git repository at:

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

for you to fetch changes up to 0878d0e11ba8013dd759c6921cbf05ba6a41bd71:

  exec: hide mr->ram_addr from qemu_get_ram_ptr users (2016-05-29 09:11:12 +0200)

Dropped the jinxed DMA change once more, and seriously thinking of
rewriting the whole thing in assembly language...

----------------------------------------------------------------
* docs/atomics fixes and atomic_rcu_* optimization (Emilio)
* NBD bugfix (Eric)
* Memory fixes and cleanups (Paolo, Paul)
* scsi-block support for SCSI status, including persistent
  reservations (Paolo)
* kvm_stat moves to the Linux repository
* SCSI bug fixes (Peter, Prasad)
* Killing qemu_char_get_next_serial, non-ARM parts (Xiaoqiang)

----------------------------------------------------------------
Emilio G. Cota (3):
      docs/atomics: update atomic_read/set comparison with Linux
      atomics: emit an smp_read_barrier_depends() barrier only for Alpha and Thread Sanitizer
      atomics: do not emit consume barrier for atomic_rcu_read

Eric Blake (1):
      nbd: Don't trim unrequested bytes

Fam Zheng (1):
      scsi-generic: Merge block max xfer len in INQUIRY response

Paolo Bonzini (13):
      Revert "memory: Drop FlatRange.romd_mode"
      kvm_stat: Remove
      bt: rewrite csrhci_write to avoid out-of-bounds writes
      docs/atomics: update comparison with Linux
      scsi-disk: introduce a common base class
      scsi-disk: introduce dma_readv and dma_writev
      scsi-disk: add need_fua_emulation to SCSIDiskClass
      scsi-disk: introduce scsi_disk_req_check_error
      scsi-block: always use SG_IO
      memory: remove qemu_get_ram_fd, qemu_set_ram_fd, qemu_ram_block_host_ptr
      exec: remove ram_addr argument from qemu_ram_block_from_host
      memory: split memory_region_from_host from qemu_ram_addr_from_host
      exec: hide mr->ram_addr from qemu_get_ram_ptr users

Paul Durrant (1):
      xen-hvm: ignore background I/O sections

Peter Lieven (1):
      block/iscsi: avoid potential overflow of acb->task->cdb

Prasad J Pandit (5):
      scsi: pvscsi: check command descriptor ring buffer size (CVE-2016-4952)
      scsi: mptsas: infinite loop while fetching requests
      scsi: megasas: use appropriate property buffer size
      scsi: megasas: initialise local configuration data buffer
      scsi: megasas: check 'read_queue_head' index value

xiaoqiang zhao (5):
      hw/char: QOM'ify escc.c
      hw/char: QOM'ify etraxfs_ser.c
      hw/char: QOM'ify lm32_juart.c
      hw/char: QOM'ify lm32_uart.c
      hw/char: QOM'ify milkymist-uart.c

 Makefile                     |   9 -
 block/iscsi.c                |   7 +
 cputlb.c                     |   3 +-
 docs/atomics.txt             |  38 +-
 exec.c                       | 110 ++----
 hw/bt/hci-csr.c              |  67 ++--
 hw/char/escc.c               |  30 +-
 hw/char/etraxfs_ser.c        |  27 +-
 hw/char/lm32_juart.c         |  17 +-
 hw/char/lm32_uart.c          |  28 +-
 hw/char/milkymist-uart.c     |  10 +-
 hw/cris/axis_dev88.c         |   4 +-
 hw/lm32/lm32.h               |  19 +-
 hw/lm32/lm32_boards.c        |   9 +-
 hw/lm32/milkymist-hw.h       |   4 +-
 hw/lm32/milkymist.c          |   4 +-
 hw/misc/ivshmem.c            |   5 +-
 hw/scsi/megasas.c            |   6 +-
 hw/scsi/mptsas.c             |   9 +-
 hw/scsi/scsi-disk.c          | 415 ++++++++++++++++------
 hw/scsi/scsi-generic.c       |  12 +
 hw/scsi/vmw_pvscsi.c         |  24 +-
 hw/virtio/vhost-user.c       |  25 +-
 include/exec/cpu-common.h    |   4 +-
 include/exec/memory.h        |  36 +-
 include/exec/ram_addr.h      |   3 -
 include/hw/cris/etraxfs.h    |  16 +
 include/qemu/atomic.h        |  25 +-
 memory.c                     |  43 ++-
 migration/postcopy-ram.c     |   3 +-
 nbd/server.c                 |  20 +-
 scripts/dump-guest-memory.py |  19 +-
 scripts/kvm/kvm_stat         | 825 -------------------------------------------
 scripts/kvm/kvm_stat.texi    |  55 ---
 target-i386/kvm.c            |   6 +-
 xen-hvm.c                    |  14 +-
 36 files changed, 709 insertions(+), 1242 deletions(-)
 delete mode 100755 scripts/kvm/kvm_stat
 delete mode 100644 scripts/kvm/kvm_stat.texi
-- 
2.5.5

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

* Re: [Qemu-devel] [PULL 00/30] Misc changes for 2016-05-27
  2016-05-30 15:12 [Qemu-devel] [PULL 00/30] Misc changes for 2016-05-27 Paolo Bonzini
@ 2016-05-31  9:37 ` Peter Maydell
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Maydell @ 2016-05-31  9:37 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: QEMU Developers

On 30 May 2016 at 16:12, Paolo Bonzini <pbonzini@redhat.com> wrote:
> The following changes since commit d6550e9ed2e1a60d889dfb721de00d9a4e3bafbe:
>
>   Merge remote-tracking branch 'remotes/riku/tags/pull-linux-user-20160527' into staging (2016-05-27 14:05:48 +0100)
>
> are available in the git repository at:
>
>   git://github.com/bonzini/qemu.git tags/for-upstream
>
> for you to fetch changes up to 0878d0e11ba8013dd759c6921cbf05ba6a41bd71:
>
>   exec: hide mr->ram_addr from qemu_get_ram_ptr users (2016-05-29 09:11:12 +0200)
>
> Dropped the jinxed DMA change once more, and seriously thinking of
> rewriting the whole thing in assembly language...
>
> ----------------------------------------------------------------
> * docs/atomics fixes and atomic_rcu_* optimization (Emilio)
> * NBD bugfix (Eric)
> * Memory fixes and cleanups (Paolo, Paul)
> * scsi-block support for SCSI status, including persistent
>   reservations (Paolo)
> * kvm_stat moves to the Linux repository
> * SCSI bug fixes (Peter, Prasad)
> * Killing qemu_char_get_next_serial, non-ARM parts (Xiaoqiang)
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM

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

end of thread, other threads:[~2016-05-31  9:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-30 15:12 [Qemu-devel] [PULL 00/30] Misc changes for 2016-05-27 Paolo Bonzini
2016-05-31  9:37 ` 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).