- 论坛徽章:
- 1
|
原帖由 xiaozhe2000 于 2009-10-22 14:23 发表 ![]()
tasklet应该有专门的kernel thread来运行,pid=3应该是合理的的
ULK3
Checks for active (pending) softirqs should be perfomed periodically, but without inducing too much overhead. They are performed in a few points of the kernel code. Here is a list of the most significant points (be warned that number and position of the softirq checkpoints change both with the kernel version and with the supported hardware architecture):
When the kernel invokes the local_bh_enable( ) function to enable softirqs on the local CPU
The name local_bh_enable( ) refers to a special type of deferrable function called "bottom half" that no longer exists in Linux 2.6.
When the do_IRQ( ) function finishes handling an I/O interrupt and invokes the irq_exit( ) macro
If the system uses an I/O APIC, when the smp_apic_timer_interrupt( ) function finishes handling a local timer interrupt (see the section "Timekeeping Architecture in Multiprocessor Systems" in Chapter 6)
In multiprocessor systems, when a CPU finishes handling a function triggered by a CALL_FUNCTION_VECTOR interprocessor interrupt
When one of the special ksoftirqd/n kernel threads is awakened (see later)
The ksoftirqd/n kernel threads represent a solution for a critical trade-off problem.
...
The ksoftirqd/n kernel threads try to solve this difficult trade-off problem. The do_softirq( ) function determines what softirqs are pending and executes their functions. After a few iterations, if the flow of softirqs does not stop, the function wakes up the kernel thread and terminates (step 10 of _ _do_softirq( )). The kernel thread has low priority, so user programs have a chance to run; but if the machine is idle, the pending softirqs are executed quickly.
这个不一定,应该也会在特定点上处理一些 |
|