From owner-freebsd-hackers@FreeBSD.ORG Fri Jun 8 07:30:06 2007 Return-Path: X-Original-To: freebsd-hackers@freebsd.org Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8E1E716A469 for ; Fri, 8 Jun 2007 07:30:06 +0000 (UTC) (envelope-from freebsd@gm.nunu.org) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.225]) by mx1.freebsd.org (Postfix) with ESMTP id 55BE613C45A for ; Fri, 8 Jun 2007 07:30:06 +0000 (UTC) (envelope-from freebsd@gm.nunu.org) Received: by wr-out-0506.google.com with SMTP id 69so232785wra for ; Fri, 08 Jun 2007 00:30:05 -0700 (PDT) Received: by 10.65.248.19 with SMTP id a19mr2545553qbs.1181287805521; Fri, 08 Jun 2007 00:30:05 -0700 (PDT) Received: by 10.35.71.8 with HTTP; Fri, 8 Jun 2007 00:30:05 -0700 (PDT) Message-ID: <626eb4530706080030pc03d9e8t59d78956b0ba0479@mail.gmail.com> Date: Fri, 8 Jun 2007 16:30:05 +0900 From: "Hidetoshi Shimokawa" Sender: freebsd@gm.nunu.org To: "Hans Petter Selasky" In-Reply-To: <200706080921.23638.hselasky@c2i.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200706080848.36402.hselasky@c2i.net> <626eb4530706080017w67820eabk7df95ca4ff50b695@mail.gmail.com> <200706080921.23638.hselasky@c2i.net> X-Google-Sender-Auth: 5e2b39489df0cac8 Cc: freebsd-hackers@freebsd.org Subject: Re: Lost interrupts during boot X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jun 2007 07:30:06 -0000 The latest firewire driver I commited this week uses interrupt filter. There might be some bad interaction between them if they share IRQ. You can disable interrupt filter of firewire driver by changing #define FWOHCI_INTFILT 0 in fwohcivar.h. If you are using the latest firewire driver, can you try this? On 6/8/07, Hans Petter Selasky wrote: > On Friday 08 June 2007 09:17, Hidetoshi Shimokawa wrote: > > Do you have INTR_FILTER in your kernel config file? > > No. > > > Does the USB driver use interrupt filter or only ithread? > > Ithread. > > Interrupt filter is NULL I think. > > #if (__FreeBSD_version >= 700031) > err = bus_setup_intr(self, sc->sc_irq_res, INTR_TYPE_BIO|INTR_MPSAFE, > NULL, (void *)(void *)ehci_interrupt, sc, &sc->sc_intr_hdl); > #else > err = bus_setup_intr(self, sc->sc_irq_res, INTR_TYPE_BIO|INTR_MPSAFE, > (void *)(void *)ehci_interrupt, sc, > &sc->sc_intr_hdl); > #endif > > > --HPS > _______________________________________________ > freebsd-hackers@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-hackers > To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@freebsd.org" > -- /\ Hidetoshi Shimokawa \/ simokawa@FreeBSD.ORG