Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 89229071 authored by Rusty Russell's avatar Rusty Russell
Browse files

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: default avatarRusty Russell <rusty@rustcorp.com.au>
Signed-off-by: default avatarMike Travis <travis@sgi.com>
parent fe73971c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -567,7 +567,7 @@ static void __init report_platform_properties(void)
			max_cpu = NR_CPUS;
		}
		for (i = 0; i < max_cpu; i++)
			cpu_set(i, cpu_possible_map);
			set_cpu_possible(i, true);
	}
#endif

+2 −2
Original line number Diff line number Diff line
@@ -518,8 +518,8 @@ void __init of_fill_in_cpu_data(void)
		}

#ifdef CONFIG_SMP
		cpu_set(cpuid, cpu_present_map);
		cpu_set(cpuid, cpu_possible_map);
		set_cpu_present(cpuid, true);
		set_cpu_possible(cpuid, true);
#endif
	}