Why kernel code/thread executing in interrupt context cannot sleep?

前端 未结 11 1691
余生分开走
余生分开走 2020-11-30 17:20

I am reading following article by Robert Love

http://www.linuxjournal.com/article/6916

that says

\"...Let\'s discuss the fact that work queues run i

11条回答
  •  自闭症患者
    2020-11-30 18:11

    Even if you could put an ISR to sleep, you wouldn't want to do it. You want your ISRs to be as fast as possible to reduce the risk of missing subsequent interrupts.

提交回复
热议问题