mbox

[PULL,0/9] x86 and machine queue, 2016-07-27

Message ID 1469629761-23274-1-git-send-email-ehabkost@redhat.com
State New
Headers show

Pull-request

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

Message

Eduardo Habkost July 27, 2016, 2:29 p.m. UTC
The following changes since commit f49ee630d73729ecaeecf4b38a8df11bc613914d:

  Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-2.7-20160726' into staging (2016-07-26 11:53:47 +0100)

are available in the git repository at:

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

for you to fetch changes up to 03f28efbbb0ee521611e0eb28b45096b3598fb34:

  vl: exit if a bad property value is passed to -global (2016-07-27 11:25:06 -0300)

----------------------------------------------------------------
x86 and machine queue, 2016-07-27

Highlights:
* Fixes to allow CPU hotplug/unplug in any order;
* Exit QEMU on invalid global properties.

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

Greg Kurz (3):
  machine: Add comment to abort path in machine_set_kernel_irqchip
  qdev: ignore GlobalProperty.errp for hotplugged devices
  vl: exit if a bad property value is passed to -global

Igor Mammedov (6):
  exec: Reduce CONFIG_USER_ONLY ifdeffenery
  exec: Don't use cpu_index to detect if cpu_exec_init()'s been called
  exec: Set cpu_index only if it's not been explictly set
  qdev: Fix object reference leak in case device.realize() fails
  pc: Init CPUState->cpu_index with index in possible_cpus[]
  Revert "pc: Enforce adding CPUs contiguously and removing them in
    opposite order"

 bsd-user/qemu.h           |  2 --
 exec.c                    | 66 +++++++++--------------------------------------
 hw/core/machine.c         |  3 +++
 hw/core/qdev-properties.c |  4 +--
 hw/core/qdev.c            |  8 +++++-
 hw/i386/pc.c              | 38 +++------------------------
 include/exec/exec-all.h   | 12 +++++++++
 include/hw/qdev-core.h    |  4 ++-
 include/qom/cpu.h         |  2 ++
 linux-user/qemu.h         |  2 --
 qom/cpu.c                 |  2 +-
 vl.c                      |  1 +
 12 files changed, 47 insertions(+), 97 deletions(-)

Comments

Peter Maydell July 28, 2016, 9:10 a.m. UTC | #1
On 27 July 2016 at 15:29, Eduardo Habkost <ehabkost@redhat.com> wrote:
> The following changes since commit f49ee630d73729ecaeecf4b38a8df11bc613914d:
>
>   Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-2.7-20160726' into staging (2016-07-26 11:53:47 +0100)
>
> are available in the git repository at:
>
>   git://github.com/ehabkost/qemu.git tags/x86-pull-request
>
> for you to fetch changes up to 03f28efbbb0ee521611e0eb28b45096b3598fb34:
>
>   vl: exit if a bad property value is passed to -global (2016-07-27 11:25:06 -0300)
>
> ----------------------------------------------------------------
> x86 and machine queue, 2016-07-27
>
> Highlights:
> * Fixes to allow CPU hotplug/unplug in any order;
> * Exit QEMU on invalid global properties.
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM