diff options
| author | Rusty Russell <rusty@rustcorp.com.au> | 2009-01-16 18:31:15 -0500 |
|---|---|---|
| committer | Mike Travis <travis@sgi.com> | 2009-01-16 18:31:15 -0500 |
| commit | 68564a46976017496c2227660930d81240f82355 (patch) | |
| tree | 22e44be89c3bc3fe3491957cca8bdc92c52e1e38 /kernel/workqueue.c | |
| parent | c99dbbe9f8f6b3e9383e64710217e873431d1c31 (diff) | |
work_on_cpu: don't try to get_online_cpus() in work_on_cpu.
Impact: remove potential circular lock dependency with cpu hotplug lock
This has caused more problems than it solved, with a pile of cpu
hotplug locking issues.
Followup patches will get_online_cpus() in callers that need it, but
if they don't do it they're no worse than before when they were using
set_cpus_allowed without locking.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Mike Travis <travis@sgi.com>
Diffstat (limited to 'kernel/workqueue.c')
| -rw-r--r-- | kernel/workqueue.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c index 2f445833ae37..a35afdbc0161 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c | |||
| @@ -991,8 +991,8 @@ static void do_work_for_cpu(struct work_struct *w) | |||
| 991 | * @fn: the function to run | 991 | * @fn: the function to run |
| 992 | * @arg: the function arg | 992 | * @arg: the function arg |
| 993 | * | 993 | * |
| 994 | * This will return -EINVAL in the cpu is not online, or the return value | 994 | * This will return the value @fn returns. |
| 995 | * of @fn otherwise. | 995 | * It is up to the caller to ensure that the cpu doesn't go offline. |
| 996 | */ | 996 | */ |
| 997 | long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg) | 997 | long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg) |
| 998 | { | 998 | { |
| @@ -1001,14 +1001,8 @@ long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg) | |||
| 1001 | INIT_WORK(&wfc.work, do_work_for_cpu); | 1001 | INIT_WORK(&wfc.work, do_work_for_cpu); |
| 1002 | wfc.fn = fn; | 1002 | wfc.fn = fn; |
| 1003 | wfc.arg = arg; | 1003 | wfc.arg = arg; |
| 1004 | get_online_cpus(); | 1004 | schedule_work_on(cpu, &wfc.work); |
| 1005 | if (unlikely(!cpu_online(cpu))) | 1005 | flush_work(&wfc.work); |
| 1006 | wfc.ret = -EINVAL; | ||
| 1007 | else { | ||
| 1008 | schedule_work_on(cpu, &wfc.work); | ||
| 1009 | flush_work(&wfc.work); | ||
| 1010 | } | ||
| 1011 | put_online_cpus(); | ||
| 1012 | 1006 | ||
| 1013 | return wfc.ret; | 1007 | return wfc.ret; |
| 1014 | } | 1008 | } |
