aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/workqueue.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 2c6871cbcbee..eb5c1972443a 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -2676,13 +2676,15 @@ int schedule_delayed_work_on(int cpu,
2676EXPORT_SYMBOL(schedule_delayed_work_on); 2676EXPORT_SYMBOL(schedule_delayed_work_on);
2677 2677
2678/** 2678/**
2679 * schedule_on_each_cpu - call a function on each online CPU from keventd 2679 * schedule_on_each_cpu - execute a function synchronously on each online CPU
2680 * @func: the function to call 2680 * @func: the function to call
2681 * 2681 *
2682 * Returns zero on success. 2682 * schedule_on_each_cpu() executes @func on each online CPU using the
2683 * Returns -ve errno on failure. 2683 * system workqueue and blocks until all CPUs have completed.
2684 *
2685 * schedule_on_each_cpu() is very slow. 2684 * schedule_on_each_cpu() is very slow.
2685 *
2686 * RETURNS:
2687 * 0 on success, -errno on failure.
2686 */ 2688 */
2687int schedule_on_each_cpu(work_func_t func) 2689int schedule_on_each_cpu(work_func_t func)
2688{ 2690{