]> www.infradead.org Git - users/jedix/linux-maple.git/commit
KVM: s390: selftests: Add regression tests for SORTL and DFLTCC CPU subfunctions
authorHariharan Mari <hari55@linux.ibm.com>
Fri, 23 Aug 2024 13:05:04 +0000 (15:05 +0200)
committerJanosch Frank <frankja@linux.ibm.com>
Mon, 7 Oct 2024 08:53:55 +0000 (08:53 +0000)
commit2688d6814193f81b0b4f9704a44963ebd755182f
treef2c3d2af5f5eea51cdb571bf41fce3f469c43374
parent8cf0b93919e13d1e8d4466eb4080a4c4d9d66d7b
KVM: s390: selftests: Add regression tests for SORTL and DFLTCC CPU subfunctions

Introduce new regression tests to verify the ASM inline block in the SORTL
and DFLTCC CPU subfunctions for the s390x architecture. These tests ensure
that future changes to the ASM code are properly validated.

The test procedure:

1. Create a VM and request the KVM_S390_VM_CPU_MACHINE_SUBFUNC attribute
   from the KVM_S390_VM_CPU_MODEL group for this VM. This SUBFUNC attribute
   contains the results of all CPU subfunction instructions.
2. For each tested subfunction (SORTL and DFLTCC), execute the
   corresponding ASM instruction and capture the result array.
3. Perform a memory comparison between the results stored in the SUBFUNC
   attribute (obtained in step 1) and the ASM instruction results (obtained
   in step 2) for each tested subfunction.

This process ensures that the KVM implementation accurately reflects the
behavior of the actual CPU instructions for the tested subfunctions.

Suggested-by: Janosch Frank <frankja@linux.ibm.com>
Signed-off-by: Hariharan Mari <hari55@linux.ibm.com>
Reviewed-by: Janosch Frank <frankja@linux.ibm.com>
Reviewed-by: Christoph Schlameuss <schlameuss@linux.ibm.com>
Link: https://lore.kernel.org/r/20240823130947.38323-2-hari55@linux.ibm.com
Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
Message-ID: <20240823130947.38323-2-hari55@linux.ibm.com>
tools/testing/selftests/kvm/Makefile
tools/testing/selftests/kvm/include/s390x/facility.h [new file with mode: 0644]
tools/testing/selftests/kvm/lib/s390x/facility.c [new file with mode: 0644]
tools/testing/selftests/kvm/s390x/cpumodel_subfuncs_test.c [new file with mode: 0644]