Skip to content

Commit

Permalink
mips/kvm: Fix name of gpr field in struct kvm_regs.
Browse files Browse the repository at this point in the history
Signed-off-by: David Daney <david.daney@cavium.com>
Acked-by: Sanjay Lal <sanjayl@kymasys.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
  • Loading branch information
David Daney authored and Gleb Natapov committed Jun 3, 2013
1 parent 688cded commit bf32ebf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion arch/mips/include/uapi/asm/kvm.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
* extended to 64-bits.
*/
struct kvm_regs {
__u64 gprs[32];
/* out (KVM_GET_REGS) / in (KVM_SET_REGS) */
__u64 gpr[32];
__u64 hi;
__u64 lo;
__u64 pc;
Expand Down
4 changes: 2 additions & 2 deletions arch/mips/kvm/kvm_mips.c
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
int i;

for (i = 0; i < 32; i++)
vcpu->arch.gprs[i] = regs->gprs[i];
vcpu->arch.gprs[i] = regs->gpr[i];

vcpu->arch.hi = regs->hi;
vcpu->arch.lo = regs->lo;
Expand All @@ -692,7 +692,7 @@ int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
int i;

for (i = 0; i < 32; i++)
regs->gprs[i] = vcpu->arch.gprs[i];
regs->gpr[i] = vcpu->arch.gprs[i];

regs->hi = vcpu->arch.hi;
regs->lo = vcpu->arch.lo;
Expand Down

0 comments on commit bf32ebf

Please sign in to comment.