From owner-p4-projects@FreeBSD.ORG Fri Jul 21 11:53:22 2006 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 F3E0616A4E8; Fri, 21 Jul 2006 11:53:21 +0000 (UTC) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C964416A4E1 for ; Fri, 21 Jul 2006 11:53:21 +0000 (UTC) (envelope-from piso@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92CBF43D49 for ; Fri, 21 Jul 2006 11:53:21 +0000 (GMT) (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 k6LBrLh1044860 for ; Fri, 21 Jul 2006 11:53:21 GMT (envelope-from piso@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6LBrLX6044857 for perforce@freebsd.org; Fri, 21 Jul 2006 11:53:21 GMT (envelope-from piso@freebsd.org) Date: Fri, 21 Jul 2006 11:53:21 GMT Message-Id: <200607211153.k6LBrLX6044857@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 102053 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, 21 Jul 2006 11:53:22 -0000 http://perforce.freebsd.org/chv.cgi?CH=102053 Change 102053 by piso@piso_longino on 2006/07/21 11:52:29 Axe INTR_FAST. Affected files ... .. //depot/projects/soc2006/intr_filter/dev/ppbus/pps.c#4 edit .. //depot/projects/soc2006/intr_filter/dev/zs/zs_macio.c#4 edit Differences ... ==== //depot/projects/soc2006/intr_filter/dev/ppbus/pps.c#4 (text+ko) ==== @@ -205,7 +205,7 @@ /* attach the interrupt handler */ if ((error = bus_setup_intr(ppsdev, sc->intr_resource, - (INTR_TYPE_TTY | INTR_MPSAFE | INTR_FAST), + INTR_TYPE_TTY, ppsintr, NULL, sc, &sc->intr_cookie))) { ppb_release_bus(ppbus, ppsdev); ==== //depot/projects/soc2006/intr_filter/dev/zs/zs_macio.c#4 (text+ko) ==== @@ -158,8 +158,8 @@ device_printf(dev, "could not allocate interrupt 1\n"); goto error; } - if (bus_setup_intr(dev, sc->sc_irqres1, INTR_TYPE_TTY | INTR_FAST, - (driver_filter_t *)zs_intr, NULL, sc, &sc->sc_ih1) != 0) { + if (bus_setup_intr(dev, sc->sc_irqres1, INTR_TYPE_TTY, + zs_intr, NULL, sc, &sc->sc_ih1) != 0) { device_printf(dev, "could not setup interrupt 1\n"); goto error; } @@ -170,8 +170,8 @@ device_printf(dev, "could not allocate interrupt 2\n"); goto error; } - if (bus_setup_intr(dev, sc->sc_irqres2, INTR_TYPE_TTY | INTR_FAST, - (driver_filter_t *)zs_intr, NULL, sc, &sc->sc_ih2) != 0) { + if (bus_setup_intr(dev, sc->sc_irqres2, INTR_TYPE_TTY, + zs_intr, NULL, sc, &sc->sc_ih2) != 0) { device_printf(dev, "could not setup interrupt 2\n"); goto error; }