[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] x86: Export timer hypercalls to HVM guests too
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1273563390 -3600 # Node ID 3289dac49af4cfa56f55ce61c7f47dbb8d5c3714 # Parent 220fa418eaae499cdc14359e83092401290a6211 x86: Export timer hypercalls to HVM guests too Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> --- xen/arch/x86/hvm/hvm.c | 11 +++++++++++ 1 files changed, 11 insertions(+) diff -r 220fa418eaae -r 3289dac49af4 xen/arch/x86/hvm/hvm.c --- a/xen/arch/x86/hvm/hvm.c Tue May 11 08:35:45 2010 +0100 +++ b/xen/arch/x86/hvm/hvm.c Tue May 11 08:36:30 2010 +0100 @@ -2224,6 +2224,10 @@ static long hvm_vcpu_op( { case VCPUOP_register_runstate_memory_area: case VCPUOP_get_runstate_info: + case VCPUOP_set_periodic_timer: + case VCPUOP_stop_periodic_timer: + case VCPUOP_set_singleshot_timer: + case VCPUOP_stop_singleshot_timer: rc = do_vcpu_op(cmd, vcpuid, arg); break; default: @@ -2249,6 +2253,7 @@ static hvm_hypercall_t *hvm_hypercall32_ HYPERCALL(xen_version), HYPERCALL(event_channel_op), HYPERCALL(sched_op), + HYPERCALL(set_timer_op), HYPERCALL(hvm_op) }; @@ -2280,6 +2285,10 @@ static long hvm_vcpu_op_compat32( { case VCPUOP_register_runstate_memory_area: case VCPUOP_get_runstate_info: + case VCPUOP_set_periodic_timer: + case VCPUOP_stop_periodic_timer: + case VCPUOP_set_singleshot_timer: + case VCPUOP_stop_singleshot_timer: rc = compat_vcpu_op(cmd, vcpuid, arg); break; default: @@ -2297,6 +2306,7 @@ static hvm_hypercall_t *hvm_hypercall64_ HYPERCALL(xen_version), HYPERCALL(event_channel_op), HYPERCALL(sched_op), + HYPERCALL(set_timer_op), HYPERCALL(hvm_op) }; @@ -2307,6 +2317,7 @@ static hvm_hypercall_t *hvm_hypercall32_ HYPERCALL(xen_version), HYPERCALL(event_channel_op), HYPERCALL(sched_op), + HYPERCALL(set_timer_op), HYPERCALL(hvm_op) }; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |