1QUEUE_WORK_ON(9) Driver Basics QUEUE_WORK_ON(9)
2
3
4
6 queue_work_on - queue work on specific cpu
7
9 bool queue_work_on(int cpu, struct workqueue_struct * wq,
10 struct work_struct * work);
11
13 cpu
14 CPU number to execute work on
15
16 wq
17 workqueue to use
18
19 work
20 work to queue
21
23 Returns false if work was already on a queue, true otherwise.
24
25 We queue the work to a specific CPU, the caller must ensure it can't go
26 away.
27
29Kernel Hackers Manual 3.10 June 2019 QUEUE_WORK_ON(9)