[Qemu-devel] [PATCH v2 0/3] numa: move numa global variables into MachineState

Tao Xu posted 3 patches 5 years ago
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Test checkpatch passed
Test asan passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190418064602.24558-1-tao3.xu@intel.com
Maintainers: Shannon Zhao <shannon.zhaosl@gmail.com>, "Michael S. Tsirkin" <mst@redhat.com>, Eduardo Habkost <ehabkost@redhat.com>, Markus Armbruster <armbru@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>, "Dr. David Alan Gilbert" <dgilbert@redhat.com>, David Gibson <david@gibson.dropbear.id.au>, Peter Maydell <peter.maydell@linaro.org>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Igor Mammedov <imammedo@redhat.com>, Richard Henderson <rth@twiddle.net>
There is a newer version of this series
exec.c                              |  5 ++-
hw/acpi/aml-build.c                 |  9 ++--
hw/arm/boot.c                       |  4 +-
hw/arm/virt-acpi-build.c            | 17 ++++---
hw/arm/virt.c                       |  7 ++-
hw/core/machine.c                   | 16 +++++--
hw/i386/acpi-build.c                |  4 +-
hw/i386/pc.c                        |  9 +++-
hw/mem/pc-dimm.c                    |  2 +
hw/pci-bridge/pci_expander_bridge.c |  2 +
hw/ppc/spapr.c                      | 37 ++++++++++++++--
hw/ppc/spapr_pci.c                  |  2 +
include/hw/acpi/aml-build.h         |  2 +-
include/hw/boards.h                 | 21 +++++++++
include/sysemu/numa.h               | 13 +-----
monitor.c                           |  4 +-
numa.c                              | 69 ++++++++++++++++-------------
17 files changed, 156 insertions(+), 67 deletions(-)
[Qemu-devel] [PATCH v2 0/3] numa: move numa global variables into MachineState
Posted by Tao Xu 5 years ago
The aim of this patch is to add struct NumaState in MachineState
and move existing numa global nb_numa_nodes into NumaState.
And add variable numa_support into MachineClass to decide which
submachines support NUMA.

---
Changes in v2:
    - fix the mistake in numa_complete_configuration in numa.c
    - add MachineState into some functions to avoid using
    qdev_get_machine
    - add some if experssion to avoid the NumaState is null 

Tao Xu (3):
  numa: move numa global variable nb_numa_nodes into MachineState
  numa: move numa global variable have_numa_distance into MachineState
  numa: move numa global variable numa_info into MachineState

 exec.c                              |  5 ++-
 hw/acpi/aml-build.c                 |  9 ++--
 hw/arm/boot.c                       |  4 +-
 hw/arm/virt-acpi-build.c            | 17 ++++---
 hw/arm/virt.c                       |  7 ++-
 hw/core/machine.c                   | 16 +++++--
 hw/i386/acpi-build.c                |  4 +-
 hw/i386/pc.c                        |  9 +++-
 hw/mem/pc-dimm.c                    |  2 +
 hw/pci-bridge/pci_expander_bridge.c |  2 +
 hw/ppc/spapr.c                      | 37 ++++++++++++++--
 hw/ppc/spapr_pci.c                  |  2 +
 include/hw/acpi/aml-build.h         |  2 +-
 include/hw/boards.h                 | 21 +++++++++
 include/sysemu/numa.h               | 13 +-----
 monitor.c                           |  4 +-
 numa.c                              | 69 ++++++++++++++++-------------
 17 files changed, 156 insertions(+), 67 deletions(-)

-- 
2.17.1