qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: "Philippe Mathieu-Daudé" <philmd@redhat.com>, qemu-devel@nongnu.org
Cc: "Paolo Bonzini" <pbonzini@redhat.com>,
	"Daniel P. Berrangé" <berrange@redhat.com>,
	"Eduardo Habkost" <ehabkost@redhat.com>
Subject: Re: [PULL 00/10] Machine-next patches for 2021-11-01
Date: Tue, 2 Nov 2021 07:24:44 -0400	[thread overview]
Message-ID: <5af63e15-ab0e-ddd1-0d3b-50dce5109a92@linaro.org> (raw)
In-Reply-To: <20211101184259.2859090-1-philmd@redhat.com>

On 11/1/21 2:42 PM, Philippe Mathieu-Daudé wrote:
> Hi,
> 
> On behalf on Eduardo (and with his blessing) this is the current
> machine-next patch queue.
> 
> The following changes since commit af531756d25541a1b3b3d9a14e72e7fedd941a2e:
> 
>    Merge remote-tracking branch 'remotes/philmd/tags/renesas-20211030' into staging (2021-10-30 11:31:41 -0700)
> 
> are available in the Git repository at:
> 
>    https://github.com/philmd/qemu.git tags/machine-20211101
> 
> for you to fetch changes up to 84436ec4b2b4c6c62f0ae8c911f8b982fedc0f4e:
> 
>    machine: remove the done notifier for dynamic sysbus device type check (2021-11-01 19:32:40 +0100)
> 
> ----------------------------------------------------------------
> Machine core patches
> 
> - Move GPIO code out of qdev.c
> - Move hotplug code out of qdev.c
> - Restrict various files to sysemu
> - Move SMP code out of machine.c
> - Add SMP parsing unit tests
> - Move dynamic sysbus device check earlier
> 
> ----------------------------------------------------------------
> 
> Damien Hedde (3):
>    machine: add device_type_is_dynamic_sysbus function
>    qdev-monitor: Check sysbus device type before creating it
>    machine: remove the done notifier for dynamic sysbus device type check
> 
> Eduardo Habkost (1):
>    machine: Move gpio code to hw/core/gpio.c
> 
> Philippe Mathieu-Daudé (4):
>    hw/core: Restrict sysemu specific files
>    hw/core: Declare meson source set
>    hw/core: Extract hotplug-related functions to qdev-hotplug.c
>    hw/core: Restrict hotplug to system emulation
> 
> Yanan Wang (2):
>    hw/core/machine: Split out the smp parsing code
>    tests/unit: Add an unit test for smp parsing
> 
>   meson.build                 |   4 +-
>   include/hw/boards.h         |  17 +-
>   hw/core/gpio.c              | 197 ++++++++++++
>   hw/core/hotplug-stubs.c     |  34 +++
>   hw/core/machine-smp.c       | 181 +++++++++++
>   hw/core/machine.c           | 199 +-----------
>   hw/core/qdev-hotplug.c      |  73 +++++
>   hw/core/qdev.c              | 234 --------------
>   softmmu/qdev-monitor.c      |  11 +
>   tests/unit/test-smp-parse.c | 594 ++++++++++++++++++++++++++++++++++++
>   MAINTAINERS                 |   2 +
>   hw/core/meson.build         |  35 ++-
>   tests/unit/meson.build      |   1 +
>   13 files changed, 1145 insertions(+), 437 deletions(-)
>   create mode 100644 hw/core/gpio.c
>   create mode 100644 hw/core/hotplug-stubs.c
>   create mode 100644 hw/core/machine-smp.c
>   create mode 100644 hw/core/qdev-hotplug.c
>   create mode 100644 tests/unit/test-smp-parse.c

Applied, thanks.


r~



      parent reply	other threads:[~2021-11-02 12:17 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-01 18:42 [PULL 00/10] Machine-next patches for 2021-11-01 Philippe Mathieu-Daudé
2021-11-01 18:42 ` [PULL 01/10] machine: Move gpio code to hw/core/gpio.c Philippe Mathieu-Daudé
2021-11-01 18:42 ` [PULL 02/10] hw/core: Restrict sysemu specific files Philippe Mathieu-Daudé
2021-11-01 18:42 ` [PULL 03/10] hw/core: Declare meson source set Philippe Mathieu-Daudé
2021-11-01 18:42 ` [PULL 04/10] hw/core: Extract hotplug-related functions to qdev-hotplug.c Philippe Mathieu-Daudé
2021-11-01 18:42 ` [PULL 05/10] hw/core: Restrict hotplug to system emulation Philippe Mathieu-Daudé
2021-11-01 18:42 ` [PULL 06/10] hw/core/machine: Split out the smp parsing code Philippe Mathieu-Daudé
2021-11-01 18:42 ` [PULL 07/10] tests/unit: Add an unit test for smp parsing Philippe Mathieu-Daudé
2021-11-01 18:42 ` [PULL 08/10] machine: add device_type_is_dynamic_sysbus function Philippe Mathieu-Daudé
2021-11-01 18:42 ` [PULL 09/10] qdev-monitor: Check sysbus device type before creating it Philippe Mathieu-Daudé
2021-11-01 18:42 ` [PULL 10/10] machine: remove the done notifier for dynamic sysbus device type check Philippe Mathieu-Daudé
2021-11-02 11:24 ` Richard Henderson [this message]

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=5af63e15-ab0e-ddd1-0d3b-50dce5109a92@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=berrange@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=philmd@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).