diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-19 11:41:52 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-19 11:41:52 -0700 |
commit | cf77e988ddfc7f047ac1ddc72cadb5eee7e09293 (patch) | |
tree | d4870b7290ea50fe01ed4d56febad449f1206172 /arch/ia64/kernel/topology.c | |
parent | 1d3c6ff44ad4b5f113602e153026a338f0f9b3ff (diff) | |
parent | 2a2ae2426bba944ce6dbcad35e1580df57aafcf1 (diff) | |
download | kernel-crypto-cf77e988ddfc7f047ac1ddc72cadb5eee7e09293.tar.gz kernel-crypto-cf77e988ddfc7f047ac1ddc72cadb5eee7e09293.tar.xz kernel-crypto-cf77e988ddfc7f047ac1ddc72cadb5eee7e09293.zip |
Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6
* 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6:
[IA64] Drop duplicated "config IOMMU_HELPER"
[IA64] invoke oom-killer from page fault
[IA64] use __ratelimit
[IA64] Use set_cpus_allowed_ptr
[IA64] Use set_cpus_allowed_ptr
[IA64] arch/ia64/hp/common/sba_iommu.c: Rename dev_info to adi
[IA64] removing redundant ifdef
Diffstat (limited to 'arch/ia64/kernel/topology.c')
-rw-r--r-- | arch/ia64/kernel/topology.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ia64/kernel/topology.c b/arch/ia64/kernel/topology.c index 28f299de290..0baa1bbb65f 100644 --- a/arch/ia64/kernel/topology.c +++ b/arch/ia64/kernel/topology.c @@ -361,12 +361,12 @@ static int __cpuinit cache_add_dev(struct sys_device * sys_dev) return 0; oldmask = current->cpus_allowed; - retval = set_cpus_allowed(current, cpumask_of_cpu(cpu)); + retval = set_cpus_allowed_ptr(current, cpumask_of(cpu)); if (unlikely(retval)) return retval; retval = cpu_cache_sysfs_init(cpu); - set_cpus_allowed(current, oldmask); + set_cpus_allowed_ptr(current, &oldmask); if (unlikely(retval < 0)) return retval; |