aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/dom0_ops.c
diff options
context:
space:
mode:
Diffstat (limited to 'xen/arch/x86/dom0_ops.c')
-rw-r--r--xen/arch/x86/dom0_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/arch/x86/dom0_ops.c b/xen/arch/x86/dom0_ops.c
index 214b0c58f8..0038112d63 100644
--- a/xen/arch/x86/dom0_ops.c
+++ b/xen/arch/x86/dom0_ops.c
@@ -89,7 +89,7 @@ long arch_do_dom0_op(struct dom0_op *op, XEN_GUEST_HANDLE(dom0_op_t) u_dom0_op)
d = find_domain_by_id(op->u.shadow_control.domain);
if ( d != NULL )
{
- ret = shadow_mode_control(d, &op->u.shadow_control);
+ ret = shadow2_control_op(d, &op->u.shadow_control, u_dom0_op);
put_domain(d);
copy_to_guest(u_dom0_op, op, 1);
}