summaryrefslogtreecommitdiffstats
path: root/arch/s390/kvm/kvm-s390.c
diff options
context:
space:
mode:
authorChristoffer Dall2017-12-04 21:35:26 +0100
committerPaolo Bonzini2017-12-14 09:26:51 +0100
commit1fc9b76b3dd2c57ca0fe42742043a5c3cbdc41c1 (patch)
treecd354bacf1cd3e842b7a7bea471ee84d15860b07 /arch/s390/kvm/kvm-s390.c
parentKVM: Move vcpu_load to arch-specific kvm_arch_vcpu_ioctl_run (diff)
downloadkernel-qcow2-linux-1fc9b76b3dd2c57ca0fe42742043a5c3cbdc41c1.tar.gz
kernel-qcow2-linux-1fc9b76b3dd2c57ca0fe42742043a5c3cbdc41c1.tar.xz
kernel-qcow2-linux-1fc9b76b3dd2c57ca0fe42742043a5c3cbdc41c1.zip
KVM: Move vcpu_load to arch-specific kvm_arch_vcpu_ioctl_get_regs
Move vcpu_load() and vcpu_put() into the architecture specific implementations of kvm_arch_vcpu_ioctl_get_regs(). Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org> Reviewed-by: David Hildenbrand <david@redhat.com> Reviewed-by: Cornelia Huck <cohuck@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/s390/kvm/kvm-s390.c')
-rw-r--r--arch/s390/kvm/kvm-s390.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/s390/kvm/kvm-s390.c b/arch/s390/kvm/kvm-s390.c
index 7972598e60d0..44317813f498 100644
--- a/arch/s390/kvm/kvm-s390.c
+++ b/arch/s390/kvm/kvm-s390.c
@@ -2715,7 +2715,9 @@ int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
{
+ vcpu_load(vcpu);
memcpy(&regs->gprs, &vcpu->run->s.regs.gprs, sizeof(regs->gprs));
+ vcpu_put(vcpu);
return 0;
}