[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v3 0/7] pseries NUMA distance rework
From: |
David Gibson |
Subject: |
Re: [PATCH v3 0/7] pseries NUMA distance rework |
Date: |
Fri, 4 Sep 2020 09:23:00 +1000 |
On Thu, Sep 03, 2020 at 07:06:32PM -0300, Daniel Henrique Barboza wrote:
> Hi,
>
> This spin attempts to cover all suggestions and concerns pointed
> out by David Gibson in the v2 review.
>
> The patches were rebased with David's ppc-for-5.2 at 615ae3763144.
> They can also be cloned from
> https://github.com/danielhb/qemu/tree/spapr_numa_v3.
>
> Changes from v2:
> - patches 1 and 2 from v2 -> already pushed to ppc-for-5.2
> - patch 1 (former 3):
> * numa_assoc_array moved to SpaprMachineState
> - patch 3 (former 5):
> * use memcpy
> * fix index increment to use MAX_DISTANCE_REF_POINTS
> - patch 4 (former 6):
> * revamped. NVLink2 associativity is now calculated in
> spapr_numa_associativity_init(). GPU code will use the same
> helper everyone but vcpus uses to write the associativity DT
> - patch 5 - new
> - patch 6 - new
> - patch 7:
> * no more brazilian portuguese notes in the commit message
> * change the code to handle an arbitrary vcpu associativity
> array, retrieved with a new helper added by patch 6.
>
> v2 link:
> https://lists.gnu.org/archive/html/qemu-devel/2020-09/msg00261.html
I've applied 1..4, though I will comment on some nits that could be
cleaned up later on. I have some bigger comments on the remainder.
>
>
> Daniel Henrique Barboza (7):
> spapr: introduce SpaprMachineState::numa_assoc_array
> spapr, spapr_numa: handle vcpu ibm,associativity
> spapr, spapr_numa: move lookup-arrays handling to spapr_numa.c
> spapr_numa: move NVLink2 associativity handling to spapr_numa.c
> spapr: move h_home_node_associativity to spapr_numa.c
> spapr_numa: create a vcpu associativity helper
> spapr_numa: use spapr_numa_get_vcpu_assoc() in home_node hcall
>
> hw/ppc/spapr.c | 65 +++---------
> hw/ppc/spapr_hcall.c | 37 +------
> hw/ppc/spapr_numa.c | 184 ++++++++++++++++++++++++++++++++++
> hw/ppc/spapr_nvdimm.c | 19 ++--
> hw/ppc/spapr_pci.c | 9 +-
> hw/ppc/spapr_pci_nvlink2.c | 20 +---
> include/hw/ppc/spapr.h | 12 +++
> include/hw/ppc/spapr_numa.h | 19 ++++
> include/hw/ppc/spapr_nvdimm.h | 2 +-
> 9 files changed, 242 insertions(+), 125 deletions(-)
>
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
signature.asc
Description: PGP signature
- Re: [PATCH v3 2/7] spapr, spapr_numa: handle vcpu ibm,associativity, (continued)
- [PATCH v3 3/7] spapr, spapr_numa: move lookup-arrays handling to spapr_numa.c, Daniel Henrique Barboza, 2020/09/03
- [PATCH v3 4/7] spapr_numa: move NVLink2 associativity handling to spapr_numa.c, Daniel Henrique Barboza, 2020/09/03
- [PATCH v3 5/7] spapr: move h_home_node_associativity to spapr_numa.c, Daniel Henrique Barboza, 2020/09/03
- [PATCH v3 6/7] spapr_numa: create a vcpu associativity helper, Daniel Henrique Barboza, 2020/09/03
- [PATCH v3 7/7] spapr_numa: use spapr_numa_get_vcpu_assoc() in home_node hcall, Daniel Henrique Barboza, 2020/09/03
- Re: [PATCH v3 0/7] pseries NUMA distance rework,
David Gibson <=