From 22bdce1c04881c0e909817ee11f7cecd6c852d8c Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Tue, 8 Nov 2011 10:36:10 +0100 Subject: eliminate first_cpu() etc This includes the conversion from for_each_cpu_mask() to for_each-cpu(). Signed-off-by: Jan Beulich Acked-by: Keir Fraser Acked-by: Andrew Cooper --- xen/common/schedule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xen/common/schedule.c') diff --git a/xen/common/schedule.c b/xen/common/schedule.c index b22cf67fe5..c07d6f0f98 100644 --- a/xen/common/schedule.c +++ b/xen/common/schedule.c @@ -1450,7 +1450,7 @@ void schedule_dump(struct cpupool *c) printk("Scheduler: %s (%s)\n", sched->name, sched->opt_name); SCHED_OP(sched, dump_settings); - for_each_cpu_mask (i, *cpus) + for_each_cpu (i, cpus) { pcpu_schedule_lock(i); printk("CPU[%02d] ", i); -- cgit v1.2.3