[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 5/8] x86/Viridian: switch away from temporary 32-bit register names
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> --- 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; Attachment:
x86-regnames-Viridian.patch _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |