mirror of
https://github.com/MintCN/linux-insides-zh.git
synced 2026-02-12 14:57:04 +08:00
中断和中断处理
在 linux 内核中你会发现很多关于中断和异常处理的话题
- 中断和中断处理 Part 1. - 描述中断处理主题
- Start to dive into interrupts in the Linux kernel - this part starts to describe interrupts and exceptions handling related stuff from the early stage.
- Early interrupt handlers - third part describes early interrupt handlers.
- Interrupt handlers - fourth part describes first non-early interrupt handlers.
- Implementation of exception handlers - descripbes implementation of some exception handlers as double fault, divide by zero and etc.
- Handling Non-Maskable interrupts - describes handling of non-maskable interrupts and the rest of interrupts handlers from the architecture-specific part.
- Dive into external hardware interrupts - this part describes early initialization of code which is related to handling of external hardware interrupts.
- Non-early initialization of the IRQs - this part describes non-early initialization of code which is related to handling of external hardware interrupts.
- Softirq, Tasklets and Workqueues - this part describes softirqs, tasklets and workqueues concepts.
- - this is the last part of the interrupts and interrupt handling chapter and here we will see a real hardware driver and interrupts related stuff.