[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 18 of 24] libxc: convert schedop interfaces over to hypercall buffers
# HG changeset patch # User Ian Campbell <ian.campbell@xxxxxxxxxx> # Date 1283779691 -3600 # Node ID d781e6711016a2f15b276499b2ebbd69b16d5dfe # Parent 0a24ab4ac4a43f4b36feea9e7c5ddd72b5f23872 libxc: convert schedop interfaces over to hypercall buffers Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> diff -r 0a24ab4ac4a4 -r d781e6711016 tools/libxc/xc_domain.c --- a/tools/libxc/xc_domain.c Mon Sep 06 14:28:11 2010 +0100 +++ b/tools/libxc/xc_domain.c Mon Sep 06 14:28:11 2010 +0100 @@ -85,24 +85,25 @@ int xc_domain_shutdown(xc_interface *xch int reason) { int ret = -1; - sched_remote_shutdown_t arg; DECLARE_HYPERCALL; + DECLARE_HYPERCALL_BUFFER(sched_remote_shutdown_t, arg); - hypercall.op = __HYPERVISOR_sched_op; - hypercall.arg[0] = (unsigned long)SCHEDOP_remote_shutdown; - hypercall.arg[1] = (unsigned long)&arg; - arg.domain_id = domid; - arg.reason = reason; - - if ( lock_pages(xch, &arg, sizeof(arg)) != 0 ) + arg = xc_hypercall_buffer_alloc(xch, arg, sizeof(*arg)); + if ( arg == NULL ) { PERROR("Could not lock memory for Xen hypercall"); goto out1; } + hypercall.op = __HYPERVISOR_sched_op; + hypercall.arg[0] = (unsigned long)SCHEDOP_remote_shutdown; + hypercall.arg[1] = HYPERCALL_BUFFER_AS_ARG(arg); + arg->domain_id = domid; + arg->reason = reason; + ret = do_xen_hypercall(xch, &hypercall); - unlock_pages(xch, &arg, sizeof(arg)); + xc_hypercall_buffer_free(xch, arg); out1: return ret; _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |