Skip to content

Commit 7e3bba9

Browse files
committed
Merge tag 'kvm-s390-master-6.1-2' of https://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux into HEAD
VSIE epdx shadowing fix
2 parents b7b275e + 0dd4cdc commit 7e3bba9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

arch/s390/kvm/vsie.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,8 +546,10 @@ static int shadow_scb(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
546546
if (test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_CEI))
547547
scb_s->eca |= scb_o->eca & ECA_CEI;
548548
/* Epoch Extension */
549-
if (test_kvm_facility(vcpu->kvm, 139))
549+
if (test_kvm_facility(vcpu->kvm, 139)) {
550550
scb_s->ecd |= scb_o->ecd & ECD_MEF;
551+
scb_s->epdx = scb_o->epdx;
552+
}
551553

552554
/* etoken */
553555
if (test_kvm_facility(vcpu->kvm, 156))

0 commit comments

Comments
 (0)