* Compile fix for xenoprof on x86_64
@ 2006-05-10 21:28 Ray Bryant
0 siblings, 0 replies; only message in thread
From: Ray Bryant @ 2006-05-10 21:28 UTC (permalink / raw)
To: xen-devel
linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h
has the wrong number of arguments defined for HYPERVISOR_xenoprof_op.
This patch is against changeset 9955.
Signed-off-by: Ray Bryant <raybry@mpdtxmail.amd.com>
Index: xen-unstable-5-08-2006.hg/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h
===================================================================
--- xen-unstable-5-08-2006.hg.orig/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h
+++ xen-unstable-5-08-2006.hg/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h
@@ -355,9 +355,9 @@ HYPERVISOR_callback_op(
static inline int
HYPERVISOR_xenoprof_op(
- int op, unsigned long arg1, unsigned long arg2)
+ int op, void *arg)
{
- return _hypercall3(int, xenoprof_op, op, arg1, arg2);
+ return _hypercall2(int, xenoprof_op, op, arg);
}
#endif /* __HYPERCALL_H__ */
--
Ray Bryant
AMD Performance Labs Austin, Tx
512-602-0038 (o) 512-507-7807 (c)
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-05-10 21:28 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-10 21:28 Compile fix for xenoprof on x86_64 Ray Bryant
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.