aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/multicall.c
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@xensource.com>2007-05-30 11:55:38 +0100
committerIan Campbell <ian.campbell@xensource.com>2007-05-30 11:55:38 +0100
commitca938d8cc6d30f0c99e631e6fb050ce1c921ab08 (patch)
tree9d56aebbd52486d1042ef8d64c28ab3e5749b071 /xen/common/multicall.c
parent96469475a6848763fd542d1305660ee7a8561569 (diff)
downloadxen-ca938d8cc6d30f0c99e631e6fb050ce1c921ab08.tar.gz
xen-ca938d8cc6d30f0c99e631e6fb050ce1c921ab08.tar.bz2
xen-ca938d8cc6d30f0c99e631e6fb050ce1c921ab08.zip
Fix preemption of multicalls in compat mode.
mcs->call (struct multicall_entry) always needs to be translated into mcs->compat_call (struct compat_multicall_entry) when a multicall is preempted in compat mode. Previously this translation only occured for those hypercalls which explicitly called hypercall_xlat_continuation() which doesn't cover all hypercalls which could potentially be preempted. Change hypercall_xlat_continuation() to only translate only the hypercall arguments themselves and not the multicall_entry layout. Translate the layout for all hypercalls in in compat_multicall() instead. Signed-off-by: Ian Campbell <ian.campbell@xensource.com>
Diffstat (limited to 'xen/common/multicall.c')
-rw-r--r--xen/common/multicall.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/xen/common/multicall.c b/xen/common/multicall.c
index c03002256e..7ee21b47c1 100644
--- a/xen/common/multicall.c
+++ b/xen/common/multicall.c
@@ -17,6 +17,7 @@
#ifndef COMPAT
DEFINE_PER_CPU(struct mc_state, mc_state);
typedef long ret_t;
+#define xlat_multicall_entry(mcs)
#endif
ret_t
@@ -62,6 +63,9 @@ do_multicall(
if ( test_bit(_MCSF_call_preempted, &mcs->flags) )
{
+ /* Translate sub-call continuation to guest layout */
+ xlat_multicall_entry(mcs);
+
/* Copy the sub-call continuation. */
(void)__copy_to_guest(call_list, &mcs->call, 1);
goto preempted;