mbox

[PULL,0/6] x86 and machine queue, 2017-01-17

Message ID 20170112175356.21701-1-ehabkost@redhat.com
State New
Headers show

Pull-request

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

Message

Eduardo Habkost Jan. 12, 2017, 5:53 p.m. UTC
The following changes since commit 204febd17f9ebb9e94b1980b42c7f2c2307851c1:

  libqtest: handle zero length memwrite/memread (2017-01-12 10:45:59 +0000)

are available in the git repository at:

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

for you to fetch changes up to 8ed877b78498c89aa7ce5c76aa20841ff5072796:

  qmp: Report QOM type name on query-cpu-definitions (2017-01-12 15:51:36 -0200)

----------------------------------------------------------------
x86 and machine queue, 2017-01-17

Includes i386, CPU, NUMA, and memory backends changes.

i386:
 target/i386: Fix bad patch application to translate.c

CPU:
 qmp: Report QOM type name on query-cpu-definitions

NUMA:
 numa: make -numa parser dynamically allocate CPUs masks

Memory backends:
 qom: remove unused header
 monitor: reuse user_creatable_add_opts() instead of user_creatable_add()
 monitor: fix qmp/hmp query-memdev not reporting IDs of memory backends

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

Doug Evans (1):
  target/i386: Fix bad patch application to translate.c

Eduardo Habkost (1):
  qmp: Report QOM type name on query-cpu-definitions

Igor Mammedov (4):
  qom: remove unused header
  monitor: reuse user_creatable_add_opts() instead of
    user_creatable_add()
  monitor: fix qmp/hmp query-memdev not reporting IDs of memory backends
  numa: make -numa parser dynamically allocate CPUs masks

 docs/qmp-commands.txt           |  1 +
 qapi-schema.json                |  8 ++++-
 include/qom/object_interfaces.h | 17 ---------
 include/sysemu/hostmem.h        |  1 +
 include/sysemu/numa.h           |  2 +-
 include/sysemu/sysemu.h         |  7 ----
 backends/hostmem.c              | 26 ++++++++++++++
 hmp.c                           | 10 ++----
 numa.c                          | 24 +++++++++----
 qom/object_interfaces.c         | 78 ++++++++++++-----------------------------
 target/arm/helper.c             |  1 +
 target/i386/cpu.c               |  1 +
 target/i386/translate.c         | 10 +++---
 target/ppc/translate_init.c     |  1 +
 target/s390x/cpu_models.c       |  1 +
 vl.c                            |  5 ---
 16 files changed, 87 insertions(+), 106 deletions(-)

Comments

Peter Maydell Jan. 13, 2017, 5:17 p.m. UTC | #1
On 12 January 2017 at 17:53, Eduardo Habkost <ehabkost@redhat.com> wrote:
> The following changes since commit 204febd17f9ebb9e94b1980b42c7f2c2307851c1:
>
>   libqtest: handle zero length memwrite/memread (2017-01-12 10:45:59 +0000)
>
> are available in the git repository at:
>
>   git://github.com/ehabkost/qemu.git tags/x86-and-machine-pull-request
>
> for you to fetch changes up to 8ed877b78498c89aa7ce5c76aa20841ff5072796:
>
>   qmp: Report QOM type name on query-cpu-definitions (2017-01-12 15:51:36 -0200)
>
> ----------------------------------------------------------------
> x86 and machine queue, 2017-01-17
>
> Includes i386, CPU, NUMA, and memory backends changes.
>
> i386:
>  target/i386: Fix bad patch application to translate.c
>
> CPU:
>  qmp: Report QOM type name on query-cpu-definitions
>
> NUMA:
>  numa: make -numa parser dynamically allocate CPUs masks
>
> Memory backends:
>  qom: remove unused header
>  monitor: reuse user_creatable_add_opts() instead of user_creatable_add()
>  monitor: fix qmp/hmp query-memdev not reporting IDs of memory backends
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM