1QUEUE_WORK(9)                    Driver Basics                   QUEUE_WORK(9)
2
3
4

NAME

6       queue_work - queue work on a workqueue
7

SYNOPSIS

9       int queue_work(struct workqueue_struct * wq,
10                      struct work_struct * work);
11

ARGUMENTS

13       wq
14           workqueue to use
15
16       work
17           work to queue
18

DESCRIPTION

20       Returns 0 if work was already on a queue, non-zero otherwise.
21
22       We queue the work to the CPU on which it was submitted, but if the CPU
23       dies it can be processed by another CPU.
24
26Kernel Hackers Manual 2.6.         June 2019                     QUEUE_WORK(9)
Impressum