ia64/xen-unstable
changeset 10085:56444cd2805c
Fix the build after SVM patches.
Signed-off-by: Keir Fraser <keir@xensource.com>
Signed-off-by: Keir Fraser <keir@xensource.com>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Thu May 18 08:55:20 2006 +0100 (2006-05-18) |
parents | 1d2e4a873003 |
children | 21bd82ade5cc |
files | xen/arch/x86/hvm/svm/svm.c |
line diff
1.1 --- a/xen/arch/x86/hvm/svm/svm.c Thu May 18 00:03:13 2006 +0100 1.2 +++ b/xen/arch/x86/hvm/svm/svm.c Thu May 18 08:55:20 2006 +0100 1.3 @@ -1303,9 +1303,10 @@ static void svm_io_instruction(struct vc 1.4 size = 1; 1.5 1.6 HVM_DBG_LOG(DBG_LEVEL_IO, 1.7 - "svm_io_instruction: port 0x%x eip=%lx:%lx, " 1.8 - "exit_qualification = %lx", 1.9 - port, vmcb->cs.sel, vmcb->rip, (unsigned long)info.bytes); 1.10 + "svm_io_instruction: port 0x%x eip=%x:%"PRIx64", " 1.11 + "exit_qualification = %"PRIx64, 1.12 + port, vmcb->cs.sel, vmcb->rip, info.bytes); 1.13 + 1.14 /* string instruction */ 1.15 if (info.fields.str) 1.16 { 1.17 @@ -1314,7 +1315,7 @@ static void svm_io_instruction(struct vc 1.18 1.19 if (!svm_get_io_address(v, regs, dir, &count, &addr)) 1.20 { 1.21 - /* We failed to get a valid address, so don't do the IO operation - 1.22 + /* We failed to get a valid address, so don't do the IO operation - 1.23 * it would just get worse if we do! Hopefully the guest is handing 1.24 * gp-faults... 1.25 */