diff options
author | Julia Lawall <julia@diku.dk> | 2010-03-27 21:11:56 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-03-27 21:11:56 -0700 |
commit | d2566af8c4860a03ca685ef0910de406679c3e4e (patch) | |
tree | 16e5e988dac842c78444e35d3e4e8d20ee38ac2b /arch/sparc/kernel/sysfs.c | |
parent | 7469a9acf919d36836f6c635099d8edc9be4528a (diff) | |
download | linux-stable-d2566af8c4860a03ca685ef0910de406679c3e4e.tar.gz linux-stable-d2566af8c4860a03ca685ef0910de406679c3e4e.tar.bz2 linux-stable-d2566af8c4860a03ca685ef0910de406679c3e4e.zip |
arch/sparc/kernel: Use set_cpus_allowed_ptr
Use set_cpus_allowed_ptr rather than set_cpus_allowed.
The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)
// <smpl>
@@
expression E1,E2;
@@
- set_cpus_allowed(E1, cpumask_of_cpu(E2))
+ set_cpus_allowed_ptr(E1, cpumask_of(E2))
@@
expression E;
identifier I;
@@
- set_cpus_allowed(E, I)
+ set_cpus_allowed_ptr(E, &I)
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/kernel/sysfs.c')
-rw-r--r-- | arch/sparc/kernel/sysfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc/kernel/sysfs.c b/arch/sparc/kernel/sysfs.c index ca39c606fe8e..1eb8b00aed75 100644 --- a/arch/sparc/kernel/sysfs.c +++ b/arch/sparc/kernel/sysfs.c @@ -107,12 +107,12 @@ static unsigned long run_on_cpu(unsigned long cpu, unsigned long ret; /* should return -EINVAL to userspace */ - if (set_cpus_allowed(current, cpumask_of_cpu(cpu))) + if (set_cpus_allowed_ptr(current, cpumask_of(cpu))) return 0; ret = func(arg); - set_cpus_allowed(current, old_affinity); + set_cpus_allowed_ptr(current, &old_affinity); return ret; } |