qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/17] Second batch of misc patches for QEMU 2.8
Date: Thu, 15 Sep 2016 16:21:39 +0200	[thread overview]
Message-ID: <1473949316-31264-1-git-send-email-pbonzini@redhat.com> (raw)

The following changes since commit 083d012a388e7e2a8bfd9144c2c9bcceb29a78fc:

  cutils: Add generic prefetch (2016-09-13 19:13:32 +0200)

are available in the git repository at:

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

for you to fetch changes up to 39c88f56977f9ad2451444d70dd21d8189d74f99:

  pcspk: adding vmstate for save/restore (2016-09-15 15:10:06 +0200)

----------------------------------------------------------------
* Support multiple -d trace:PATTERN arguments (Daniel)
* SCSI cleanups/fixes for removable meia (Fam)
* SCSI security fixes (Li Qiang, PJP)
* qemu-char segfault fix (Lin Ma)
* "make help" and qemu-socket cleanups (Marc-André)
* end of the buffer_is_zero reword (Richard)
* Fix target-i386 syscall segfault (Stanislav)
* split irqchip fix/robustification (Wanpeng)
* misc cleanups (me, Jiangang)
* x86 vmstate fixes (Pavel)

----------------------------------------------------------------
Daniel P. Berrange (1):
      log: fix parsing of multiple trace:PATTERN log args

Fam Zheng (2):
      scsi-disk: Cleaning up around tray open state
      virtio-scsi: Don't abort when media is ejected

Li Qiang (1):
      scsi: mptsas: use g_new0 to allocate MPTSASRequest object

Lin Ma (1):
      qemu-char: avoid segfault if user lacks of permisson of a given logfile

Marc-André Lureau (2):
      Change net/socket.c to use socket_*() functions
      build-sys: add make 'help' target

Paolo Bonzini (2):
      memory: remove memory_region_destructor_rom_device
      target-i386: fix ordering of fields in CPUX86State

Pavel Dovgalyuk (2):
      kvmvapic: fix state change handler
      pcspk: adding vmstate for save/restore

Prasad J Pandit (1):
      scsi: pvscsi: limit process IO loop to ring size

Richard Henderson (1):
      cutils: Rewrite x86 buffer zero checking

Stanislav Shmarov (1):
      target-i386: Fixed syscall posssible segfault

Wanpeng Li (2):
      pc: apic: fix touch LAPIC when irqchip is split
      pc: apic: introduce APIC macro

Wei Jiangang (1):
      linux-user: complete omission of removing uses of strdup

 Makefile                 |  37 ++++++++
 backends/msmouse.c       |   3 +
 hw/audio/pcspk.c         |  17 +++-
 hw/i386/kvmvapic.c       |   1 +
 hw/i386/pc.c             |  18 ++--
 hw/intc/apic.c           |  26 +++---
 hw/scsi/mptsas.c         |   2 +-
 hw/scsi/scsi-disk.c      |  22 ++---
 hw/scsi/virtio-scsi.c    |  15 +--
 hw/scsi/vmw_pvscsi.c     |   5 +-
 linux-user/elfload.c     |   7 +-
 memory.c                 |   7 +-
 net/socket.c             | 127 ++++++++++++++------------
 qemu-char.c              |   6 ++
 target-i386/cpu.h        |  12 +--
 target-i386/seg_helper.c |  36 ++++----
 util/bufferiszero.c      | 231 ++++++++++++++++++++++++++++++++---------------
 util/log.c               |  41 +++------
 18 files changed, 379 insertions(+), 234 deletions(-)
-- 
1.8.3.1

             reply	other threads:[~2016-09-15 14:23 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-15 14:21 Paolo Bonzini [this message]
2016-09-15 14:21 ` [Qemu-devel] [PULL 01/17] scsi-disk: Cleaning up around tray open state Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 02/17] virtio-scsi: Don't abort when media is ejected Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 03/17] scsi: mptsas: use g_new0 to allocate MPTSASRequest object Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 04/17] cutils: Rewrite x86 buffer zero checking Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 05/17] Change net/socket.c to use socket_*() functions Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 06/17] memory: remove memory_region_destructor_rom_device Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 07/17] scsi: pvscsi: limit process IO loop to ring size Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 08/17] pc: apic: fix touch LAPIC when irqchip is split Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 09/17] target-i386: fix ordering of fields in CPUX86State Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 10/17] linux-user: complete omission of removing uses of strdup Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 11/17] build-sys: add make 'help' target Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 12/17] qemu-char: avoid segfault if user lacks of permisson of a given logfile Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 13/17] log: fix parsing of multiple trace:PATTERN log args Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 14/17] target-i386: Fixed syscall posssible segfault Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 15/17] pc: apic: introduce APIC macro Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 16/17] kvmvapic: fix state change handler Paolo Bonzini
2016-09-15 14:21 ` [Qemu-devel] [PULL 17/17] pcspk: adding vmstate for save/restore Paolo Bonzini
2016-09-15 15:59 ` [Qemu-devel] [PULL 00/17] Second batch of misc patches for QEMU 2.8 no-reply
2016-09-15 18:12 ` Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1473949316-31264-1-git-send-email-pbonzini@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).