- 论坛徽章:
- 0
|
>>1.timer挂起为什么可以通过return timer->entry.next != NULL;
来判断,是不是TIMER在过期后执行前首先要从双链中解除下来。所以上面的判断可以这样进行。
对
>>2.timer_jiffies如何更新
在run_timer_list中更新
- v2.4.0
- static inline void run_timer_list(void)
- {
- spin_lock_irq(&timerlist_lock);
- while ((long)(jiffies - timer_jiffies) >= 0) {//定时器到时,可能还错过了几个jiffies,补上
- struct list_head *head, *curr;
- if (!tv1.index) {// 最近要执行的定时器队列已被遍历一遍
- int n = 1;
- do {
- cascade_timers(tvecs[n]);
- } while (tvecs[n]->index == 1 && ++n < NOOF_TVECS);
- }
- repeat:
- head = tv1.vec + tv1.index;
- curr = head->next;
- if (curr != head) {
- struct timer_list *timer;
- void (*fn)(unsigned long);
- unsigned long data;
- timer = list_entry(curr, struct timer_list, list);
- fn = timer->function;
- data= timer->data;
- detach_timer(timer);
- timer->list.next = timer->list.prev = NULL;
- //一次只运行一个定时器,run_timer_list是在timer_bh中运行的,
- //所以一次只有一个CPU执行run_timer_list
- timer_enter(timer);
- spin_unlock_irq(&timerlist_lock);
- fn(data);//执行定时任务
- spin_lock_irq(&timerlist_lock);
- timer_exit();
- goto repeat;
- }
- ++timer_jiffies; //更新
- tv1.index = (tv1.index + 1) & TVR_MASK;
- }
- spin_unlock_irq(&timerlist_lock);
- }
复制代码 |
|