projects
/
platform
/
kernel
/
linux-3.10.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d53056
)
workqueue: add missing __percpu markup in kernel/workqueue.c
author
Namhyung Kim
<namhyung@gmail.com>
Sun, 8 Aug 2010 12:24:09 +0000
(14:24 +0200)
committer
Tejun Heo
<tj@kernel.org>
Sun, 8 Aug 2010 12:24:09 +0000
(14:24 +0200)
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>
kernel/workqueue.c
patch
|
blob
|
history
diff --git
a/kernel/workqueue.c
b/kernel/workqueue.c
index
9ca34cd
..
da6c482
100644
(file)
--- 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)