diff options
| author | Rusty Russell <rusty@rustcorp.com.au> | 2012-03-29 15:38:30 +1030 | 
|---|---|---|
| committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-03-29 15:38:30 +1030 | 
| commit | 0b5f9c005def154f9c21f9be0223b65b50d54368 (patch) | |
| tree | bbee9b3e549acc5886d1022c2aad46d5abfdd22e /arch/mips/kernel | |
| parent | b5174fa3a7f4f8f150bfa3b917c92608953dfa0f (diff) | |
| download | olio-linux-3.10-0b5f9c005def154f9c21f9be0223b65b50d54368.tar.xz olio-linux-3.10-0b5f9c005def154f9c21f9be0223b65b50d54368.zip  | |
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
Diffstat (limited to 'arch/mips/kernel')
| -rw-r--r-- | arch/mips/kernel/mips-mt-fpaff.c | 2 | ||||
| -rw-r--r-- | arch/mips/kernel/proc.c | 2 | ||||
| -rw-r--r-- | arch/mips/kernel/smp-bmips.c | 2 | ||||
| -rw-r--r-- | arch/mips/kernel/smp.c | 27 | ||||
| -rw-r--r-- | arch/mips/kernel/smtc.c | 2 | 
5 files changed, 16 insertions, 19 deletions
diff --git a/arch/mips/kernel/mips-mt-fpaff.c b/arch/mips/kernel/mips-mt-fpaff.c index 802e6160f37..33f63bab478 100644 --- a/arch/mips/kernel/mips-mt-fpaff.c +++ b/arch/mips/kernel/mips-mt-fpaff.c @@ -173,7 +173,7 @@ asmlinkage long mipsmt_sys_sched_getaffinity(pid_t pid, unsigned int len,  	if (retval)  		goto out_unlock; -	cpus_and(mask, p->thread.user_cpus_allowed, cpu_possible_map); +	cpumask_and(&mask, &p->thread.user_cpus_allowed, cpu_possible_mask);  out_unlock:  	read_unlock(&tasklist_lock); diff --git a/arch/mips/kernel/proc.c b/arch/mips/kernel/proc.c index e309665b6c8..f8b2c592514 100644 --- a/arch/mips/kernel/proc.c +++ b/arch/mips/kernel/proc.c @@ -25,7 +25,7 @@ static int show_cpuinfo(struct seq_file *m, void *v)  	int i;  #ifdef CONFIG_SMP -	if (!cpu_isset(n, cpu_online_map)) +	if (!cpu_online(n))  		return 0;  #endif diff --git a/arch/mips/kernel/smp-bmips.c b/arch/mips/kernel/smp-bmips.c index ca673569fd2..3046e298600 100644 --- a/arch/mips/kernel/smp-bmips.c +++ b/arch/mips/kernel/smp-bmips.c @@ -317,7 +317,7 @@ static int bmips_cpu_disable(void)  	pr_info("SMP: CPU%d is offline\n", cpu); -	cpu_clear(cpu, cpu_online_map); +	set_cpu_online(cpu, false);  	cpu_clear(cpu, cpu_callin_map);  	local_flush_tlb_all(); diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c index 9c1cce9de35..ba9376bf52a 100644 --- a/arch/mips/kernel/smp.c +++ b/arch/mips/kernel/smp.c @@ -148,7 +148,7 @@ static void stop_this_cpu(void *dummy)  	/*  	 * Remove this CPU:  	 */ -	cpu_clear(smp_processor_id(), cpu_online_map); +	set_cpu_online(smp_processor_id(), false);  	for (;;) {  		if (cpu_wait)  			(*cpu_wait)();		/* Wait if available. */ @@ -174,7 +174,7 @@ void __init smp_prepare_cpus(unsigned int max_cpus)  	mp_ops->prepare_cpus(max_cpus);  	set_cpu_sibling_map(0);  #ifndef CONFIG_HOTPLUG_CPU -	init_cpu_present(&cpu_possible_map); +	init_cpu_present(cpu_possible_mask);  #endif  } @@ -248,7 +248,7 @@ int __cpuinit __cpu_up(unsigned int cpu)  	while (!cpu_isset(cpu, cpu_callin_map))  		udelay(100); -	cpu_set(cpu, cpu_online_map); +	set_cpu_online(cpu, true);  	return 0;  } @@ -320,13 +320,12 @@ void flush_tlb_mm(struct mm_struct *mm)  	if ((atomic_read(&mm->mm_users) != 1) || (current->mm != mm)) {  		smp_on_other_tlbs(flush_tlb_mm_ipi, mm);  	} else { -		cpumask_t mask = cpu_online_map;  		unsigned int cpu; -		cpu_clear(smp_processor_id(), mask); -		for_each_cpu_mask(cpu, mask) -			if (cpu_context(cpu, mm)) +		for_each_online_cpu(cpu) { +			if (cpu != smp_processor_id() && cpu_context(cpu, mm))  				cpu_context(cpu, mm) = 0; +		}  	}  	local_flush_tlb_mm(mm); @@ -360,13 +359,12 @@ void flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned l  		smp_on_other_tlbs(flush_tlb_range_ipi, &fd);  	} else { -		cpumask_t mask = cpu_online_map;  		unsigned int cpu; -		cpu_clear(smp_processor_id(), mask); -		for_each_cpu_mask(cpu, mask) -			if (cpu_context(cpu, mm)) +		for_each_online_cpu(cpu) { +			if (cpu != smp_processor_id() && cpu_context(cpu, mm))  				cpu_context(cpu, mm) = 0; +		}  	}  	local_flush_tlb_range(vma, start, end);  	preempt_enable(); @@ -407,13 +405,12 @@ void flush_tlb_page(struct vm_area_struct *vma, unsigned long page)  		smp_on_other_tlbs(flush_tlb_page_ipi, &fd);  	} else { -		cpumask_t mask = cpu_online_map;  		unsigned int cpu; -		cpu_clear(smp_processor_id(), mask); -		for_each_cpu_mask(cpu, mask) -			if (cpu_context(cpu, vma->vm_mm)) +		for_each_online_cpu(cpu) { +			if (cpu != smp_processor_id() && cpu_context(cpu, vma->vm_mm))  				cpu_context(cpu, vma->vm_mm) = 0; +		}  	}  	local_flush_tlb_page(vma, page);  	preempt_enable(); diff --git a/arch/mips/kernel/smtc.c b/arch/mips/kernel/smtc.c index c4f75bbc0bd..f5dd38f1d01 100644 --- a/arch/mips/kernel/smtc.c +++ b/arch/mips/kernel/smtc.c @@ -291,7 +291,7 @@ static void smtc_configure_tlb(void)   * possibly leave some TCs/VPEs as "slave" processors.   *   * Use c0_MVPConf0 to find out how many TCs are available, setting up - * cpu_possible_map and the logical/physical mappings. + * cpu_possible_mask and the logical/physical mappings.   */  int __init smtc_build_cpu_map(int start_cpu_slot)  |