aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/workqueue.c
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung@gmail.com>2010-08-08 14:24:09 +0200
committerTejun Heo <tj@kernel.org>2010-08-08 14:24:09 +0200
commit38f51568005873a241a8ae6bf28c9ddd3f6a11ed (patch)
tree88adaff7c44514bf3bc2610473d4b7fc266178c6 /kernel/workqueue.c
parentMerge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6 (diff)
downloadlinux-dev-38f51568005873a241a8ae6bf28c9ddd3f6a11ed.tar.xz
linux-dev-38f51568005873a241a8ae6bf28c9ddd3f6a11ed.zip
workqueue: add missing __percpu markup in kernel/workqueue.c
works in schecule_on_each_cpu() is a percpu pointer but was missing __percpu markup. Add it. Signed-off-by: Namhyung Kim <namhyung@gmail.com> Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'kernel/workqueue.c')
-rw-r--r--kernel/workqueue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 9ca34cddaf6d..da6c482944d7 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -2568,7 +2568,7 @@ EXPORT_SYMBOL(schedule_delayed_work_on);
int schedule_on_each_cpu(work_func_t func)
{
int cpu;
- struct work_struct *works;
+ struct work_struct __percpu *works;
works = alloc_percpu(struct work_struct);
if (!works)