From owner-p4-projects@FreeBSD.ORG Fri Jan 5 16:29:52 2007 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 1FBA716A47C; Fri, 5 Jan 2007 16:29:52 +0000 (UTC) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BFC7A16A47B for ; Fri, 5 Jan 2007 16:29:51 +0000 (UTC) (envelope-from piso@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 76BBA13C45B for ; Fri, 5 Jan 2007 16:29:51 +0000 (UTC) (envelope-from piso@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l05GTpTM057574 for ; Fri, 5 Jan 2007 16:29:51 GMT (envelope-from piso@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l05GTpK2057571 for perforce@freebsd.org; Fri, 5 Jan 2007 16:29:51 GMT (envelope-from piso@freebsd.org) Date: Fri, 5 Jan 2007 16:29:51 GMT Message-Id: <200701051629.l05GTpK2057571@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to piso@freebsd.org using -f From: Paolo Pisati To: Perforce Change Reviews Cc: Subject: PERFORCE change 112546 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jan 2007 16:29:52 -0000 http://perforce.freebsd.org/chv.cgi?CH=112546 Change 112546 by piso@piso_newluxor on 2007/01/05 16:29:28 o s/mi_handle_intr/handle_intr/g o indentation Affected files ... .. //depot/projects/soc2006/intr_filter/amd64/amd64/intr_machdep.c#14 edit .. //depot/projects/soc2006/intr_filter/arm/arm/intr.c#13 edit .. //depot/projects/soc2006/intr_filter/i386/i386/intr_machdep.c#21 edit .. //depot/projects/soc2006/intr_filter/ia64/ia64/interrupt.c#12 edit .. //depot/projects/soc2006/intr_filter/kern/kern_intr.c#24 edit .. //depot/projects/soc2006/intr_filter/powerpc/powerpc/intr_machdep.c#18 edit .. //depot/projects/soc2006/intr_filter/sparc64/sparc64/intr_machdep.c#13 edit .. //depot/projects/soc2006/intr_filter/sys/interrupt.h#11 edit Differences ... ==== //depot/projects/soc2006/intr_filter/amd64/amd64/intr_machdep.c#14 (text+ko) ==== @@ -274,7 +274,7 @@ if (vector == 0) clkintr_pending = 1; - res = mi_handle_intr(ie, frame, intr_eoi_src, intr_disab_eoi_src, isrc); + res = handle_intr(ie, frame, intr_eoi_src, intr_disab_eoi_src, isrc); switch(res) { case 0: /* FALLTHROUGH */ ==== //depot/projects/soc2006/intr_filter/arm/arm/intr.c#13 (text+ko) ==== @@ -141,8 +141,8 @@ while ((i = arm_get_next_irq()) != -1) { intrcnt[intrcnt_tab[i]]++; event = intr_events[i]; - res = mi_handle_intr(event, frame, intr_eoi_src_stub, - intr_disab_eoi_src, (void *)i); + res = handle_intr(event, frame, intr_eoi_src_stub, + intr_disab_eoi_src, (void *)i); switch (res) { case 0: break; ==== //depot/projects/soc2006/intr_filter/i386/i386/intr_machdep.c#21 (text+ko) ==== @@ -262,7 +262,7 @@ if (vector == 0) clkintr_pending = 1; - res = mi_handle_intr(ie, frame, intr_eoi_src, intr_disab_eoi_src, isrc); + res = handle_intr(ie, frame, intr_eoi_src, intr_disab_eoi_src, isrc); switch(res) { case 0: /* FALLTHROUGH */ ==== //depot/projects/soc2006/intr_filter/ia64/ia64/interrupt.c#12 (text+ko) ==== @@ -396,8 +396,8 @@ if (i->cntp) atomic_add_long(i->cntp, 1); - res = mi_handle_intr(i->event, frame, intr_eoi_src_stub, - intr_disab_eoi_src_stub, NULL); + res = handle_intr(i->event, frame, intr_eoi_src_stub, + intr_disab_eoi_src_stub, NULL); switch (res) { case 0: break; ==== //depot/projects/soc2006/intr_filter/kern/kern_intr.c#24 (text+ko) ==== @@ -1007,9 +1007,9 @@ * o ECHILD: no ithread scheduled. */ int -mi_handle_intr(struct intr_event *ie, struct trapframe *frame, - void (*intr_eoi_src)(void *), - void (*intr_disab_eoi_src)(void *), void *arg) +handle_intr(struct intr_event *ie, struct trapframe *frame, + void (*intr_eoi_src)(void *), void (*intr_disab_eoi_src)(void *), + void *arg) { struct intr_thread *ithd; struct thread *td; ==== //depot/projects/soc2006/intr_filter/powerpc/powerpc/intr_machdep.c#18 (text+ko) ==== @@ -280,7 +280,7 @@ ie = i->event; KASSERT(ie != NULL, ("%s: interrupt without an event", __func__)); - res = mi_handle_intr(ie, NULL, intr_eoi_src_stub, + res = handle_intr(ie, NULL, intr_eoi_src_stub, intr_disab_eoi_src_stub, NULL); switch(res) { case 0: ==== //depot/projects/soc2006/intr_filter/sparc64/sparc64/intr_machdep.c#13 (text+ko) ==== @@ -272,8 +272,8 @@ iv = cookie; ie = iv->iv_event; - res = mi_handle_intr(ie, NULL, intr_eoi_src_stub, intr_disab_eoi_src_stub, - NULL); + res = handle_intr(ie, NULL, intr_eoi_src_stub, + intr_disab_eoi_src_stub, NULL); switch (res) { case 0: /* FALLTHROUGH */ ==== //depot/projects/soc2006/intr_filter/sys/interrupt.h#11 (text+ko) ==== @@ -119,9 +119,9 @@ void stray_detection(void *_arg); void intr_eoi_src_stub(void *arg __unused); void intr_disab_eoi_src_stub(void *arg __unused); -int mi_handle_intr(struct intr_event *ie, struct trapframe *frame, - void (*intr_eoi_src)(void *), - void (*intr_disab_eoi_src)(void *), void *arg); +int handle_intr(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); int intr_event_add_handler(struct intr_event *ie, const char *name, driver_filter_t filter, driver_intr_t handler, void *arg, u_char pri, enum intr_type flags,