While studying Linux interrupt handling I found that Tasklets and SoftIRQs are two different methods of performing "bottom half" (lesser priority work). I understand this (quite genuine need).
Difference being, SoftIRQs are re-entarant while a Tasklet is NOT. That same SoftIRQ can run on different CPUs while this is NOT the case with Tasklets.
Though I understand this from surface but I fail in understanding the requirements of the two features. In what case(s) we may use these facilities ? How to recognize that I should use Tasklets now and SoftIRQs then.
Also what do we mean by Tasklets are made upon SoftIRQs ? In one of the books I read in LKML there were debates upon removing Tasklets. I got completely confused why one would bring in such a feature ? Some shortsightedness (No offense meant) ?
Any pointers on this will help a lot.
include/linux/interrupt.h
The key differences between
softirq
andtasklet
are:DECLARE_TASKLET(name, func, data)
or can also be allocated dynamically and initialized at runtime usingtasklet_init(name, func, data)
reentrant
functions and must explicitly protect their data structures with spinlocks.non-reentrant
and tasklets of the same type are always serialized: in other words, the same type of tasklet cannot be executed by two CPUs at the same time. However, tasklets of different types can be executed concurrently on several CPUs.raise_softirq()
. The pending softirqs are processed bydo_softirq()
andksoftirqd
kernel thread after being enabled bylocal_bh_enable()
or byspin_unlock_bh()
HI_SOFTIRQ
andTASKLET_SOFTIRQ
. Tasklets are actually run from a softirq. The only real difference in these types is that theHI_SOFTIRQ
based tasklets run prior to theTASKLET_SOFTIRQ
tasklets. So,tasklet_schedule()
basically callsraise_softirq(TASKLET_SOFTIRQ)
softirq latency
.