Re: [PATCH] s390/kvm: Fix vcpu_load handling in interrupt code

2012-09-27 Thread Avi Kivity
On 09/27/2012 05:29 PM, Christian Borntraeger wrote: > Recent changes (KVM: make processes waiting on vcpu mutex killable) > now requires to check the return value of vcpu_load. This triggered > a warning in s390 specific kvm code. Turns out that we can actually > remove the put/load, since schedul

[PATCH] s390/kvm: Fix vcpu_load handling in interrupt code

2012-09-27 Thread Christian Borntraeger
Recent changes (KVM: make processes waiting on vcpu mutex killable) now requires to check the return value of vcpu_load. This triggered a warning in s390 specific kvm code. Turns out that we can actually remove the put/load, since schedule will do the right thing via the preempt notifiers. Reporte