Correction
Posted Apr 22, 2004 16:29 UTC (Thu) by
proski (subscriber, #104)
Parent article:
Driver porting: the workqueue interface.
Among other things, each workqueue has one or more dedicated worker threads (one per CPU) associated with it. So all tasks running out of workqueues have a process context, and can thus sleep.
This incorrectly implies that the task queue in 2.4 kernels is not run in the process context and cannot sleep. It's not true. The task queue is run in the context of the "keventd" process.
I believe the only significant difference is that the workqueue is processed in per-CPU threads whereas task queue is processed by a single kernel thread.
(
Log in to post comments)