[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] x86/64 has the wrong number of arguments defined for HYPERVISOR_xenoprof_op.
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID d5d46dbfde22404f1957722b217d6e75f2868025 # Parent 6b7c54556ac855d4128a4bda6429fdd8d31ae19e x86/64 has the wrong number of arguments defined for HYPERVISOR_xenoprof_op. Signed-off-by: Ray Bryant <raybry@xxxxxxxxxxxxxxxxx> --- linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff -r 6b7c54556ac8 -r d5d46dbfde22 linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h --- a/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h Thu May 11 13:43:09 2006 +0100 +++ b/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h Thu May 11 13:45:10 2006 +0100 @@ -355,9 +355,9 @@ HYPERVISOR_callback_op( static inline int HYPERVISOR_xenoprof_op( - int op, unsigned long arg1, unsigned long arg2) -{ - return _hypercall3(int, xenoprof_op, op, arg1, arg2); + int op, void *arg) +{ + return _hypercall2(int, xenoprof_op, op, arg); } #endif /* __HYPERCALL_H__ */ _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |