projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1884a7
)
x86/64: Fix the build.
author
Keir Fraser
<keir@xensource.com>
Thu, 1 Nov 2007 10:56:56 +0000
(10:56 +0000)
committer
Keir Fraser
<keir@xensource.com>
Thu, 1 Nov 2007 10:56:56 +0000
(10:56 +0000)
Signed-off-by: Keir Fraser <keir@xensource.com>
xen/arch/x86/hvm/intercept.c
patch
|
blob
|
history
diff --git
a/xen/arch/x86/hvm/intercept.c
b/xen/arch/x86/hvm/intercept.c
index 8ffb26460a41c934cf41d96f99e6334f9d93f876..dc2b1ffbba4fd89ffd8190732c292b023554fd29 100644
(file)
--- a/
xen/arch/x86/hvm/intercept.c
+++ b/
xen/arch/x86/hvm/intercept.c
@@
-166,8
+166,8
@@
int hvm_buffered_io_send(ioreq_t *p)
/* Return 0 for the cases we can't deal with. */
if ( (p->addr > 0xffffful) || p->data_is_ptr || p->df || (p->count != 1) )
{
- gdprintk(XENLOG_DEBUG, "slow ioreq.
type:%d size:%ld addr:0x%08lx
"
-
"dir:%d ptr:%d df:%d count:%ld
\n",
+ gdprintk(XENLOG_DEBUG, "slow ioreq.
type:%d size:%"PRIu64" addr:0x%
"
+
PRIx64" dir:%d ptr:%d df:%d count:%"PRIu64"
\n",
p->type, p->size, p->addr, !!p->dir,
!!p->data_is_ptr, !!p->df, p->count);
return 0;