# HG changeset patch # User Tim Deegan # Date 1305031692 -3600 # Node ID fd865a27f38a93cc63ab8b96ad2f98b29a30d7b5 # Parent 19452acd23045f40c4e18437f0a60f016757e5bd x86: use compat hypercall handlers for calls from 32-bit HVM guests On 64-bit Xen, hypercalls from 32-bit HVM guests are handled as a special case, but not all the hypercalls are corrently redirected to their compat-mode wrappers. Use compat_* for xen_version, sched_op and set_timer_op for consistency. Signed-off-by: Tim Deegan diff -r 19452acd2304 -r fd865a27f38a xen/arch/x86/hvm/hvm.c --- a/xen/arch/x86/hvm/hvm.c Fri May 06 11:15:35 2011 +0100 +++ b/xen/arch/x86/hvm/hvm.c Tue May 10 13:48:12 2011 +0100 @@ -2911,15 +2911,18 @@ static hvm_hypercall_t *hvm_hypercall64_ HYPERCALL(tmem_op) }; +#define COMPAT_CALL(x) \ + [ __HYPERVISOR_ ## x ] = (hvm_hypercall_t *) compat_ ## x + static hvm_hypercall_t *hvm_hypercall32_table[NR_hypercalls] = { [ __HYPERVISOR_memory_op ] = (hvm_hypercall_t *)hvm_memory_op_compat32, [ __HYPERVISOR_grant_table_op ] = (hvm_hypercall_t *)hvm_grant_table_op_compat32, [ __HYPERVISOR_vcpu_op ] = (hvm_hypercall_t *)hvm_vcpu_op_compat32, [ __HYPERVISOR_physdev_op ] = (hvm_hypercall_t *)hvm_physdev_op_compat32, - HYPERCALL(xen_version), + COMPAT_CALL(xen_version), HYPERCALL(event_channel_op), - HYPERCALL(sched_op), - HYPERCALL(set_timer_op), + COMPAT_CALL(sched_op), + COMPAT_CALL(set_timer_op), HYPERCALL(hvm_op), HYPERCALL(sysctl), HYPERCALL(tmem_op) diff -r 19452acd2304 -r fd865a27f38a xen/include/xen/hypercall.h --- a/xen/include/xen/hypercall.h Fri May 06 11:15:35 2011 +0100 +++ b/xen/include/xen/hypercall.h Tue May 10 13:48:12 2011 +0100 @@ -146,6 +146,20 @@ compat_vcpu_op( extern int compat_xenoprof_op(int op, XEN_GUEST_HANDLE(void) arg); +extern int +compat_xen_version( + int cmd, + XEN_GUEST_HANDLE(void) arg); + +extern int +compat_sched_op( + int cmd, + XEN_GUEST_HANDLE(void) arg); + +extern int +compat_set_timer_op( + s_time_t timeout); + #endif #endif /* __XEN_HYPERCALL_H__ */