qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v9 00/10] s390x: CPU Topology


From: Janis Schoetterl-Glausch
Subject: Re: [PATCH v9 00/10] s390x: CPU Topology
Date: Mon, 12 Sep 2022 16:38:02 +0200
User-agent: Evolution 3.42.4 (3.42.4-2.fc35)

I found this version much easier to understand than the previous one.

You could consider splitting up the series into two.
One that introduces support for STSI, PTF, migration, etc.
And a second one that adds support for the maximum-MNist facility and
drawers and books.

This would also make bisecting a bit nicer because it moves the feature
enablement closer to the commits adding the support.

Right now, with this series, the topology is static and cannot change.
Most of the value of making the topology visible to the guest is for it
to mirror reality, and a static topology is a hindrance for that.
I'm completely fine with having a static topology as a stepping stone
to a dynamic one.
However I think we should have a rough plan or maybe even a prototype
for how we turn a static into a dynamic topology before we merge this
series in order to avoid designing us into a corner.
What do you think?

On Fri, 2022-09-02 at 09:55 +0200, Pierre Morel wrote:
> Hi,
> 
> The implementation of the CPU Topology in QEMU has been drastically
> modified since the last patch series and the number of LOCs has been
> greatly reduced.
> 
> Unnecessary objects have been removed, only a single S390Topology object
> is created to support migration and reset.
> 
> Also a documentation has been added to the series.
> 
> 
> To use these patches, you will need Linux V6-rc1 or newer.
> 
> Mainline patches needed are:
> 
> f5ecfee94493 2022-07-20 KVM: s390: resetting the Topology-Change-Report    
> 24fe0195bc19 2022-07-20 KVM: s390: guest support for topology function     
> 0130337ec45b 2022-07-20 KVM: s390: Cleanup ipte lock access and SIIF fac.. 
> 
> Currently this code is for KVM only, I have no idea if it is interesting
> to provide a TCG patch. If ever it will be done in another series.
> 
> To have a better understanding of the S390x CPU Topology and its
> implementation in QEMU you can have a look at the documentation in the
> last patch.
> 
> New in this series
> ==================
> 
>   s390x/cpus: Make absence of multithreading clear
> 
> This patch makes clear that CPU-multithreading is not supported in
> the guest.
> 
>   s390x/cpu topology: core_id sets s390x CPU topology
> 
> This patch uses the core_id to build the container topology
> and the placement of the CPU inside the container.
> 
>   s390x/cpu topology: reporting the CPU topology to the guest
> 
> This patch is based on the fact that the CPU type for guests
> is always IFL, CPUs are always dedicated and the polarity is
> always horizontal.
> This may change in the future.
> 
>   hw/core: introducing drawer and books for s390x
>   s390x/cpu: reporting drawers and books topology to the guest
> 
> These two patches extend the topology handling to add two
> new containers levels above sockets: books and drawers.
> 
> The subject of the last patches is clear enough (I hope).
> 
> Regards,
> Pierre
> 
> Pierre Morel (10):
>   s390x/cpus: Make absence of multithreading clear
>   s390x/cpu topology: core_id sets s390x CPU topology
>   s390x/cpu topology: reporting the CPU topology to the guest
>   hw/core: introducing drawer and books for s390x
>   s390x/cpu: reporting drawers and books topology to the guest
>   s390x/cpu_topology: resetting the Topology-Change-Report
>   s390x/cpu_topology: CPU topology migration
>   target/s390x: interception of PTF instruction
>   s390x/cpu_topology: activating CPU topology
>   docs/s390x: document s390x cpu topology
> 
>  docs/system/s390x/cpu_topology.rst |  88 +++++++++
>  hw/core/machine-smp.c              |  48 ++++-
>  hw/core/machine.c                  |   9 +
>  hw/s390x/cpu-topology.c            | 293 +++++++++++++++++++++++++++++
>  hw/s390x/meson.build               |   1 +
>  hw/s390x/s390-virtio-ccw.c         |  61 +++++-
>  include/hw/boards.h                |  11 ++
>  include/hw/s390x/cpu-topology.h    |  53 ++++++
>  include/hw/s390x/s390-virtio-ccw.h |   7 +
>  qapi/machine.json                  |  14 +-
>  qemu-options.hx                    |   6 +-
>  softmmu/vl.c                       |   6 +
>  target/s390x/cpu-sysemu.c          |  15 ++
>  target/s390x/cpu.h                 |  51 +++++
>  target/s390x/cpu_topology.c        | 150 +++++++++++++++
>  target/s390x/kvm/kvm.c             |  56 +++++-
>  target/s390x/kvm/kvm_s390x.h       |   1 +
>  target/s390x/meson.build           |   1 +
>  18 files changed, 858 insertions(+), 13 deletions(-)
>  create mode 100644 docs/system/s390x/cpu_topology.rst
>  create mode 100644 hw/s390x/cpu-topology.c
>  create mode 100644 include/hw/s390x/cpu-topology.h
>  create mode 100644 target/s390x/cpu_topology.c
> 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]