函数源码 |
Source File:kernel\irq\manage.c |
Create Date:2022-07-27 11:09:34 |
首页 | Copyright©Brick |
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 | static void irq_wake_secondary( struct irq_desc *desc, struct irqaction *action) { struct irqaction *secondary = action->secondary; if (WARN_ON_ONCE(!secondary)) return ; raw_spin_lock_irq(&desc->lock); __irq_wake_thread(desc, secondary); raw_spin_unlock_irq(&desc->lock); } |