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/25] Misc QEMU fixes for 2016-08-02
Date: Tue,  2 Aug 2016 21:39:10 +0200	[thread overview]
Message-ID: <1470166775-3671-1-git-send-email-pbonzini@redhat.com> (raw)

The following changes since commit cc0100f464c94bf80ad36cd432f4a1ed58126b60:

  MAINTAINERS: Update the Xilinx maintainers (2016-08-01 15:31:32 +0100)

are available in the git repository at:

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

for you to fetch changes up to 3531bd22792beae5eba181bf88337d2ff1444817:

  util: Fix assertion in iov_copy() upon zero 'bytes' and non-zero 'offset' (2016-08-02 15:00:26 +0200)

----------------------------------------------------------------
* xsetbv fix (x86 targets TCG)
* remove unused functions
* qht segfault and memory leak fixes
* NBD fixes
* Fix for non-power-of-2 discard granularity
* Memory hotplug fixes
* Migration regressions
* IOAPIC fixes and (disabled by default) EOI register support
* Various other small fixes

----------------------------------------------------------------
Cao jin (3):
      util: drop inet_nonblocking_connect()
      util: drop unix_nonblocking_connect()
      util: Drop inet_listen()

Dave Hansen (1):
      target-i386: fix typo in xsetbv implementation

Emilio G. Cota (4):
      qht: do not segfault when gathering stats from an uninitialized qht
      qdist: fix memory leak during binning
      qdist: use g_realloc_n instead of g_realloc
      qdist: return "(empty)" instead of NULL when printing an empty dist

Eric Blake (4):
      nbd: Fix bad flag detection on server
      nbd: Limit nbdflags to 16 bits
      osdep: Document differences in rounding macros
      block: Cater to iscsi with non-power-of-2 discard

Fam Zheng (1):
      qdev: Fix use after free in qdev_init_nofail error path

Greg Kurz (1):
      numa: set the memory backend "is_mapped" field

Igor Mammedov (3):
      fix qemu exit on memory hotplug when allocation fails at prealloc time
      i2c: fix migration regression introduced by broadcast support
      apic: fix broken migration for kvm-apic

Markus Armbruster (1):
      fw_cfg: Make base type "fw_cfg" abstract

Paolo Bonzini (3):
      util/qht: Document memory ordering assumptions
      checkpatch: add check for bzero
      mptsas: really fix migration compatibility

Peter Xu (2):
      x86: ioapic: ignore level irq during processing
      x86: ioapic: add support for explicit EOI

Robert Ho (1):
      Reorganize help output of '-display' option

Shmulik Ladkani (1):
      util: Fix assertion in iov_copy() upon zero 'bytes' and non-zero 'offset'

 backends/hostmem.c                | 18 +++++++---
 block/io.c                        | 15 ++++----
 block/nbd-client.h                |  2 +-
 exec.c                            | 10 ++++--
 hw/core/qdev.c                    |  2 ++
 hw/i2c/core.c                     | 10 ++++--
 hw/intc/ioapic.c                  | 36 +++++++++++++++----
 hw/nvram/fw_cfg.c                 |  1 +
 hw/scsi/mptsas.c                  |  4 ++-
 hw/scsi/mptsas.h                  |  2 ++
 include/block/block_int.h         | 37 +++++++++++---------
 include/block/nbd.h               |  6 ++--
 include/hw/i386/ioapic_internal.h |  4 +--
 include/hw/i386/pc.h              |  2 +-
 include/qemu/osdep.h              |  8 +++--
 include/qemu/qht.h                |  5 +++
 include/qemu/sockets.h            |  8 -----
 nbd/client.c                      | 28 ++++++++-------
 nbd/server.c                      | 13 ++++---
 numa.c                            |  1 +
 qemu-nbd.c                        |  4 +--
 qemu-options.hx                   | 29 +++++++++++----
 scripts/checkpatch.pl             |  5 ++-
 target-i386/translate.c           |  2 +-
 tests/test-qdist.c                | 10 ++++--
 tests/test-qht.c                  |  4 +++
 translate-all.c                   | 70 ++++++++++++++++++++----------------
 util/iov.c                        |  3 +-
 util/oslib-posix.c                | 26 +++++++-------
 util/oslib-win32.c                |  2 +-
 util/qdist.c                      | 12 ++++---
 util/qemu-sockets.c               | 74 ---------------------------------------
 util/qht.c                        | 14 ++++++--
 33 files changed, 251 insertions(+), 216 deletions(-)
-- 
2.7.4

             reply	other threads:[~2016-08-02 19:39 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-02 19:39 Paolo Bonzini [this message]
2016-08-02 19:39 ` [Qemu-devel] [PULL 01/25] util/qht: Document memory ordering assumptions Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 02/25] numa: set the memory backend "is_mapped" field Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 03/25] fix qemu exit on memory hotplug when allocation fails at prealloc time Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 04/25] checkpatch: add check for bzero Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 05/25] util: drop inet_nonblocking_connect() Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 06/25] util: drop unix_nonblocking_connect() Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 07/25] util: Drop inet_listen() Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 08/25] qht: do not segfault when gathering stats from an uninitialized qht Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 09/25] target-i386: fix typo in xsetbv implementation Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 10/25] qdist: fix memory leak during binning Paolo Bonzini
2016-08-02 21:13   ` Marc-André Lureau
2016-08-02 19:39 ` [Qemu-devel] [PULL 11/25] qdist: use g_realloc_n instead of g_realloc Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 12/25] qdist: return "(empty)" instead of NULL when printing an empty dist Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 13/25] mptsas: really fix migration compatibility Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 14/25] i2c: fix migration regression introduced by broadcast support Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 15/25] nbd: Fix bad flag detection on server Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 16/25] nbd: Limit nbdflags to 16 bits Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 17/25] osdep: Document differences in rounding macros Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 18/25] block: Cater to iscsi with non-power-of-2 discard Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 19/25] fw_cfg: Make base type "fw_cfg" abstract Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 20/25] apic: fix broken migration for kvm-apic Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 21/25] x86: ioapic: ignore level irq during processing Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 22/25] x86: ioapic: add support for explicit EOI Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 23/25] Reorganize help output of '-display' option Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 24/25] qdev: Fix use after free in qdev_init_nofail error path Paolo Bonzini
2016-08-02 19:39 ` [Qemu-devel] [PULL 25/25] util: Fix assertion in iov_copy() upon zero 'bytes' and non-zero 'offset' Paolo Bonzini
2016-08-03 10:52 ` [Qemu-devel] [PULL 00/25] Misc QEMU fixes for 2016-08-02 Peter Maydell
2016-08-03 16:24   ` Paolo Bonzini

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=1470166775-3671-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).