aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/multicall.c
diff options
context:
space:
mode:
authorcl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>2005-06-01 12:36:40 +0000
committercl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>2005-06-01 12:36:40 +0000
commite18f79780a71d716d2499ae0a9132cbf7273a121 (patch)
tree08f6264b32e05a7e6bcfb0358bb7e6561c3305e8 /xen/common/multicall.c
parent5cf7ba5849bde8e897441a156822ceb4bcd24765 (diff)
downloadxen-e18f79780a71d716d2499ae0a9132cbf7273a121.tar.gz
xen-e18f79780a71d716d2499ae0a9132cbf7273a121.tar.bz2
xen-e18f79780a71d716d2499ae0a9132cbf7273a121.zip
bitkeeper revision 1.1627 (429dabd8oit_vtykkoDno8W9TS973g)
multicall.c: Put multicall result in result field instead of args[5]. Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
Diffstat (limited to 'xen/common/multicall.c')
-rw-r--r--xen/common/multicall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/multicall.c b/xen/common/multicall.c
index fdfe7864db..1403041db8 100644
--- a/xen/common/multicall.c
+++ b/xen/common/multicall.c
@@ -43,7 +43,7 @@ long do_multicall(multicall_entry_t *call_list, unsigned int nr_calls)
do_multicall_call(&mcs->call);
- if ( unlikely(__put_user(mcs->call.args[5], &call_list[i].args[5])) )
+ if ( unlikely(__put_user(mcs->call.result, &call_list[i].result)) )
{
DPRINTK("Error writing result back to multicall block.\n");
goto fault;