mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
KVM: s390: ucontrol: disable in-kernel handling of SIE intercepts
This patch disables in-kernel handling of SIE intercepts for user controlled virtual machines. All intercepts are passed to userspace via KVM_EXIT_SIE exit reason just like SIE intercepts that cannot be handled in-kernel for regular KVM guests. Signed-off-by: Carsten Otte <cotte@de.ibm.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
5b1c1493af
commit
c0d744a9c8
@ -566,7 +566,10 @@ rerun_vcpu:
|
||||
rc = __vcpu_run(vcpu);
|
||||
if (rc)
|
||||
break;
|
||||
rc = kvm_handle_sie_intercept(vcpu);
|
||||
if (kvm_is_ucontrol(vcpu->kvm))
|
||||
rc = -EOPNOTSUPP;
|
||||
else
|
||||
rc = kvm_handle_sie_intercept(vcpu);
|
||||
} while (!signal_pending(current) && !rc);
|
||||
|
||||
if (rc == SIE_INTERCEPT_RERUNVCPU)
|
||||
|
Loading…
Reference in New Issue
Block a user