diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2022-06-07 12:28:53 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2022-06-07 12:28:53 -0400 |
commit | 5552de7b928dc56de30eb74bcd7d439f49d0fe9d (patch) | |
tree | 8eb63126bffc501179b5049f96f7d7aa6d4a0b2a /arch/s390/boot | |
parent | b31455e96f0005bd247d70b59428a90413de0c31 (diff) | |
parent | b1edf7f159a6d532757b004a70f31a6425d5043f (diff) |
Merge tag 'kvm-s390-next-5.19-2' of git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux into HEAD
KVM: s390: pvdump and selftest improvements
- add an interface to provide a hypervisor dump for secure guests
- improve selftests to show tests
Diffstat (limited to 'arch/s390/boot')
-rw-r--r-- | arch/s390/boot/uv.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/s390/boot/uv.c b/arch/s390/boot/uv.c index e6be155ab2e5..67c737c1e580 100644 --- a/arch/s390/boot/uv.c +++ b/arch/s390/boot/uv.c @@ -41,6 +41,10 @@ void uv_query_info(void) uv_info.max_num_sec_conf = uvcb.max_num_sec_conf; uv_info.max_guest_cpu_id = uvcb.max_guest_cpu_id; uv_info.uv_feature_indications = uvcb.uv_feature_indications; + uv_info.supp_se_hdr_ver = uvcb.supp_se_hdr_versions; + uv_info.supp_se_hdr_pcf = uvcb.supp_se_hdr_pcf; + uv_info.conf_dump_storage_state_len = uvcb.conf_dump_storage_state_len; + uv_info.conf_dump_finalize_len = uvcb.conf_dump_finalize_len; } #ifdef CONFIG_PROTECTED_VIRTUALIZATION_GUEST |