diff options
| author | Andrew Morton <akpm@linux-foundation.org> | 2009-05-07 15:36:53 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-05-28 17:24:07 -0400 |
| commit | 086a377edc969aea6c761176a7e4ff68f264d6fe (patch) | |
| tree | 81cd6a34fb12a3cfa00228bd5508b49bdbfc2c03 | |
| parent | b5c42bc8db17db80917f99205a03c51f17354495 (diff) | |
sysfs: file.c: use create_singlethread_workqueue()
We don't need a kernel thread per CPU for this application.
Acked-by: Alex Chiang <achiang@hp.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
| -rw-r--r-- | fs/sysfs/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/sysfs/file.c b/fs/sysfs/file.c index b1606e07b7a3..561a9c050cef 100644 --- a/fs/sysfs/file.c +++ b/fs/sysfs/file.c | |||
| @@ -723,7 +723,7 @@ int sysfs_schedule_callback(struct kobject *kobj, void (*func)(void *), | |||
| 723 | mutex_unlock(&sysfs_workq_mutex); | 723 | mutex_unlock(&sysfs_workq_mutex); |
| 724 | 724 | ||
| 725 | if (sysfs_workqueue == NULL) { | 725 | if (sysfs_workqueue == NULL) { |
| 726 | sysfs_workqueue = create_workqueue("sysfsd"); | 726 | sysfs_workqueue = create_singlethread_workqueue("sysfsd"); |
| 727 | if (sysfs_workqueue == NULL) { | 727 | if (sysfs_workqueue == NULL) { |
| 728 | module_put(owner); | 728 | module_put(owner); |
| 729 | return -ENOMEM; | 729 | return -ENOMEM; |
