[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] libxc: convert watchdog interface over to hypercall buffers
# HG changeset patch # User Ian Campbell <ian.campbell@xxxxxxxxxx> # Date 1287756891 -3600 # Node ID 8c2f8fd6148da8ffee46b4bdcf108e39df038e63 # Parent a1b39d2b900193f3192b598b7551b683b892a15d libxc: convert watchdog interface over to hypercall buffers Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Signed-off-by: Ian Jackson <ian.jackson.citrix.com> --- tools/libxc/xc_domain.c | 23 ++++++++++++----------- 1 files changed, 12 insertions(+), 11 deletions(-) diff -r a1b39d2b9001 -r 8c2f8fd6148d tools/libxc/xc_domain.c --- a/tools/libxc/xc_domain.c Fri Oct 22 15:14:51 2010 +0100 +++ b/tools/libxc/xc_domain.c Fri Oct 22 15:14:51 2010 +0100 @@ -374,24 +374,25 @@ int xc_watchdog(xc_interface *xch, uint32_t timeout) { int ret = -1; - sched_watchdog_t arg; DECLARE_HYPERCALL; + DECLARE_HYPERCALL_BUFFER(sched_watchdog_t, arg); + + arg = xc_hypercall_buffer_alloc(xch, arg, sizeof(*arg)); + if ( arg == NULL ) + { + PERROR("Could not allocate memory for xc_watchdog hypercall"); + goto out1; + } hypercall.op = __HYPERVISOR_sched_op; hypercall.arg[0] = (unsigned long)SCHEDOP_watchdog; - hypercall.arg[1] = (unsigned long)&arg; - arg.id = id; - arg.timeout = timeout; - - if ( lock_pages(xch, &arg, sizeof(arg)) != 0 ) - { - PERROR("Could not lock memory for Xen hypercall"); - goto out1; - } + hypercall.arg[1] = HYPERCALL_BUFFER_AS_ARG(arg); + arg->id = id; + arg->timeout = timeout; ret = do_xen_hypercall(xch, &hypercall); - unlock_pages(xch, &arg, sizeof(arg)); + xc_hypercall_buffer_free(xch, arg); out1: return ret; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |