|
@@ -670,8 +670,9 @@ static int handle_pfmf(struct kvm_vcpu *vcpu)
|
|
|
if (vcpu->run->s.regs.gprs[reg1] & PFMF_RESERVED)
|
|
|
return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
|
|
|
|
|
|
- /* Only provide non-quiescing support if the host supports it */
|
|
|
- if (vcpu->run->s.regs.gprs[reg1] & PFMF_NQ && !test_facility(14))
|
|
|
+ /* Only provide non-quiescing support if enabled for the guest */
|
|
|
+ if (vcpu->run->s.regs.gprs[reg1] & PFMF_NQ &&
|
|
|
+ !test_kvm_facility(vcpu->kvm, 14))
|
|
|
return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
|
|
|
|
|
|
/* No support for conditional-SSKE */
|