aboutsummaryrefslogtreecommitdiff
path: root/sys/i386
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2009-05-30 06:37:03 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2009-05-30 06:37:03 +0000
commita235aceb1a690db07328f56de75f41ed1d02059d (patch)
tree8c45d9c147e91f758ef7940d87f4474466824432 /sys/i386
parentc5f5009be606d66958ddb1cf1c6dc94e8c56d9d3 (diff)
downloadsrc-a235aceb1a690db07328f56de75f41ed1d02059d.tar.gz
src-a235aceb1a690db07328f56de75f41ed1d02059d.zip
Correctly report the IPI IRQs being created; make it clear what vectors they are for.
Notes
Notes: svn path=/head/; revision=193082
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/xen/mp_machdep.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/i386/xen/mp_machdep.c b/sys/i386/xen/mp_machdep.c
index d8e1eea1a1ae..6b4be60b70a7 100644
--- a/sys/i386/xen/mp_machdep.c
+++ b/sys/i386/xen/mp_machdep.c
@@ -480,8 +480,8 @@ xen_smp_intr_init(unsigned int cpu)
smp_reschedule_interrupt,
INTR_FAST|INTR_TYPE_TTY|INTR_MPSAFE, &irq);
- printf("cpu=%d irq=%d vector=%d\n",
- cpu, rc, RESCHEDULE_VECTOR);
+ printf("[XEN] IPI cpu=%d irq=%d vector=RESCHEDULE_VECTOR (%d)\n",
+ cpu, irq, RESCHEDULE_VECTOR);
per_cpu(resched_irq, cpu) = irq;
@@ -495,8 +495,8 @@ xen_smp_intr_init(unsigned int cpu)
goto fail;
per_cpu(callfunc_irq, cpu) = irq;
- printf("cpu=%d irq=%d vector=%d\n",
- cpu, rc, CALL_FUNCTION_VECTOR);
+ printf("[XEN] IPI cpu=%d irq=%d vector=CALL_FUNCTION_VECTOR (%d)\n",
+ cpu, irq, CALL_FUNCTION_VECTOR);
if ((cpu != 0) && ((rc = ap_cpu_initclocks(cpu)) != 0))