Date: Tue, 16 Jul 2002 17:49:19 -0400 From: Joshua Lee <yid@softhome.net> To: barbish@a1poweruser.com Cc: questions@FreeBSD.ORG Subject: Re: FreeBSD 4.6 Modems Message-ID: <20020716174919.62a72a42.yid@softhome.net> In-Reply-To: <MIEPLLIBMLEEABPDBIEGKEJMCFAA.barbish@a1poweruser.com> References: <20020716151345.418e85f4.yid@softhome.net> <MIEPLLIBMLEEABPDBIEGKEJMCFAA.barbish@a1poweruser.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, 16 Jul 2002 16:18:48 -0400 "Joe & Fhe Barbish" <barbish@a1poweruser.com> wrote: > I did not see any responses to your original post in this questions > list where you were given an one line fix to the source for your It was a private email. Sorry for not posting the details. > I have seen the irq sharing question posted many times by many > different people. Your solution needs to be part of archive to help > these people who follow you, and I would like to know also. Sorry. Much thanks to Matthew Emmerton for the solution, which is not really *my* solution other than the fact that it was for fixing a problem with my machine. Hopefully soon this bugfix will be incorporated in the kernel so people won't have to do this. Go into /usr/src/sys/isa/sio.c Replace in sioattach() the line that looks like this: com->irqres = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0ul, ~0ul, 1, RF_ACTIVE); With this: com->irqres = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0ul, ~0ul, 1, RF_SHAREABLE | RF_ACTIVE); Recompile the kernel and reboot, PCI modems will be able to share IRQs now as they are designed to. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020716174919.62a72a42.yid>