qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Eduardo Habkost <ehabkost@redhat.com>
To: Peter Maydell <peter.maydell@linaro.org>, qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/12] Machine queue, 2018-05-07
Date: Mon,  7 May 2018 14:03:03 -0300	[thread overview]
Message-ID: <20180507170315.11497-1-ehabkost@redhat.com> (raw)

The following changes since commit c8b7e627b4269a3bc3ae41d9f420547a47e6d9b9:

  Merge remote-tracking branch 'remotes/ericb/tags/pull-nbd-2018-05-04' into staging (2018-05-04 14:42:46 +0100)

are available in the Git repository at:

  git://github.com/ehabkost/qemu.git tags/machine-next-pull-request

for you to fetch changes up to b40dffdec60c2dbe54806576faa5cb85227586d1:

  scripts/device-crash-test: Removed fixed CAN entries (2018-05-07 10:00:02 -0300)

----------------------------------------------------------------
Machine queue, 2018-05-07

* pc-dimm: factor out MemoryDevice
  (virtio-pmem and virtio-mem will make use of the new abstraction later)
* scripts/device-crash-test: Removed fixed CAN entries

----------------------------------------------------------------

Queue for Machine Core patches


David Hildenbrand (11):
  pc-dimm: factor out MemoryDevice interface
  machine: make MemoryHotplugState accessible via the machine
  pc-dimm: no need to pass the memory region
  pc-dimm: pass in the machine and to the MemoryHotplugState
  pc-dimm: factor out address search into MemoryDevice code
  pc-dimm: factor out capacity and slot checks into MemoryDevice
  pc-dimm: move actual plug/unplug of a memory region to MemoryDevice
  machine: rename MemoryHotplugState to DeviceMemoryState
  pc: rename "hotplug memory" terminology to "device memory"
  spapr: rename "hotplug memory" terminology to "device memory"
  vl: allow 'maxmem' without 'slot'

Thomas Huth (1):
  scripts/device-crash-test: Removed fixed CAN entries

 include/hw/boards.h                          |  12 ++
 include/hw/i386/pc.h                         |   3 +-
 include/hw/mem/memory-device.h               |  51 +++++
 include/hw/mem/pc-dimm.h                     |  27 +--
 include/hw/ppc/spapr.h                       |   5 +-
 hw/i386/acpi-build.c                         |   7 +-
 hw/i386/pc.c                                 |  65 +++---
 hw/mem/memory-device.c                       | 275 ++++++++++++++++++++++++
 hw/mem/pc-dimm.c                             | 304 +++++++--------------------
 hw/ppc/spapr.c                               |  71 ++++---
 hw/ppc/spapr_hcall.c                         |   7 +-
 hw/ppc/spapr_rtas_ddw.c                      |   5 +-
 numa.c                                       |   3 +-
 qmp.c                                        |   4 +-
 stubs/{qmp_pc_dimm.c => qmp_memory_device.c} |   4 +-
 vl.c                                         |  19 +-
 hw/mem/Makefile.objs                         |   1 +
 scripts/device-crash-test                    |   3 -
 stubs/Makefile.objs                          |   2 +-
 19 files changed, 510 insertions(+), 358 deletions(-)
 create mode 100644 include/hw/mem/memory-device.h
 create mode 100644 hw/mem/memory-device.c
 rename stubs/{qmp_pc_dimm.c => qmp_memory_device.c} (61%)

-- 
2.14.3

             reply	other threads:[~2018-05-07 17:03 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-07 17:03 Eduardo Habkost [this message]
2018-05-07 17:03 ` [Qemu-devel] [PULL 01/12] pc-dimm: factor out MemoryDevice interface Eduardo Habkost
2018-05-07 17:03 ` [Qemu-devel] [PULL 02/12] machine: make MemoryHotplugState accessible via the machine Eduardo Habkost
2018-05-07 17:03 ` [Qemu-devel] [PULL 03/12] pc-dimm: no need to pass the memory region Eduardo Habkost
2018-05-07 17:03 ` [Qemu-devel] [PULL 04/12] pc-dimm: pass in the machine and to the MemoryHotplugState Eduardo Habkost
2018-05-07 17:03 ` [Qemu-devel] [PULL 05/12] pc-dimm: factor out address search into MemoryDevice code Eduardo Habkost
2018-05-07 17:03 ` [Qemu-devel] [PULL 06/12] pc-dimm: factor out capacity and slot checks into MemoryDevice Eduardo Habkost
2018-05-07 17:03 ` [Qemu-devel] [PULL 07/12] pc-dimm: move actual plug/unplug of a memory region to MemoryDevice Eduardo Habkost
2018-05-07 17:03 ` [Qemu-devel] [PULL 08/12] machine: rename MemoryHotplugState to DeviceMemoryState Eduardo Habkost
2018-05-07 17:03 ` [Qemu-devel] [PULL 09/12] pc: rename "hotplug memory" terminology to "device memory" Eduardo Habkost
2018-05-07 17:03 ` [Qemu-devel] [PULL 10/12] spapr: " Eduardo Habkost
2018-05-07 17:03 ` [Qemu-devel] [PULL 11/12] vl: allow 'maxmem' without 'slot' Eduardo Habkost
2018-05-07 17:03 ` [Qemu-devel] [PULL 12/12] scripts/device-crash-test: Removed fixed CAN entries Eduardo Habkost
2018-05-08 15:15 ` [Qemu-devel] [PULL 00/12] Machine queue, 2018-05-07 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=20180507170315.11497-1-ehabkost@redhat.com \
    --to=ehabkost@redhat.com \
    --cc=peter.maydell@linaro.org \
    --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).