Home
last modified time | relevance | path

Searched refs:next_cpu (Results 1 – 8 of 8) sorted by relevance

/kernel/trace/
Dtrace_hwlat.c273 int next_cpu; in move_to_next_cpu() local
287 next_cpu = cpumask_next(smp_processor_id(), current_mask); in move_to_next_cpu()
290 if (next_cpu >= nr_cpu_ids) in move_to_next_cpu()
291 next_cpu = cpumask_first(current_mask); in move_to_next_cpu()
293 if (next_cpu >= nr_cpu_ids) /* Shouldn't happen! */ in move_to_next_cpu()
297 cpumask_set_cpu(next_cpu, current_mask); in move_to_next_cpu()
355 int next_cpu; in start_kthread() local
365 next_cpu = cpumask_first(current_mask); in start_kthread()
374 cpumask_set_cpu(next_cpu, current_mask); in start_kthread()
Dtrace_entries.h123 __field( unsigned int, next_cpu ) \
140 __entry->next_cpu),
160 __entry->next_cpu),
Dtrace_output.c912 field->next_cpu, in trace_ctxwake_print()
946 field->next_cpu, in trace_ctxwake_raw()
982 SEQ_PUT_HEX_FIELD(s, field->next_cpu); in trace_ctxwake_hex()
1013 SEQ_PUT_FIELD(s, field->next_cpu); in trace_ctxwake_bin()
Dtrace_sched_wakeup.c396 entry->next_cpu = task_cpu(next); in tracing_sched_switch_trace()
424 entry->next_cpu = task_cpu(wakee); in tracing_sched_wakeup_trace()
Dtrace.c3303 int next_cpu = -1; in __find_next_entry() local
3333 next_cpu = cpu; in __find_next_entry()
3343 *ent_cpu = next_cpu; in __find_next_entry()
/kernel/
Dsmp.c416 int cpu, next_cpu, this_cpu = smp_processor_id(); in smp_call_function_many() local
445 next_cpu = cpumask_next_and(cpu, mask, cpu_online_mask); in smp_call_function_many()
446 if (next_cpu == this_cpu) in smp_call_function_many()
447 next_cpu = cpumask_next_and(next_cpu, mask, cpu_online_mask); in smp_call_function_many()
450 if (next_cpu >= nr_cpu_ids) { in smp_call_function_many()
/kernel/time/
Dclocksource.c192 int next_cpu, reset_pending; in clocksource_watchdog() local
293 next_cpu = cpumask_next(raw_smp_processor_id(), cpu_online_mask); in clocksource_watchdog()
294 if (next_cpu >= nr_cpu_ids) in clocksource_watchdog()
295 next_cpu = cpumask_first(cpu_online_mask); in clocksource_watchdog()
297 add_timer_on(&watchdog_timer, next_cpu); in clocksource_watchdog()
Dtick-broadcast.c608 int cpu, next_cpu = 0; in tick_handle_oneshot_broadcast() local
637 next_cpu = cpu; in tick_handle_oneshot_broadcast()
674 tick_broadcast_set_event(dev, next_cpu, next_event); in tick_handle_oneshot_broadcast()