Date: Sat, 6 Jan 2007 02:21:57 GMT From: Paolo Pisati <piso@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 112586 for review Message-ID: <200701060221.l062Lv1L004897@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=112586 Change 112586 by piso@piso_newluxor on 2007/01/06 02:21:47 s/handle_intr/intr_event_handle/g Affected files ... .. //depot/projects/soc2006/intr_filter/amd64/amd64/intr_machdep.c#16 edit .. //depot/projects/soc2006/intr_filter/arm/arm/intr.c#15 edit .. //depot/projects/soc2006/intr_filter/i386/i386/intr_machdep.c#23 edit .. //depot/projects/soc2006/intr_filter/ia64/ia64/interrupt.c#15 edit .. //depot/projects/soc2006/intr_filter/kern/kern_intr.c#27 edit .. //depot/projects/soc2006/intr_filter/powerpc/powerpc/intr_machdep.c#21 edit .. //depot/projects/soc2006/intr_filter/sparc64/sparc64/intr_machdep.c#15 edit .. //depot/projects/soc2006/intr_filter/sys/interrupt.h#12 edit Differences ... ==== //depot/projects/soc2006/intr_filter/amd64/amd64/intr_machdep.c#16 (text+ko) ==== @@ -274,7 +274,7 @@ if (vector == 0) clkintr_pending = 1; - res = handle_intr(ie, frame, intr_eoi_src, intr_disab_eoi_src, isrc); + res = intr_event_handle(ie, frame, intr_eoi_src, intr_disab_eoi_src, isrc); switch(res) { case 0: break; ==== //depot/projects/soc2006/intr_filter/arm/arm/intr.c#15 (text+ko) ==== @@ -141,7 +141,7 @@ while ((i = arm_get_next_irq()) != -1) { intrcnt[intrcnt_tab[i]]++; event = intr_events[i]; - handle_intr(event, frame, intr_eoi_src_stub, + intr_event_handle(event, frame, intr_eoi_src_stub, intr_disab_eoi_src, (void *)i); } } ==== //depot/projects/soc2006/intr_filter/i386/i386/intr_machdep.c#23 (text+ko) ==== @@ -262,7 +262,7 @@ if (vector == 0) clkintr_pending = 1; - res = handle_intr(ie, frame, intr_eoi_src, intr_disab_eoi_src, isrc); + res = intr_event_handle(ie, frame, intr_eoi_src, intr_disab_eoi_src, isrc); switch(res) { case 0: break; ==== //depot/projects/soc2006/intr_filter/ia64/ia64/interrupt.c#15 (text+ko) ==== @@ -405,7 +405,7 @@ if (i->cntp) atomic_add_long(i->cntp, 1); - res = handle_intr(i->event, frame, intr_eoi_src, + res = intr_event_handle(i->event, frame, intr_eoi_src, intr_disab_eoi_src_stub, (void *)vector); switch (res) { case 0: ==== //depot/projects/soc2006/intr_filter/kern/kern_intr.c#27 (text+ko) ==== @@ -1006,7 +1006,7 @@ * o EINVAL: stray interrupt. */ int -handle_intr(struct intr_event *ie, struct trapframe *frame, +intr_event_handle(struct intr_event *ie, struct trapframe *frame, void (*intr_eoi_src)(void *), void (*intr_disab_eoi_src)(void *), void *arg) { ==== //depot/projects/soc2006/intr_filter/powerpc/powerpc/intr_machdep.c#21 (text+ko) ==== @@ -289,7 +289,7 @@ ie = i->event; KASSERT(ie != NULL, ("%s: interrupt without an event", __func__)); - res = handle_intr(ie, NULL, intr_eoi_src, + res = intr_event_handle(ie, NULL, intr_eoi_src, intr_disab_eoi_src_stub, (void *)irq); switch(res) { case 0: ==== //depot/projects/soc2006/intr_filter/sparc64/sparc64/intr_machdep.c#15 (text+ko) ==== @@ -272,7 +272,7 @@ iv = cookie; ie = iv->iv_event; - res = handle_intr(ie, NULL, intr_eoi_src_stub, + res = intr_event_handle(ie, NULL, intr_eoi_src_stub, intr_disab_eoi_src_stub, NULL); switch (res) { case 0: ==== //depot/projects/soc2006/intr_filter/sys/interrupt.h#12 (text+ko) ==== @@ -119,7 +119,7 @@ void stray_detection(void *_arg); void intr_eoi_src_stub(void *arg __unused); void intr_disab_eoi_src_stub(void *arg __unused); -int handle_intr(struct intr_event *ie, struct trapframe *frame, +int intr_event_handle(struct intr_event *ie, struct trapframe *frame, void (*intr_eoi_src)(void *), void (*intr_disab_eoi_src)(void *), void *arg); u_char intr_priority(enum intr_type flags);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200701060221.l062Lv1L004897>