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

Eduardo Habkost posted 21 patches 3 years, 7 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20201006220930.908275-1-ehabkost@redhat.com
Maintainers: "Daniel P. Berrangé" <berrange@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>, Eduardo Habkost <ehabkost@redhat.com>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
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
[PULL 00/21] machine + QOM queue, 2020-10-06
Posted by Eduardo Habkost 3 years, 7 months ago
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



Re: [PULL 00/21] machine + QOM queue, 2020-10-06
Posted by Peter Maydell 3 years, 6 months ago
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