Home
last modified time | relevance | path

Searched refs:wakee (Results 1 – 5 of 5) sorted by relevance

/linux-6.1.9/kernel/trace/
Dtrace_sched_switch.c39 probe_sched_wakeup(void *ignore, struct task_struct *wakee) in probe_sched_wakeup() argument
48 tracing_record_taskinfo_sched_switch(current, wakee, flags); in probe_sched_wakeup()
Dtrace_sched_wakeup.c401 struct task_struct *wakee, in tracing_sched_wakeup_trace() argument
418 entry->next_pid = wakee->pid; in tracing_sched_wakeup_trace()
419 entry->next_prio = wakee->prio; in tracing_sched_wakeup_trace()
420 entry->next_state = task_state_index(wakee); in tracing_sched_wakeup_trace()
421 entry->next_cpu = task_cpu(wakee); in tracing_sched_wakeup_trace()
/linux-6.1.9/tools/perf/
Dbuiltin-timechart.c187 int wakee; member
425 int waker, int wakee, u8 flags, const char *backtrace) in sched_wakeup() argument
440 we->wakee = wakee; in sched_wakeup()
443 p = find_create_pid(tchart, we->wakee); in sched_wakeup()
631 int wakee = evsel__intval(evsel, sample, "pid"); in process_sample_sched_wakeup() local
633 sched_wakeup(tchart, sample->cpu, sample->time, waker, wakee, flags, backtrace); in process_sample_sched_wakeup()
1054 if (p->pid == we->waker || p->pid == we->wakee) { in draw_wakeups()
1062 if (p->pid == we->wakee && !to) { in draw_wakeups()
1075 if (p->pid == we->wakee && !to) { in draw_wakeups()
1091 sprintf(task_to, "[%i]", we->wakee); in draw_wakeups()
Dbuiltin-sched.c92 struct task_desc *wakee; member
412 u64 timestamp, struct task_desc *wakee) in add_sched_event_wakeup() argument
418 event->wakee = wakee; in add_sched_event_wakeup()
420 wakee_event = last_event(wakee); in add_sched_event_wakeup()
839 struct task_desc *waker, *wakee; in replay_wakeup_event() local
848 wakee = register_pid(sched, pid, comm); in replay_wakeup_event()
850 add_sched_event_wakeup(sched, waker, sample->time, wakee); in replay_wakeup_event()
1241 struct thread *wakee; in latency_wakeup_event() local
1245 wakee = machine__findnew_thread(machine, -1, pid); in latency_wakeup_event()
1246 if (wakee == NULL) in latency_wakeup_event()
[all …]
/linux-6.1.9/tools/perf/scripts/python/
Dsched-migration.py60 def __init__(self, wakee): argument
61 self.wakee = wakee
64 return "%s woke up" % thread_name(self.wakee)