Queue work on specific cpu
bool queue_work_on(int cpu, struct workqueue_struct * wq, struct work_struct * work);
cpu
CPU number to execute work on
wq
workqueue to use
work
work to queue
We queue the work to a specific CPU, the caller must ensure it can't go away.
false if work was already on a queue, true otherwise.