问题如题,Linux workqueue 文档在描述 WQ_CPU_INSTENSIVE 时提到:This flag is meaningless for unbound wq.为什么这样说?本文尝试去解读这个标记。unbound wq 就是 WQ_UNBOUND:WQ_UNBOUND Work items queued to an unbound wq are ser...阅读全文
问题workqueue name 就是 alloc_workqueue 的第一个参数:/**
* alloc_workqueue - allocate a workqueue
* @fmt: printf format for the name of the workqueue
[...]
#define alloc_workqueue(fmt, flags, max...阅读全文