1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-04-19 22:49:01 +00:00
linux-insides/Interrupts
Chi-Kuan Chiu 3f1ec38445 Fix incorrect description of tasklet
The original text mistakenly referred to `tasklet_vec` and
`tasklet_hi_vec` as arrays.
In reality, they are implemented as per-CPU linked lists for managing
normal- and high-priority tasklets.
This commit updates the description to reflect their correct structure.
Reference: kernel/softirq.c

Let me know if this should be filed as an issue first instead — happy to adjust accordingly.

Co-authored-by: Cheng-Yang Chou <yphbchou0911@gmail.com>
2025-04-13 21:01:07 +08:00
..
images [ImgBot] Optimize images 2021-08-02 16:25:26 +00:00
linux-interrupts-1.md Merge branch 'master' into master 2022-07-31 14:50:55 +06:00
linux-interrupts-2.md fix all broken links on Kernel stacks 2024-02-05 21:11:44 +08:00
linux-interrupts-3.md copyedit: interrupts chapter 2022-07-24 23:19:18 -04:00
linux-interrupts-4.md copyedit: interrupts chapter 2022-07-24 23:19:18 -04:00
linux-interrupts-5.md fix all broken links on Kernel stacks 2024-02-05 21:11:44 +08:00
linux-interrupts-6.md Merge branch 'master' into master 2022-07-31 14:50:55 +06:00
linux-interrupts-7.md copyedit: interrupts chapter 2022-07-24 23:19:18 -04:00
linux-interrupts-8.md copyedit: interrupts chapter 2022-07-24 23:19:18 -04:00
linux-interrupts-9.md Fix incorrect description of tasklet 2025-04-13 21:01:07 +08:00
linux-interrupts-10.md copyedit: interrupts chapter 2022-07-24 23:19:18 -04:00
README.md capitalize Linux everywhere 2022-05-01 09:12:23 -04:00

Interrupts and Interrupt Handling

In the following posts, we will cover interrupts and exceptions handling in the Linux kernel.