tasklet

Creator
Creator
Alan JoAlan Jo
Created
Created
2023 Oct 18 6:28
Editor
Editor
Alan JoAlan Jo
Edited
Edited
2023 Oct 24 17:1
Refs
Refs

Tasklets are effectively softirqs that do not run concurrently

Flexible, dynamically created bottom-half built on top of softirqs (no nested execution) so simple to use. Preferred to implement deferrable functions in device drivers that need not sleep.
The name 'tasklet' is misleading: they have nothing to do with tasks. It is just aninterrupt request.
tasklet notion
 
 
 
notion image
 
notion image
 
 
 
 
 
 

Recommendations