diff options
| author | 2008-12-08 15:07:49 +0100 | |
|---|---|---|
| committer | 2008-12-08 15:07:49 +0100 | |
| commit | aa9c9b8c584a42a094202b7e0f63497e888f86a7 (patch) | |
| tree | 3cb3b022054a7c1722657288518f495e0c4d9983 /kernel/irq/proc.c | |
| parent | x86: fix wakeup_cpu with numaq/es7000 v2 - call ->update_genapic() (diff) | |
| parent | Fix a race condition in FASYNC handling (diff) | |
| download | linux-dev-aa9c9b8c584a42a094202b7e0f63497e888f86a7.tar.xz linux-dev-aa9c9b8c584a42a094202b7e0f63497e888f86a7.zip | |
Merge branch 'linus' into x86/quirks
Diffstat (limited to 'kernel/irq/proc.c')
| -rw-r--r-- | kernel/irq/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/irq/proc.c b/kernel/irq/proc.c index 4d161c70ba55..d257e7d6a8a4 100644 --- a/kernel/irq/proc.c +++ b/kernel/irq/proc.c @@ -62,7 +62,7 @@ static ssize_t irq_affinity_proc_write(struct file *file, if (!cpus_intersects(new_value, cpu_online_map)) /* Special case for empty set - allow the architecture code to set default SMP affinity. */ - return irq_select_affinity(irq) ? -EINVAL : count; + return irq_select_affinity_usr(irq) ? -EINVAL : count; irq_set_affinity(irq, new_value); |
