Author: adrian
Date: Sat May 30 06:37:03 2009
New Revision: 193082
URL: http://svn.freebsd.org/changeset/base/193082

Log:
  Correctly report the IPI IRQs being created; make it clear what vectors they 
are for.

Modified:
  head/sys/i386/xen/mp_machdep.c

Modified: head/sys/i386/xen/mp_machdep.c
==============================================================================
--- head/sys/i386/xen/mp_machdep.c      Sat May 30 05:19:10 2009        
(r193081)
+++ head/sys/i386/xen/mp_machdep.c      Sat May 30 06:37:03 2009        
(r193082)
@@ -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))
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to