1QUEUE_KTHREAD_WORK(9) Driver Basics QUEUE_KTHREAD_WORK(9)
2
3
4
6 queue_kthread_work - queue a kthread_work
7
9 bool queue_kthread_work(struct kthread_worker * worker,
10 struct kthread_work * work);
11
13 worker
14 target kthread_worker
15
16 work
17 kthread_work to queue
18
20 Queue work to work processor task for async execution. task must have
21 been created with kthread_worker_create. Returns true if work was
22 successfully queued, false if it was already pending.
23
25Kernel Hackers Manual 2.6. June 2019 QUEUE_KTHREAD_WORK(9)