Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 297052
b: refs/heads/master
c: c0d744a
h: refs/heads/master
v: v3
  • Loading branch information
Carsten Otte authored and Avi Kivity committed Mar 5, 2012
1 parent f154570 commit 7e7ab0b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5b1c1493afe8d69909f9df3221bb2fffdf479f4a
refs/heads/master: c0d744a9c8aae81b624e0650e6fbbbb83db1a145
5 changes: 4 additions & 1 deletion trunk/arch/s390/kvm/kvm-s390.c
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,10 @@ int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
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)
Expand Down

0 comments on commit 7e7ab0b

Please sign in to comment.