[uml-devel] [PATCH 2/3] mips: Avoid raw handling of cpu_possible_map/cpu_online_map

2012-02-14 Thread Venkatesh Pallipadi
Use set_cpu_* and init_cpu_* variants instead. Signed-off-by: Venkatesh Pallipadi --- arch/mips/cavium-octeon/smp.c |2 +- arch/mips/kernel/smp.c |4 ++-- arch/mips/netlogic/xlr/smp.c|4 ++-- arch/mips/pmc-sierra/yosemite/smp.c |4 ++-- arch/mips/sgi

[uml-devel] [PATCH 3/3] um: Avoid raw handling of cpu_online_map

2012-02-14 Thread Venkatesh Pallipadi
Use init_cpu_online and set_cpu_online instead. Signed-off-by: Venkatesh Pallipadi --- arch/um/kernel/skas/process.c |2 +- arch/um/kernel/smp.c |8 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/um/kernel/skas/process.c b/arch/um/kernel/skas

[uml-devel] [PATCH 1/3] hexagon: Avoid raw handling of cpu_possible_map

2012-02-14 Thread Venkatesh Pallipadi
Use set_cpu_possible instead. Signed-off-by: Venkatesh Pallipadi --- arch/hexagon/kernel/smp.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/hexagon/kernel/smp.c b/arch/hexagon/kernel/smp.c index c871a2c..8962705 100644 --- a/arch/hexagon/kernel/smp.c +++ b/arch

[uml-devel] [PATCH 0/3] Cleanup raw handling of online/possible map

2012-02-14 Thread Venkatesh Pallipadi
> Yes, and the other architectures. Here are the patches for other instances I see in plain git grep. I have been brave (foolish) enough to send this without any testing. So, this comes with 'use it at your own risk' tag :-). Thanks, Venki --