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

Commit 5db0e1e9 authored by Rusty Russell's avatar Rusty Russell
Browse files

cpumask: replace for_each_cpu_mask_nr with for_each_cpu in kernel/time/



Impact: cleanup

Simple replacement, now the _nr is redundant.

Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
Signed-off-by: default avatarMike Travis <travis@sgi.com>
Cc: Ingo Molnar <mingo@redhat.com>
parent 174596a0
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -145,7 +145,8 @@ static void clocksource_watchdog(unsigned long data)
		 * Cycle through CPUs to check if the CPUs stay
		 * synchronized to each other.
		 */
		int next_cpu = next_cpu_nr(raw_smp_processor_id(), cpu_online_map);
		int next_cpu = cpumask_next(raw_smp_processor_id(),
					    cpu_online_mask);

		if (next_cpu >= nr_cpu_ids)
			next_cpu = cpumask_first(cpu_online_mask);
+1 −1
Original line number Diff line number Diff line
@@ -512,7 +512,7 @@ static void tick_broadcast_init_next_event(struct cpumask *mask,
	struct tick_device *td;
	int cpu;

	for_each_cpu_mask_nr(cpu, *mask) {
	for_each_cpu(cpu, mask) {
		td = &per_cpu(tick_cpu_device, cpu);
		if (td->evtdev)
			td->evtdev->next_event = expires;