While writing interrupt handlers (ISR), which are points
needed to be considered ?
Answers were Sorted based on User's Feedback
Answer / jay
Avoid sleep , use GFP_ATOMIC instead of GFP_KERNEL in kmalloc
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / rajesh
While writing ISR it is necessary to remember which routine is having high priority
Initialize the stack pointer
| Is This Answer Correct ? | 10 Yes | 2 No |
Answer / baazicha
- Do not issue blocking calls
- Defer as much processing to second level interrupt
handler or BH.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / shawn bai
not take too long,actually calling dpc
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / dinesh
while writing ISR you should have proper knowledge about
it......... - by chandu
| Is This Answer Correct ? | 1 Yes | 4 No |
Explain scope of static variables?
What kinds of problems can you hit with locking model? And a lockless model?
How i/o devices are classified for embedded system?
Why would you choose java in embedded systems?
Describe the structure and contents of a design document, or a set of design documents, for a multi-tiered web application.
Why is java mostly used in embedded systems?
What is the function of simple thread poll in embedded system?
What is the use of volatile keyword?
what is plc system
What is an embedded system?
what is embedded system in a computer system?
Whether we can use semaphore or mutex or spinlock in interrupt context in linux kernel?