1. de2104x: interrupts before interrupt handler is registered
2. [PATCH] USB: fix interrupt disabling for HCDs with shared interrupt handlers - Linux
3. [PATCH] USB: fix interrupt disabling for HCDs with shared interrupt handlers
4. semaphores not usable in Linux interrupt handler?
5. execution time in interrupt handler.
Hi all, May be this is just a stupid question, but I have to ask it. :) Is there any limitation on execution time in the interrupt handler? e.g. In a timer interrupt, I perform some of the tasks like - 1. refreshing the watchdog timer. 2. set user clock 3. calculate process CPU usage Is is that there is a limit on the tasks performed in the interrupt handler? Your response highly appreciated. Thank you. -Anand
6. Resetting system clock with interrupt handler?
7. Adding a new interrupt handler to the IDT
I have a system which will be creating CPU interrupts via a user-supplied IDT value. I have a kernel module which will handle the interrupt - I just need to hook this code into the interrupt handler mechanism. I cannot find any documentation on how to create an entry in the IDT or to identify the linkage protocol (assuming I can create an IDT entry). Note: These are NOT IRQs and, therefore, the request_irq() services cannot be used. This would be equivalent to creating a handler for the INT instruction. Any ideas or pointers would be appreciated. Thanks - Martin