diff options
| author | Rusty Russell <rusty@rustcorp.com.au> | 2009-03-16 00:10:23 -0400 |
|---|---|---|
| committer | Rusty Russell <rusty@rustcorp.com.au> | 2009-03-16 00:10:23 -0400 |
| commit | 89229071c049e518668e34b234167d5ed9c94534 (patch) | |
| tree | 16d7ba9df11be2dc97607d8cc5e60ff336cea42c | |
| parent | fe73971cdd9287eba5f834eb3794768c22718581 (diff) | |
cpumask: Use accessors code.: sparc64
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>
| -rw-r--r-- | arch/sparc/kernel/mdesc.c | 2 | ||||
| -rw-r--r-- | arch/sparc/kernel/prom_64.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/sparc/kernel/mdesc.c b/arch/sparc/kernel/mdesc.c index 3f79f0c23a08..f0e6ed23a468 100644 --- a/arch/sparc/kernel/mdesc.c +++ b/arch/sparc/kernel/mdesc.c | |||
| @@ -567,7 +567,7 @@ static void __init report_platform_properties(void) | |||
| 567 | max_cpu = NR_CPUS; | 567 | max_cpu = NR_CPUS; |
| 568 | } | 568 | } |
| 569 | for (i = 0; i < max_cpu; i++) | 569 | for (i = 0; i < max_cpu; i++) |
| 570 | cpu_set(i, cpu_possible_map); | 570 | set_cpu_possible(i, true); |
| 571 | } | 571 | } |
| 572 | #endif | 572 | #endif |
| 573 | 573 | ||
diff --git a/arch/sparc/kernel/prom_64.c b/arch/sparc/kernel/prom_64.c index edecca7b8116..ca55c7012f77 100644 --- a/arch/sparc/kernel/prom_64.c +++ b/arch/sparc/kernel/prom_64.c | |||
| @@ -518,8 +518,8 @@ void __init of_fill_in_cpu_data(void) | |||
| 518 | } | 518 | } |
| 519 | 519 | ||
| 520 | #ifdef CONFIG_SMP | 520 | #ifdef CONFIG_SMP |
| 521 | cpu_set(cpuid, cpu_present_map); | 521 | set_cpu_present(cpuid, true); |
| 522 | cpu_set(cpuid, cpu_possible_map); | 522 | set_cpu_possible(cpuid, true); |
| 523 | #endif | 523 | #endif |
| 524 | } | 524 | } |
| 525 | 525 | ||
