> -----Original Message----- > From: Jan Beulich [mailto:[email protected]] > Sent: 28 February 2017 13:39 > To: xen-devel <[email protected]> > Cc: Andrew Cooper <[email protected]>; Paul Durrant > <[email protected]>; George Dunlap <[email protected]> > Subject: [PATCH 5/8] x86/Viridian: switch away from temporary 32-bit > register names > > Signed-off-by: Jan Beulich <[email protected]> >
Reviewed-by: Paul Durrant <[email protected]> > --- a/xen/arch/x86/hvm/viridian.c > +++ b/xen/arch/x86/hvm/viridian.c > @@ -666,9 +666,9 @@ int viridian_hypercall(struct cpu_user_r > output_params_gpa = regs->r8; > break; > case 4: > - input.raw = (regs->rdx << 32) | regs->_eax; > - input_params_gpa = (regs->rbx << 32) | regs->_ecx; > - output_params_gpa = (regs->rdi << 32) | regs->_esi; > + input.raw = (regs->rdx << 32) | regs->eax; > + input_params_gpa = (regs->rbx << 32) | regs->ecx; > + output_params_gpa = (regs->rdi << 32) | regs->esi; > break; > default: > goto out; > > _______________________________________________ Xen-devel mailing list [email protected] https://lists.xen.org/xen-devel
