Re: Problems writting a CHAR Driver with interruptible_sleep

thomas.putnam@natinst.com
Thu, 12 Aug 1999 14:38:18 -0500


A quick solution is to turn off interrupts with a cli() immediately before you
tell the device that you want them. When you call interuptible_sleep, Linux
will enable interrupts after you are safely in the wait queue, and any pending
interrupts will occur. To avoid losing interrupts, however, you might want
implement some kind of queue to hold messages. You would still use a cli() to
make sure everything happened atomically, however. The correct implementation
really depends on how your device functions.

-Andy Putman

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/