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/29] Misc patches for 2017-10-18
Date: Wed, 18 Oct 2017 18:11:52 +0200	[thread overview]
Message-ID: <1508343141-31835-1-git-send-email-pbonzini@redhat.com> (raw)

The following changes since commit a0b261db8c030813e30a39eae47359ac2a37f7e2:

  Merge remote-tracking branch 'remotes/ehabkost/tags/python-next-pull-request' into staging (2017-10-12 10:02:09 +0100)

are available in the git repository at:


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

for you to fetch changes up to 3da023b5827543ee4c022986ea2ad9d1274410b2:

  scsi: reject configurations with logical block size > physical block size (2017-10-18 11:56:14 +0200)

----------------------------------------------------------------
* TCG 8-byte atomic accesses bugfix (Andrew)
* Report disk rotation rate (Daniel)
* Report invalid scsi-disk block size configuration (Mark)
* KVM and memory API MemoryListener fixes (David, Maxime, Peter Xu)
* x86 CPU hotplug crash fix (Igor)
* Load/store API documentation (Peter Maydell)
* Small fixes by myself and Thomas
* qdev DEVICE_DELETED deferral (Michael)

----------------------------------------------------------------
Andrew Baumann (1):
      notdirty_mem_write: implement 8-byte accesses

Daniel P. Berrange (3):
      scsi-disk: support reporting of rotation rate
      ide: support reporting of rotation rate
      char: don't skip client cleanup if 'connected' flag is unset

David Hildenbrand (7):
      memory: call log_start after region_add
      kvm: fix alignment of ram address
      kvm: tolerate non-existing slot for log_start/log_stop/log_sync
      kvm: fix error message when failing to unregister slot
      kvm: region_add and region_del is not called on updates
      kvm: simplify kvm_align_section()
      memory: reuse section_from_flat_range()

Igor Mammedov (1):
      pc: make sure that plugged CPUs are of the same type

Mark Kanda (1):
      scsi: reject configurations with logical block size > physical block size

Maxime Coquelin (1):
      memory: fix off-by-one error in memory_region_notify_one()

Michael Roth (3):
      qdev: store DeviceState's canonical path to use when unparenting
      Revert "qdev: Free QemuOpts when the QOM path goes away"
      qdev: defer DEVICE_DEL event until instance_finalize()

Paolo Bonzini (8):
      checkpatch: refine mode selection
      build: remove CONFIG_LIBDECNUMBER
      nios2: define tcg_env
      tco: add trace events
      target/i386: introduce x86_ld*_code
      target/i386: trap on instructions longer than >15 bytes
      watch_mem_write: implement 8-byte accesses
      qemu-pr-helper: use new libmultipath API

Peter Maydell (1):
      docs/devel/loads-stores.rst: Document our various load and store APIs

Peter Xu (2):
      exec: add page_mask for flatview_do_translate
      exec: simplify address_space_get_iotlb_entry

Thomas Huth (1):
      disas: Always initialize read_memory_inner_func properly

 Makefile.target                           |   6 -
 accel/kvm/kvm-all.c                       |  39 ++-
 chardev/char-socket.c                     |  19 +-
 configure                                 |  12 +-
 default-configs/ppc-linux-user.mak        |   1 -
 default-configs/ppc-softmmu.mak           |   1 -
 default-configs/ppc64-linux-user.mak      |   1 -
 default-configs/ppc64-softmmu.mak         |   1 -
 default-configs/ppc64abi32-linux-user.mak |   1 -
 default-configs/ppc64le-linux-user.mak    |   1 -
 default-configs/ppcemb-softmmu.mak        |   1 -
 disas.c                                   |   1 -
 docs/devel/loads-stores.rst               | 396 ++++++++++++++++++++++++++++++
 exec.c                                    | 109 ++++++--
 hw/acpi/tco.c                             |  11 +-
 hw/acpi/trace-events                      |   4 +
 hw/core/qdev.c                            |  32 ++-
 hw/i386/pc.c                              |   7 +
 hw/ide/core.c                             |   1 +
 hw/ide/qdev.c                             |   1 +
 hw/scsi/scsi-disk.c                       |  28 +++
 include/disas/bfd.h                       |   1 +
 include/hw/ide/internal.h                 |   8 +
 include/hw/qdev-core.h                    |   1 +
 libdecnumber/Makefile.objs                |   5 +
 memory.c                                  |  18 +-
 scripts/checkpatch.pl                     |  19 +-
 scsi/qemu-pr-helper.c                     |  17 +-
 target/i386/translate.c                   | 257 ++++++++++---------
 target/nios2/translate.c                  |   1 +
 target/ppc/Makefile.objs                  |   1 +
 31 files changed, 777 insertions(+), 224 deletions(-)
 create mode 100644 docs/devel/loads-stores.rst
 create mode 100644 libdecnumber/Makefile.objs
-- 
1.8.3.1

             reply	other threads:[~2017-10-18 16:13 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-18 16:11 Paolo Bonzini [this message]
2017-10-18 16:11 ` [Qemu-devel] [PULL 01/29] checkpatch: refine mode selection Paolo Bonzini
2017-10-18 16:11 ` [Qemu-devel] [PULL 02/29] scsi-disk: support reporting of rotation rate Paolo Bonzini
2017-10-18 16:11 ` [Qemu-devel] [PULL 03/29] ide: " Paolo Bonzini
2017-10-18 16:11 ` [Qemu-devel] [PULL 04/29] char: don't skip client cleanup if 'connected' flag is unset Paolo Bonzini
2017-10-18 16:11 ` [Qemu-devel] [PULL 05/29] exec: add page_mask for flatview_do_translate Paolo Bonzini
2017-10-18 16:11 ` [Qemu-devel] [PULL 06/29] exec: simplify address_space_get_iotlb_entry Paolo Bonzini
2017-10-18 16:11 ` [Qemu-devel] [PULL 07/29] memory: fix off-by-one error in memory_region_notify_one() Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 08/29] pc: make sure that plugged CPUs are of the same type Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 09/29] disas: Always initialize read_memory_inner_func properly Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 10/29] build: remove CONFIG_LIBDECNUMBER Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 11/29] nios2: define tcg_env Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 12/29] docs/devel/loads-stores.rst: Document our various load and store APIs Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 13/29] tco: add trace events Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 14/29] target/i386: introduce x86_ld*_code Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 15/29] target/i386: trap on instructions longer than >15 bytes Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 16/29] memory: call log_start after region_add Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 17/29] kvm: fix alignment of ram address Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 18/29] kvm: tolerate non-existing slot for log_start/log_stop/log_sync Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 19/29] kvm: fix error message when failing to unregister slot Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 20/29] kvm: region_add and region_del is not called on updates Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 21/29] kvm: simplify kvm_align_section() Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 22/29] memory: reuse section_from_flat_range() Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 23/29] notdirty_mem_write: implement 8-byte accesses Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 24/29] watch_mem_write: " Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 25/29] qemu-pr-helper: use new libmultipath API Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 26/29] qdev: store DeviceState's canonical path to use when unparenting Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 27/29] Revert "qdev: Free QemuOpts when the QOM path goes away" Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 28/29] qdev: defer DEVICE_DEL event until instance_finalize() Paolo Bonzini
2017-10-18 16:12 ` [Qemu-devel] [PULL 29/29] scsi: reject configurations with logical block size > physical block size Paolo Bonzini
2017-10-18 17:13 ` [Qemu-devel] [PULL 00/29] Misc patches for 2017-10-18 no-reply
2017-10-19 15:47 ` 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=1508343141-31835-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).