aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/lguest_hcall.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/include/asm/lguest_hcall.h')
-rw-r--r--arch/x86/include/asm/lguest_hcall.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/x86/include/asm/lguest_hcall.h b/arch/x86/include/asm/lguest_hcall.h
index 05b9c198e4b..b14b3552a4d 100644
--- a/arch/x86/include/asm/lguest_hcall.h
+++ b/arch/x86/include/asm/lguest_hcall.h
@@ -35,8 +35,8 @@
35 * 35 *
36 * We use the KVM hypercall mechanism. Eighteen hypercalls are 36 * We use the KVM hypercall mechanism. Eighteen hypercalls are
37 * available: the hypercall number is put in the %eax register, and the 37 * available: the hypercall number is put in the %eax register, and the
38 * arguments (when required) are placed in %ebx, %ecx and %edx. If a return 38 * arguments (when required) are placed in %ebx, %ecx, %edx and %esi.
39 * value makes sense, it's returned in %eax. 39 * If a return value makes sense, it's returned in %eax.
40 * 40 *
41 * Grossly invalid calls result in Sudden Death at the hands of the vengeful 41 * Grossly invalid calls result in Sudden Death at the hands of the vengeful
42 * Host, rather than returning failure. This reflects Winston Churchill's 42 * Host, rather than returning failure. This reflects Winston Churchill's
@@ -48,8 +48,9 @@
48 48
49#define LHCALL_RING_SIZE 64 49#define LHCALL_RING_SIZE 64
50struct hcall_args { 50struct hcall_args {
51 /* These map directly onto eax, ebx, ecx, edx in struct lguest_regs */ 51 /* These map directly onto eax, ebx, ecx, edx and esi
52 unsigned long arg0, arg1, arg2, arg3; 52 * in struct lguest_regs */
53 unsigned long arg0, arg1, arg2, arg3, arg4;
53}; 54};
54 55
55#endif /* !__ASSEMBLY__ */ 56#endif /* !__ASSEMBLY__ */