On Tue, 16 Jul 2002 16:18:48 -0400 "Joe & Fhe Barbish" <[EMAIL PROTECTED]> 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 [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message