diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2009-03-16 14:12:43 +1030 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2009-03-16 14:12:43 +1030 |
commit | 2af51a3f817a22661fcb52da7c96d078a699f40f (patch) | |
tree | 5e3a276e7eb94a139888d460223f2cb3254bc3cc /arch/ia64/kernel/acpi.c | |
parent | 5dd3c9949a3e92ea7fd8c75d888031f7aff1f1d0 (diff) | |
download | blackbird-op-linux-2af51a3f817a22661fcb52da7c96d078a699f40f.tar.gz blackbird-op-linux-2af51a3f817a22661fcb52da7c96d078a699f40f.zip |
cpumask: Use accessors code.: ia64
Impact: use new API
Use the accessors rather than frobbing bits directly. Most of this is
in arch code I haven't even compiled, but is straightforward.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Mike Travis <travis@sgi.com>
Diffstat (limited to 'arch/ia64/kernel/acpi.c')
-rw-r--r-- | arch/ia64/kernel/acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/kernel/acpi.c b/arch/ia64/kernel/acpi.c index c4f41aca107f..2f19d91b0b88 100644 --- a/arch/ia64/kernel/acpi.c +++ b/arch/ia64/kernel/acpi.c @@ -886,7 +886,7 @@ __init void prefill_possible_map(void) possible, max((possible - available_cpus), 0)); for (i = 0; i < possible; i++) - cpu_set(i, cpu_possible_map); + set_cpu_possible(i, true); } int acpi_map_lsapic(acpi_handle handle, int *pcpu) |