* [PATCH 2/6] cpumask: Use accessors code: core
@ 2008-12-01 8:17 Rusty Russell
0 siblings, 0 replies; only message in thread
From: Rusty Russell @ 2008-12-01 8:17 UTC (permalink / raw)
To: linux-kernel; +Cc: Mike Travis
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 it is mostly straightforward.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Mike Travis <travis@sgi.com>
---
init/main.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff -r 07ebea6b5b50 init/main.c
--- a/init/main.c Fri Oct 31 11:22:33 2008 +1100
+++ b/init/main.c Fri Oct 31 11:23:04 2008 +1100
@@ -523,9 +523,9 @@ static void __init boot_cpu_init(void)
{
int cpu = smp_processor_id();
/* Mark the boot cpu "present", "online" etc for SMP and UP case */
- cpu_set(cpu, cpu_online_map);
- cpu_set(cpu, cpu_present_map);
- cpu_set(cpu, cpu_possible_map);
+ set_cpu_online(cpu, true);
+ set_cpu_present(cpu, true);
+ set_cpu_possible(cpu, true);
}
void __init __weak smp_setup_processor_id(void)
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-12-01 8:17 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-01 8:17 [PATCH 2/6] cpumask: Use accessors code: core Rusty Russell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox