On 05/16/2018 05:23 AM, David Hildenbrand wrote:
On 16.05.2018 11:05, Pierre Morel wrote:
On 15/05/2018 17:03, Tony Krowiak wrote:
On 05/15/2018 08:00 AM, Pierre Morel wrote:
On 08/05/2018 14:25, Tony Krowiak wrote:
A new CPU model feature and two new CPU model facilities are
introduced to support AP devices for a KVM guest.
CPU model features:
1. The KVM_S390_VM_CPU_FEAT_AP CPU model feature indicates that
AP facilities are installed. This feature will be enabled by
the kernel only if the AP facilities are installed on the linux
host. This feature must be turned on from userspace to access
AP devices from the KVM guest. The QEMU command line to turn
this feature looks something like this:
qemu-system-s390x ... -cpu xxx,ap=on
This feature will be supported for zEC12 and newer CPU models.
The feature will not be supported for older models due to
testability issues.
CPU model facilities:
1. The S390_FEAT_AP_QUERY_CONFIG_INFO feature indicates the AP Query
Configuration Information (QCI) facility is installed. This feature
will be enabled by the kernel only if the QCI is installed on
the host.
2. The S390_FEAT_AP_FACILITY_TEST feature indicates that the AP
Facility Test (APFT) facility is installed. This feature will
be enabled by the kernel only if the APFT facility is installed
on the host.
Signed-off-by: Tony Krowiak <akrow...@linux.vnet.ibm.com>
---
target/s390x/cpu_features.c | 3 +++
target/s390x/cpu_features_def.h | 3 +++
target/s390x/cpu_models.c | 2 ++
target/s390x/gen-features.c | 3 +++
target/s390x/kvm.c | 1 +
5 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/target/s390x/cpu_features.c b/target/s390x/cpu_features.c
index 3b9e274..f344323 100644
--- a/target/s390x/cpu_features.c
+++ b/target/s390x/cpu_features.c
@@ -40,8 +40,10 @@ static const S390FeatDef s390_features[] = {
FEAT_INIT("srs", S390_FEAT_TYPE_STFL, 9, "Sense-running-status
facility"),
FEAT_INIT("csske", S390_FEAT_TYPE_STFL, 10, "Conditional-SSKE
facility"),
FEAT_INIT("ctop", S390_FEAT_TYPE_STFL, 11,
"Configuration-topology facility"),
+ FEAT_INIT("apqci", S390_FEAT_TYPE_STFL, 12, "Query AP
Configuration facility"),
Not a big deal, but why forget the I for "Information" in the long
description for APQCI
I'll add 'Information'.
Also why not just "QCI" (I think it was already asked)
It was a suggestion from Reinhard with which I agreed. We may know
that QCI is an AP function,
but most administrators will have no idea. Prepending the 'ap' informs
that QCI is an
AP function related to the CPU model feature for AP.
QCI is the official name and will be refered as this in the official
documentation (if it is).
Most admin will use libvirt anyway and the one which will try to use
qemu will look for
apqci in the official documentation and will not find it.
I do not think it is a good idea, but technically does not change anything.
Keep my RB even you stay by apqci or change for qci.
For the SIE features I decided to not name them sie_$feat
So we have e.g. siif instead of sie_siif. I primarily did this to have
shorter feature names and the rational was that the short version (siif)
was sufficient to guess the full name and where it belongs to.
e.g. siif == "Shared IPTE-interlock facility" (we sticked to the f in
there, as siif was a commonly used term if I remember correctly). There
is only one shared ipte-interlock facility.
"qci" (or Query Configuration facility) does _not_ indicate to which
part of the system this belongs. zPCI? sclp? ap?
This should be "apqci" or "qapcf". Or "ap_qci". "qci", on its own is not
sufficient in my opinion.
It is settled then ... I'll stick with apqci