aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/workqueue.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2009-09-11 16:13:32 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-09-11 16:13:32 -0400
commit4004f02d7af9bb1f5fd993fba60ed5bd0f5397a9 (patch)
tree3d7d6dbd82b514550491d93c7a850394deba3f49 /kernel/workqueue.c
parent332a3392188e0ad966543c87b8da2b9d246f301d (diff)
parent5b0f437df0a3e374d26ad533eb78fe64744f55a8 (diff)
Merge branch 'core-cleanups-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'core-cleanups-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip: workqueues: Improve schedule_work() documentation
Diffstat (limited to 'kernel/workqueue.c')
-rw-r--r--kernel/workqueue.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 0668795d8818..3c44b56b0da7 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -600,7 +600,12 @@ static struct workqueue_struct *keventd_wq __read_mostly;
600 * schedule_work - put work task in global workqueue 600 * schedule_work - put work task in global workqueue
601 * @work: job to be done 601 * @work: job to be done
602 * 602 *
603 * This puts a job in the kernel-global workqueue. 603 * Returns zero if @work was already on the kernel-global workqueue and
604 * non-zero otherwise.
605 *
606 * This puts a job in the kernel-global workqueue if it was not already
607 * queued and leaves it in the same position on the kernel-global
608 * workqueue otherwise.
604 */ 609 */
605int schedule_work(struct work_struct *work) 610int schedule_work(struct work_struct *work)
606{ 611{