summaryrefslogtreecommitdiffstats
path: root/virt/kvm/arm
diff options
context:
space:
mode:
authorChristoffer Dall2017-12-04 21:35:31 +0100
committerPaolo Bonzini2017-12-14 09:26:54 +0100
commite83dff5edf0c3f014e4b4ac5e1c86dbe797687c7 (patch)
treea72f719f5a323c6cbf902fa65151d6801dd6c89a /virt/kvm/arm
parentKVM: Move vcpu_load to arch-specific kvm_arch_vcpu_ioctl_get_mpstate (diff)
downloadkernel-qcow2-linux-e83dff5edf0c3f014e4b4ac5e1c86dbe797687c7.tar.gz
kernel-qcow2-linux-e83dff5edf0c3f014e4b4ac5e1c86dbe797687c7.tar.xz
kernel-qcow2-linux-e83dff5edf0c3f014e4b4ac5e1c86dbe797687c7.zip
KVM: Move vcpu_load to arch-specific kvm_arch_vcpu_ioctl_set_mpstate
Move vcpu_load() and vcpu_put() into the architecture specific implementations of kvm_arch_vcpu_ioctl_set_mpstate(). Reviewed-by: David Hildenbrand <david@redhat.com> Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org> Reviewed-by: Cornelia Huck <cohuck@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'virt/kvm/arm')
-rw-r--r--virt/kvm/arm/arm.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/virt/kvm/arm/arm.c b/virt/kvm/arm/arm.c
index 65d50100ba3c..aa6167086211 100644
--- a/virt/kvm/arm/arm.c
+++ b/virt/kvm/arm/arm.c
@@ -395,6 +395,10 @@ int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
struct kvm_mp_state *mp_state)
{
+ int ret = 0;
+
+ vcpu_load(vcpu);
+
switch (mp_state->mp_state) {
case KVM_MP_STATE_RUNNABLE:
vcpu->arch.power_off = false;
@@ -403,10 +407,11 @@ int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
vcpu_power_off(vcpu);
break;
default:
- return -EINVAL;
+ ret = -EINVAL;
}
- return 0;
+ vcpu_put(vcpu);
+ return ret;
}
/**