Index: intr_machdep.c =================================================================== RCS file: /home/ncvs/src/sys/i386/i386/intr_machdep.c,v retrieving revision 1.4 diff -u -r1.4 intr_machdep.c --- intr_machdep.c 17 Nov 2003 06:10:14 -0000 1.4 +++ intr_machdep.c 22 May 2004 03:58:36 -0000 @@ -182,8 +182,8 @@ */ TAILQ_FOREACH(ih, &it->it_handlers, ih_next) { MPASS(ih->ih_flags & IH_FAST); - CTR3(KTR_INTR, "%s: executing handler %p(%p)", - __func__, ih->ih_handler, + CTR3(KTR_INTR, "%s: irq %d executing handler %p(%p)", + __func__, vector, ih->ih_handler, ih->ih_argument == NULL ? iframe : ih->ih_argument); if (ih->ih_argument == NULL) @@ -198,6 +198,8 @@ * For stray and threaded interrupts, we mask and EOI the * source. */ + CTR3(KTR_INTR, "%s: ireq %d scheduling ithread\n", __func__, + vector); isrc->is_pic->pic_disable_source(isrc); isrc->is_pic->pic_eoi_source(isrc); if (ih == NULL)