mbox series

[PULL,00/21] machine + QOM queue, 2020-10-06

Message ID 20201006220930.908275-1-ehabkost@redhat.com
Headers show
Series machine + QOM queue, 2020-10-06 | expand

Message

Eduardo Habkost Oct. 6, 2020, 10:09 p.m. UTC
The following changes since commit d7c5b788295426c1ef48a9ffc3432c51220f69ba:

  Merge remote-tracking branch 'remotes/stefanha-gitlab/tags/block-pull-request' into staging (2020-10-06 12:15:59 +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 1b5e843ab68c4afa611da22f303a5b0daa979ad8:

  numa: hmat: require parent cache description before the next level one (2020-10-06 11:09:41 -0400)

----------------------------------------------------------------
machine + QOM queue, 2020-10-06

* QOM documentation fixes and cleanups (Eduardo Habkost)
* user-mode: Prune build dependencies (Philippe Mathieu-Daudé)
* qom: Improve error message (Philippe Mathieu-Daudé)
* numa: hmat: require parent cache description before the next
  level one (Igor Mammedov)

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

Eduardo Habkost (11):
  qom: Fix DECLARE_*CHECKER documentation
  docs/devel/qom: Fix indentation of bulleted list
  docs/devel/qom: Fix indentation of code blocks
  docs/devel/qom: Use *emphasis* for emphasis
  docs/devel/qom: Remove usage of <code>
  docs/devel/qom: Avoid long lines
  kernel-doc: Handle function typedefs that return pointers
  kernel-doc: Handle function typedefs without asterisks
  qom: Explicitly tag doc comments for typedefs and structs
  memory: Explicitly tag doc comments for structs
  kernel-doc: Remove $decl_type='type name' hack

Igor Mammedov (1):
  numa: hmat: require parent cache description before the next level one

Philippe Mathieu-Daudé (9):
  hw/core/qdev-properties: Use qemu_strtol() in set_mac() handler
  hw/core/qdev-properties: Use qemu_strtoul() in set_pci_host_devaddr()
  hw/core/qdev-properties: Fix code style
  hw/core/qdev-properties: Export enum-related functions
  hw/core/qdev-properties: Export qdev_prop_enum
  hw/core/qdev-properties: Export some integer-related functions
  hw/core/qdev-properties: Extract system-mode specific properties
  hw/core/cpu: Add missing 'exec/cpu-common.h' include
  qom: Improve error message displayed with missing object properties

 docs/devel/qom.rst               |  91 ++--
 hw/core/qdev-prop-internal.h     |  30 ++
 include/exec/memory.h            |   6 +-
 include/hw/qdev-properties.h     |   1 +
 include/qom/object.h             |  38 +-
 hw/core/cpu.c                    |   1 +
 hw/core/numa.c                   |   8 +-
 hw/core/qdev-properties-system.c | 687 ++++++++++++++++++++++++++++-
 hw/core/qdev-properties.c        | 735 ++-----------------------------
 qom/object.c                     |   3 +-
 scripts/kernel-doc               |  16 +-
 11 files changed, 831 insertions(+), 785 deletions(-)
 create mode 100644 hw/core/qdev-prop-internal.h

-- 
2.26.2

Comments

Peter Maydell Oct. 8, 2020, 2:26 p.m. UTC | #1
On Tue, 6 Oct 2020 at 23:09, Eduardo Habkost <ehabkost@redhat.com> wrote:
>

> The following changes since commit d7c5b788295426c1ef48a9ffc3432c51220f69ba:

>

>   Merge remote-tracking branch 'remotes/stefanha-gitlab/tags/block-pull-request' into staging (2020-10-06 12:15:59 +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 1b5e843ab68c4afa611da22f303a5b0daa979ad8:

>

>   numa: hmat: require parent cache description before the next level one (2020-10-06 11:09:41 -0400)

>

> ----------------------------------------------------------------

> machine + QOM queue, 2020-10-06

>

> * QOM documentation fixes and cleanups (Eduardo Habkost)

> * user-mode: Prune build dependencies (Philippe Mathieu-Daudé)

> * qom: Improve error message (Philippe Mathieu-Daudé)

> * numa: hmat: require parent cache description before the next

>   level one (Igor Mammedov)

>



Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/5.2
for any user-visible changes.

-- PMM