- 论坛徽章:
- 2
|
1. 内核对中断上下文的定义是什么?
禁止抢占就可以认为是中断上下文,而不是狭义上的softirq和irq吧。
2. del_timer_sync不能再中断上下文调用?- * Note: For !irqsafe timers, you must not hold locks that are held in
- * interrupt context while calling this function. Even if the lock has
- * nothing to do with the timer in question. Here's why:
- *
- * CPU0 CPU1
- * ---- ----
- * <SOFTIRQ>
- * call_timer_fn();
- * base->running_timer = mytimer;
- * spin_lock_irq(somelock);
- * <IRQ>
- * spin_lock(somelock);
- * del_timer_sync(mytimer);
- * while (base->running_timer == mytimer);
- *
- * Now del_timer_sync() will never return and never release somelock.
- * The interrupt on the other CPU is waiting to grab somelock but
- * it has interrupted the softirq that CPU0 is waiting to finish.
- *
- * The function returns whether it has deactivated a pending timer or not.
复制代码 删除定时器就是detach_timer,看内核对del_timer_sync的实现,它没有主动调度,如果按照上面的用法,是会死锁。
但是如果我这样用:
- * CPU0 CPU1
- * ---- ----
- * <SOFTIRQ>
- * call_timer_fn();
- * base->running_timer = mytimer;
- * spin_lock_irq(lock_A);
- * <IRQ>
- * spin_lock(lock_B);
- * del_timer_sync(mytimer);
- * while (base->running_timer == mytimer);
复制代码 保证该锁不会死锁,应该好像也是可以用的? |
|