aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/workqueue.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 2bd5aee1c736..62d47220696a 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -419,6 +419,25 @@ int schedule_delayed_work_on(int cpu,
419 return ret; 419 return ret;
420} 420}
421 421
422int schedule_on_each_cpu(void (*func) (void *info), void *info)
423{
424 int cpu;
425 struct work_struct *work;
426
427 work = kmalloc(NR_CPUS * sizeof(struct work_struct), GFP_KERNEL);
428
429 if (!work)
430 return -ENOMEM;
431 for_each_online_cpu(cpu) {
432 INIT_WORK(work + cpu, func, info);
433 __queue_work(per_cpu_ptr(keventd_wq->cpu_wq, cpu),
434 work + cpu);
435 }
436 flush_workqueue(keventd_wq);
437 kfree(work);
438 return 0;
439}
440
422void flush_scheduled_work(void) 441void flush_scheduled_work(void)
423{ 442{
424 flush_workqueue(keventd_wq); 443 flush_workqueue(keventd_wq);