KVM: PPC: Book3S HV nestedv2: Keep nested guest HASHPKEYR in sync
BugLink: https://bugs.launchpad.net/bugs/2076406 The nestedv2 APIs has the guest state element defined for HASHPKEYR for the save-restore with L0. However, its ignored in the code. The patch takes care of this for the HASHPKEYR GSID. Signed-off-by: Shivaprasad G Bhat <sbhat@linux.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/171759286679.1480.17383725118762651985.stgit@linux.ibm.com (cherry picked from commit 0b65365f3fa95c2c5e2094739151a05cabb3c48a) Signed-off-by: Frank Heimes <frank.heimes@canonical.com> Acked-by: Thibault Ferrante <thibault.ferrante@canonical.com> Acked-by: Stefan Bader <stefan.bader@canonical.com> Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
This commit is contained in:
committed by
Stefan Bader
parent
c19e006ab4
commit
983daea8bf
@@ -199,6 +199,9 @@ static int gs_msg_ops_vcpu_fill_info(struct kvmppc_gs_buff *gsb,
|
||||
case KVMPPC_GSID_HASHKEYR:
|
||||
rc = kvmppc_gse_put_u64(gsb, iden, vcpu->arch.hashkeyr);
|
||||
break;
|
||||
case KVMPPC_GSID_HASHPKEYR:
|
||||
rc = kvmppc_gse_put_u64(gsb, iden, vcpu->arch.hashpkeyr);
|
||||
break;
|
||||
case KVMPPC_GSID_CIABR:
|
||||
rc = kvmppc_gse_put_u64(gsb, iden, vcpu->arch.ciabr);
|
||||
break;
|
||||
@@ -453,6 +456,9 @@ static int gs_msg_ops_vcpu_refresh_info(struct kvmppc_gs_msg *gsm,
|
||||
case KVMPPC_GSID_HASHKEYR:
|
||||
vcpu->arch.hashkeyr = kvmppc_gse_get_u64(gse);
|
||||
break;
|
||||
case KVMPPC_GSID_HASHPKEYR:
|
||||
vcpu->arch.hashpkeyr = kvmppc_gse_get_u64(gse);
|
||||
break;
|
||||
case KVMPPC_GSID_CIABR:
|
||||
vcpu->arch.ciabr = kvmppc_gse_get_u64(gse);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user