static void start_workqueue_thread(struct cpu_workqueue_struct *cwq, int cpu) { struct task_struct *p = cwq->thread;
if (p != NULL) { if (cpu >= 0) kthread_bind(p, cpu);
wake_up_process(p);
} }