* [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
* Re: [patch] cleanup: kthread workqueue rename
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
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2006-06-22 11:13 UTC (permalink / raw)
To: Coywolf Qi Hunt; +Cc: linux-kernel, rusty
On Thu, 22 Jun 2006 16:29:12 +0800
Coywolf Qi Hunt <qiyong@fc-cn.com> wrote:
> -static struct workqueue_struct *helper_wq;
> +static struct workqueue_struct *kthread_wq;
"helper" is better. It's there to help kthread launching and that's all it
does. So "helper" is a more specific identification.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [patch] cleanup: kthread workqueue rename
2006-06-22 11:13 ` Andrew Morton
@ 2006-06-22 11:41 ` Coywolf Qi Hunt
0 siblings, 0 replies; 3+ messages in thread
From: Coywolf Qi Hunt @ 2006-06-22 11:41 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-kernel, rusty
On Thu, Jun 22, 2006 at 04:13:16AM -0700, Andrew Morton wrote:
> On Thu, 22 Jun 2006 16:29:12 +0800
> Coywolf Qi Hunt <qiyong@fc-cn.com> wrote:
>
> > -static struct workqueue_struct *helper_wq;
> > +static struct workqueue_struct *kthread_wq;
>
> "helper" is better. It's there to help kthread launching and that's all it
> does. So "helper" is a more specific identification.
So "khelper_wq" should better be "helper_wq" too?
khelper_wq = create_singlethread_workqueue("khelper");
'helper_wq' becomes [kthread] as shown in ps ax; I don't think it is a 'helper'.
5 ? S< 0:00 [khelper]
6 ? S< 0:00 [kthread]
That vague name makes me easily forget what I am looking at. Please apply.
--
Coywolf Qi Hunt
^ permalink raw reply [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.