* [PATCH] xenpaging: Fix build error of xenpaging tool
@ 2009-12-18 5:44 Wei Yongjun
0 siblings, 0 replies; only message in thread
From: Wei Yongjun @ 2009-12-18 5:44 UTC (permalink / raw)
To: xen-devel@lists.xensource.com
This patch fixed build error of xenpaging tool under x86_32.
Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
diff --git a/tools/xenpaging/xenpaging.c b/tools/xenpaging/xenpaging.c
--- a/tools/xenpaging/xenpaging.c
+++ b/tools/xenpaging/xenpaging.c
@@ -21,6 +21,7 @@
#include <stdlib.h>
+#include <inttypes.h>
#include <xc_private.h>
#include <xen/mem_event.h>
@@ -184,7 +185,7 @@
ERROR("Error allocating bitmap");
goto err;
}
- DPRINTF("max_pages = %lx\n", paging->domain_info->max_pages);
+ DPRINTF("max_pages = %"PRIx64"\n", paging->domain_info->max_pages);
/* Initialise policy */
rc = policy_init(paging);
@@ -565,7 +566,7 @@
}
else
{
- DPRINTF("page already populated (domain = %d; vcpu = %d; gfn = %lx; paused = %ld)\n",
+ DPRINTF("page already populated (domain = %d; vcpu = %d; gfn = %lx; paused = %"PRIx64")\n",
paging->mem_event.domain_id, req.vcpu_id, req.gfn, req.flags & MEM_EVENT_FLAG_VCPU_PAUSED);
/* Tell Xen to resume the vcpu */
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-12-18 5:44 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-18 5:44 [PATCH] xenpaging: Fix build error of xenpaging tool Wei Yongjun
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.