# HG changeset patch
# User Alastair Tse <atse@xxxxxxxxxxxxx>
# Node ID 044c6617e2be24a8d0dfe73674e34a4d9dd55e0b
# Parent 665a28dffb7d78c07162c55176c442ae9e754caf
# Parent 6191a06b6ed6e3641bb296ebdaa9c19ef0c64033
Merge
---
xen/arch/x86/hvm/hvm.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff -r 665a28dffb7d -r 044c6617e2be xen/arch/x86/hvm/hvm.c
--- a/xen/arch/x86/hvm/hvm.c Fri Nov 03 11:42:57 2006 +0000
+++ b/xen/arch/x86/hvm/hvm.c Fri Nov 03 11:43:27 2006 +0000
@@ -371,7 +371,7 @@ void hvm_do_hypercall(struct cpu_user_re
if ( (pregs->eax >= NR_hypercalls) || !hvm_hypercall_table[pregs->eax] )
{
- gdprintk(XENLOG_INFO, "HVM vcpu %d:%d did a bad hypercall %d.\n",
+ gdprintk(XENLOG_WARNING, "HVM vcpu %d:%d did a bad hypercall %d.\n",
current->domain->domain_id, current->vcpu_id,
pregs->eax);
pregs->eax = -ENOSYS;
@@ -417,7 +417,7 @@ static long do_memory_op_compat32(int cm
}
default:
- gdprintk(XENLOG_INFO, "memory_op %d.\n", cmd);
+ gdprintk(XENLOG_WARNING, "memory_op %d.\n", cmd);
rc = -ENOSYS;
break;
}
@@ -450,7 +450,7 @@ void hvm_do_hypercall(struct cpu_user_re
pregs->rax = (uint32_t)pregs->eax; /* mask in case compat32 caller */
if ( (pregs->rax >= NR_hypercalls) || !hvm_hypercall64_table[pregs->rax] )
{
- gdprintk(XENLOG_INFO, "HVM vcpu %d:%d did a bad hypercall %ld.\n",
+ gdprintk(XENLOG_WARNING, "HVM vcpu %d:%d did a bad hypercall %ld.\n",
current->domain->domain_id, current->vcpu_id,
pregs->rax);
pregs->rax = -ENOSYS;
@@ -510,7 +510,7 @@ int hvm_bringup_ap(int vcpuid, int tramp
if ( (ctxt = xmalloc(struct vcpu_guest_context)) == NULL )
{
- gdprintk(XENLOG_INFO,
+ gdprintk(XENLOG_ERR,
"Failed to allocate memory in hvm_bringup_ap.\n");
return -ENOMEM;
}
@@ -525,7 +525,7 @@ int hvm_bringup_ap(int vcpuid, int tramp
if ( rc != 0 )
{
- gdprintk(XENLOG_INFO,
+ gdprintk(XENLOG_ERR,
"AP %d bringup failed in boot_vcpu %x.\n", vcpuid, rc);
goto out;
}
@@ -628,7 +628,7 @@ long do_hvm_op(unsigned long op, XEN_GUE
default:
{
- gdprintk(XENLOG_INFO, "Bad HVM op %ld.\n", op);
+ gdprintk(XENLOG_WARNING, "Bad HVM op %ld.\n", op);
rc = -ENOSYS;
break;
}
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|