All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch] cleanup: kthread workqueue rename
@ 2006-06-22  8:29 Coywolf Qi Hunt
  2006-06-22 11:13 ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Coywolf Qi Hunt @ 2006-06-22  8:29 UTC (permalink / raw)
  To: linux-kernel; +Cc: akpm, rusty

cleanup: rename kthread helper_wq to kthread_wq.

Signed-off-by: Qi Yong <qiyong@freeforge.net>
---
diff --git a/kernel/kthread.c b/kernel/kthread.c
index c5f3c66..3184c94 100644
--- a/kernel/kthread.c
+++ b/kernel/kthread.c
@@ -19,7 +19,7 @@ #include <asm/semaphore.h>
  * We dont want to execute off keventd since it might
  * hold a semaphore our callers hold too:
  */
-static struct workqueue_struct *helper_wq;
+static struct workqueue_struct *kthread_wq;
 
 struct kthread_create_info
 {
@@ -138,10 +138,10 @@ struct task_struct *kthread_create(int (
 	/*
 	 * The workqueue needs to start up first:
 	 */
-	if (!helper_wq)
+	if (!kthread_wq)
 		work.func(work.data);
 	else {
-		queue_work(helper_wq, &work);
+		queue_work(kthread_wq, &work);
 		wait_for_completion(&create.done);
 	}
 	if (!IS_ERR(create.result)) {
@@ -203,12 +203,12 @@ int kthread_stop_sem(struct task_struct 
 }
 EXPORT_SYMBOL(kthread_stop_sem);
 
-static __init int helper_init(void)
+static __init int kthread_init(void)
 {
-	helper_wq = create_singlethread_workqueue("kthread");
-	BUG_ON(!helper_wq);
+	kthread_wq = create_singlethread_workqueue("kthread");
+	BUG_ON(!kthread_wq);
 
 	return 0;
 }
-core_initcall(helper_init);
+core_initcall(kthread_init);
 

-- 
Coywolf Qi Hunt

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2006-06-22 11:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-22  8:29 [patch] cleanup: kthread workqueue rename Coywolf Qi Hunt
2006-06-22 11:13 ` Andrew Morton
2006-06-22 11:41   ` Coywolf Qi Hunt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.