- 论坛徽章:
- 6
|
回复 20# blake326
但是比较新的内核38以后代码都变了,没有这个标志了,所以一直是关中断的。
刚才看了下V3.7-rc3的内核,的确是这样的,最新的内核因为中断线程化的支持,已经不允许中断上半部的时候嵌套了。
内核建议把中断上半部中的处理放到线程中处理,在ISR中是禁止中断嵌套的。- irqreturn_t
- handle_irq_event_percpu(struct irq_desc *desc, struct irqaction *action)
- {
- irqreturn_t retval = IRQ_NONE;
- unsigned int flags = 0, irq = desc->irq_data.irq;
- do {
- irqreturn_t res;
- trace_irq_handler_entry(irq, action);
- res = action->handler(irq, action->dev_id);
- trace_irq_handler_exit(irq, action, res);
- if (WARN_ONCE(!irqs_disabled(),"irq %u handler %pF enabled interrupts\n",
- irq, action->handler))
- local_irq_disable();
- //内核担心老的驱动仍然在ISR中开启中断,打印警告信息,并强制把中断关闭。
- switch (res) {
- case IRQ_WAKE_THREAD:
- //根据返回值,如果ISR线程化了中断,那么就唤起处理线程
- /*
- * Catch drivers which return WAKE_THREAD but
- * did not set up a thread function
- */
- if (unlikely(!action->thread_fn)) {
- warn_no_thread(irq, action);
- break;
- }
- irq_wake_thread(desc, action);
- /* Fall through to add to randomness */
- case IRQ_HANDLED:
- //ISR直接在中断中处理了
- flags |= action->flags;
- break;
- default:
- break;
- }
- retval |= res;
- action = action->next;
- } while (action);
- add_interrupt_randomness(irq, flags);
- if (!noirqdebug)
- note_interrupt(irq, desc, retval);
- return retval;
- }
复制代码 |
|