Questions tagged [top-halves]

In Linux, top-halves are the real interrupt handler: It just tells the kernel to run the bottom half, and exits.

2 questions
16
votes
3 answers

Which stack is used by Interrupt Handler - Linux

In a multitasking system when any hardware generates a interrupt to a particular CPU, where CPU can be performing either of below cases unless it is already serving a ISR: User mode process is executing on CPU Kernel mode process is executing on…
Sunil Bojanapally
  • 12,528
  • 4
  • 33
  • 46
5
votes
3 answers

Top halves and bottom halves concept clarification

As per the guide lines of Top halves and Bottom halves, When any interrupt comes it is handled by two halves. The so-called top half is the routine that actually responds to the interrupt—the one you register with request_irq. The bottom half is a…
sagar
  • 99
  • 1
  • 1
  • 3