cpumask: convert mm/
Impact: Use new API Convert kernel mm functions to use struct cpumask. We skip include/linux/percpu.h and mm/allocpercpu.c, which are in flux. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Mike Travis <travis@sgi.com> Reviewed-by: Christoph Lameter <cl@linux-foundation.org>
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
DEFINE_PER_CPU(struct vm_event_state, vm_event_states) = {{0}};
|
||||
EXPORT_PER_CPU_SYMBOL(vm_event_states);
|
||||
|
||||
static void sum_vm_events(unsigned long *ret, cpumask_t *cpumask)
|
||||
static void sum_vm_events(unsigned long *ret, const struct cpumask *cpumask)
|
||||
{
|
||||
int cpu;
|
||||
int i;
|
||||
@@ -43,7 +43,7 @@ static void sum_vm_events(unsigned long *ret, cpumask_t *cpumask)
|
||||
void all_vm_events(unsigned long *ret)
|
||||
{
|
||||
get_online_cpus();
|
||||
sum_vm_events(ret, &cpu_online_map);
|
||||
sum_vm_events(ret, cpu_online_mask);
|
||||
put_online_cpus();
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(all_vm_events);
|
||||
|
Reference in New Issue
Block a user