Linux 内核timer_interrupt()源码解析
时间: 2023-06-17 07:04:05 浏览: 199
Linux中check_timer()及timer_irq_works()函数详解
timer_interrupt() 是 Linux 内核中的一个定时器中断处理函数,它主要用于处理内核中的各种定时器事件,包括时钟中断、定时器任务等。
源码如下:
```c
void __irqentry timer_interrupt(struct pt_regs *regs)
{
...
update_process_times(user_mode(regs));
profile_tick(CPU_PROFILING, user_mode(regs), regs);
if (user_mode(regs))
return;
irq_enter();
#ifdef CONFIG_NO_HZ_COMMON
/*
* The tick broadcast device is disabled after the first
* CPU goes offlined, see tick_nohz_enable.
*/
if (tick_nohz_tick_stopped())
goto out;
#endif
tick_check_idle(TICK_NMI_SAFE);
/*
* Tickless idle is in progress.
*/
if (idle_cpu(smp_processor_id())) {
watchdog_touch();
smp_idle_check();
goto out;
}
/*
* Check if we need to do anything at all:
*/
if (!tick_check_oneshot_broadcast(tick_nohz_full_cpu_idle())) {
if (tick_check_oneshot() &&
!tick_check_broadcast_expired() &&
!tick_broadcast_oneshot_active()) {
tick_program_event(tick_oneshot_broadcast, oneshot_timer.expires);
goto out;
}
if (tick_check_broadcast_spurious())
goto out;
if (tick_check_cpu_dead(cpu) || tick_check_new_device(cpu))
goto out;
tick_check_replacement(cpu);
}
/*
* Re-enable periodic tick if it is stopped and there are no
* oneshot or broadcast events pending:
*/
if (tick_check_periodic() &&
!tick_check_oneshot_active() &&
!tick_check_broadcast_active())
tick_program_event(tick_periodic, tick_next_period);
out:
irq_exit();
...
}
```
该函数的主要流程如下:
1. 调用 update_process_times() 和 profile_tick() 更新进程的时间信息和性能分析信息。
2. 判断是否是用户态,如果是则直接返回。
3. 调用 irq_enter() 进入中断上下文。
4. 检查 tickless idle 是否正在进行,如果是,则直接返回。
5. 检查是否正在进行 idle,如果是,则调用 watchdog_touch() 和 smp_idle_check(),并直接返回。
6. 检查是否需要进行任何操作。
7. 如果需要,检查是否需要启动一次性定时器事件。
8. 如果需要,检查是否需要启动广播定时器事件。
9. 如果需要,检查是否需要停止定时器,并重新启动。
10. 调用 irq_exit() 退出中断上下文。
总的来说,timer_interrupt() 函数主要用于检查和处理各种定时器事件,以保证内核的正常运行。这些事件包括一次性定时器、广播定时器、周期性定时器等。
阅读全文