From: Daniel De Graaf Date: Wed, 23 Jan 2013 09:17:19 +0000 (+0000) Subject: hvm: wire up domctl and xsm hypercalls X-Git-Tag: 4.3.0-rc1~471 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=db984809d61b1c605d22520b89fa393bcb21430a;p=xen.git hvm: wire up domctl and xsm hypercalls These hypercalls are usable by HVM guests. Once connected, simple functions of the Xen toolstack can be run from an HVM domain if that domain is permitted access (which is currently only possible via XSM). Signed-off-by: Daniel De Graaf Committed-by: Keir Fraser --- diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c index c75f7c5920..b5535c0de9 100644 --- a/xen/arch/x86/hvm/hvm.c +++ b/xen/arch/x86/hvm/hvm.c @@ -3239,8 +3239,10 @@ static hvm_hypercall_t *const hvm_hypercall64_table[NR_hypercalls] = { HYPERCALL(event_channel_op), HYPERCALL(sched_op), HYPERCALL(set_timer_op), + HYPERCALL(xsm_op), HYPERCALL(hvm_op), HYPERCALL(sysctl), + HYPERCALL(domctl), HYPERCALL(tmem_op) }; @@ -3256,8 +3258,10 @@ static hvm_hypercall_t *const hvm_hypercall32_table[NR_hypercalls] = { HYPERCALL(event_channel_op), COMPAT_CALL(sched_op), COMPAT_CALL(set_timer_op), + HYPERCALL(xsm_op), HYPERCALL(hvm_op), HYPERCALL(sysctl), + HYPERCALL(domctl), HYPERCALL(tmem_op) };