remove references to cpu_*_map in arch/
This has been obsolescent for a while; time for the final push. In adjacent context, replaced old cpus_* with cpumask_*. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Acked-by: David S. Miller <davem@davemloft.net> (arch/sparc) Acked-by: Chris Metcalf <cmetcalf@tilera.com> (arch/tile) Cc: user-mode-linux-devel@lists.sourceforge.net Cc: Russell King <linux@arm.linux.org.uk> Cc: linux-arm-kernel@lists.infradead.org Cc: Richard Kuo <rkuo@codeaurora.org> Cc: linux-hexagon@vger.kernel.org Cc: Ralf Baechle <ralf@linux-mips.org> Cc: linux-mips@linux-mips.org Cc: Kyle McMartin <kyle@mcmartin.ca> Cc: Helge Deller <deller@gmx.de> Cc: sparclinux@vger.kernel.org
This commit is contained in:
@@ -1186,7 +1186,7 @@ static void __init setup_cpu_maps(void)
|
||||
sizeof(cpu_lotar_map));
|
||||
if (rc < 0) {
|
||||
pr_err("warning: no HV_INQ_TILES_LOTAR; using AVAIL\n");
|
||||
cpu_lotar_map = cpu_possible_map;
|
||||
cpu_lotar_map = *cpu_possible_mask;
|
||||
}
|
||||
|
||||
#if CHIP_HAS_CBOX_HOME_MAP()
|
||||
@@ -1196,9 +1196,9 @@ static void __init setup_cpu_maps(void)
|
||||
sizeof(hash_for_home_map));
|
||||
if (rc < 0)
|
||||
early_panic("hv_inquire_tiles(HFH_CACHE) failed: rc %d\n", rc);
|
||||
cpumask_or(&cpu_cacheable_map, &cpu_possible_map, &hash_for_home_map);
|
||||
cpumask_or(&cpu_cacheable_map, cpu_possible_mask, &hash_for_home_map);
|
||||
#else
|
||||
cpu_cacheable_map = cpu_possible_map;
|
||||
cpu_cacheable_map = *cpu_possible_mask;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user