Что происходит с вытесненным обработчиком прерываний?

Я не смог найти правильный ответ на следующие вопросы даже в некоторых хорошо написанных книгах по ядру:

They are saying that an ISR can't sleep because its not possible to reschedule an ISR as it is not connected with any process , so what happens when a higher priority interrupt preempt the executing one? the interrupted ISR will not rescheduled(execute) again ? if yes how & who will do that work?

many time we will disable interrupt (eg: 1.In critical region 2. When a fast interrupt is executing it will disable all the interrupt in the current processor) , so what will happen for the interrupts that are occurring when interrupts are disabled ? they are simply discarded? or will be stored somewhere for later execution? if yes where & how?

when an ISR is executing it will disable interrupt in the current IRQ line to avoid reentrant(preventing another ISR on the same line from being executed), but why? whats wrong if an ISR is reentrant?

* ISR = Программа обработки прерываний

* Они = Автор книги

Ответы на вопрос(4)

Ваш ответ на вопрос