Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Jun 2007 09:21:23 +0200
From:      Hans Petter Selasky <hselasky@c2i.net>
To:        "Hidetoshi Shimokawa" <simokawa@freebsd.org>
Cc:        freebsd-hackers@freebsd.org
Subject:   Re: Lost interrupts during boot
Message-ID:  <200706080921.23638.hselasky@c2i.net>
In-Reply-To: <626eb4530706080017w67820eabk7df95ca4ff50b695@mail.gmail.com>
References:  <200706080848.36402.hselasky@c2i.net> <626eb4530706080017w67820eabk7df95ca4ff50b695@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200706080921.23638.hselasky>